employer cover photo
employer logo
employer logo

Rubicon Project

Now known as Magnite

Is this your company?

Rubicon Project interview question

Write a program to remove vowels from a given string

Interview Answers

Anonymous

24 Oct 2017

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

1

Anonymous

10 Sept 2017

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