employer cover photo
employer logo

Frage im Vorstellungsgespräch bei Rubicon Project

Write a program to remove vowels from a given string

Antworten zu Vorstellungsgespräch

Anonym

24. Okt. 2017

class Vowels{ public static void main(String args[]){ String input = "abcdefgh"; String vowels = "aeiou"; String output = ""; for(int i=0;i

1

Anonym

10. Sep. 2017

write a program to define whether an array is sorted or not