Adobe Interview Question for Java Developers


Country: India
Interview Type: Written Test




Comment hidden because of low score. Click to expand.
0
of 0 vote

looks like interview is expecting regular expression not coding style. Any way your program works.

- sbhargavs August 11, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

import java.util.Scanner;

public class Home {

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String s = scanner.next();
String[] good_words = {"papa", "book", "home", "cars", "jolly", "sugar", "friend", "mother", "father", "bloomiest"};
String[] bad_words = {"ache", "slow", "torn", "slum", "boom", "rival", "wrong", "cholera", "revenge", "arrogant"};
for(String str : good_words){
if(str.equalsIgnoreCase(s)){
System.out.println("GOOD");
}
}for(String str : bad_words){
if(str.equalsIgnoreCase(s)){
System.out.println("BAD");
}
}
}

}

- Anonymous October 11, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

The question clearly instructs to use the regex!

- pkenil96 May 10, 2020 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

import java.util.Scanner;

public class Home {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String s = scanner.next();
		 String[] good_words = {"papa", "book", "home", "cars", "jolly", "sugar", "friend", "mother", "father", "bloomiest"};
	     String[] bad_words = {"ache", "slow", "torn", "slum", "boom", "rival", "wrong", "cholera", "revenge", "arrogant"};
	     for(String str : good_words){
	    	 if(str.equalsIgnoreCase(s)){
	    		 System.out.println("GOOD");
	    	 }
	     }for(String str : bad_words){
	    	 if(str.equalsIgnoreCase(s)){
	    		 System.out.println("BAD");
	    	 }
	     }
	}

}

- Mohini yadav October 11, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

public static void main(String[] args) {
    String input = "";
    String words[] = {"papa","book","home","cars","jolly","sugar","friend","mother","father","bloomiest",
      "ache","slow","torn","slum","boom","rival","wrong","cholera","revenge","arrogant"};
    Set<String> wordSet = new HashSet<>();
    wordSet.addAll(Arrays.asList(words));

    Scanner scanner = new Scanner(System.in);

    while (!input.equalsIgnoreCase("exit")) {
      System.out.print("Enter word: ");
      input = scanner.nextLine();
      if (!wordSet.contains(input)) {
        System.out.println("Unknown word");
        continue;
      }
      if (input.matches("^([phjfm]|bo|ca|su|bl).*")) { //it's important to put () around the regex
        System.out.println("Good word");
      } else {
        System.out.println("bad word");
      }
    }
  }
}

- Tampu Saswan December 31, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

The above regex - (^([phjfm]|bo|ca|su|bl).*) will also match boom which is a negative word.

- infnity June 30, 2019 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

public static void main(String[] args) {
    String input = "";
    String words[] = {"papa","book","home","cars","jolly","sugar","friend","mother","father","bloomiest",
      "ache","slow","torn","slum","boom","rival","wrong","cholera","revenge","arrogant"};
    Set<String> wordSet = new HashSet<>();
    wordSet.addAll(Arrays.asList(words));

    Scanner scanner = new Scanner(System.in);

    while (!input.equalsIgnoreCase("exit")) {
      System.out.print("Enter word: ");
      input = scanner.nextLine();
      if (!wordSet.contains(input)) {
        System.out.println("Unknown word");
        continue;
      }
      if (input.matches("^([phjfm]|bo|ca|su|bl).*")) { //it's important to put () around the regex
        System.out.println("Good word");
      } else {
        System.out.println("bad word");
      }
    }
  }
}

- Tampu Saswan December 31, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

I tried to solve that quiz.. But I'm not sure about it.
So, please, check it out:

Scanner scanner = new Scanner(System.in);
        String[] good_words = {"papa", "book", "home", "cars", "jolly", "sugar", "friend", "mother", "father", "bloomiest"};
        String[] bad_words = {"ache", "slow", "torn", "slum", "boom", "rival", "wrong", "cholera", "revenge", "arrogant"};
        String input_data = scanner.nextLine();
        int good_indicator = 0;
        int bad_indicator = 0;
        for (int i = 0; i<good_words.length; i++){
            if (input_data.equals(good_words[i])){
                good_indicator++;
            }
        }if (good_indicator!=0) {
            System.out.println("Good");
        }else{
            for (int i = 0; i<bad_words.length;i++){
                if (input_data.equals(bad_words[i])){
                    bad_indicator++;
                }
            }
            if (bad_indicator!=0){
                System.out.println("Bad");
            }
        }

- xidonett August 07, 2018 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More