Perguntas de entrevista de Junior java developer
2 mil
Perguntas de entrevista para o cargo de Junior Java Developer compartilhadas pelos candidatosPrincipais perguntas de entrevista

attributes of <tr> tag
41 respostas↳
please let me know if anyone got Job
↳
36. If you get call then follow this interview experience
↳
How many of you waiting after 3rd round

Any five html empty tags (last round)
6 respostas↳
10 Jan
↳
You got the offer?
↳
No .. dont know result .. My actually final round was not good enough

question mostly about output prediction of java code
5 respostas↳
Was it only for profound students
↳
How many were shortlisted for the next round..??
↳
I have attended third round. That was horrible

Implement a method to determine whether a string is a palindrome.
4 respostas↳
Take a string as function parameter. Copy this str value into a new var, then use .reverse() thereupon. Compare the reversed copy back against original string using turnery operator to set resVariable to "true" : "false". Return resVariable. Menos
↳
(Using .split(""), as well as .join(""))
↳
const palindrome = (str) => str == str.reversed() palindrome('hello') // false palindrome('eve') // true Menos

Some questions about Java basics, and some math problems and SQL
3 respostas
some questions about hashCode, equals method regex question java concurrency: wait, notify, notifyAll() swing component rendering routine(without using UI-delegate)
3 respostas↳
can I submit my screen shot????
↳
can you share it?
↳
How many days they will take to tell the status and after screening test what was the next round?? Menos

Write a function to print the first letter of every word in a string.
4 respostas↳
public String getFirstLetters(String text) { String firstLetters = ""; text = text.replaceAll("[.,]", ""); // Replace dots, etc (optional) for(String s : text.split(" ")) { firstLetters += s.charAt(0); } return firstLetters; } Menos
↳
let sentence = 'Big Green Dog' let words = sentence.split(' ') words.map((word) =>{ word.split('') console.log(word[0]) }) //output "B" "G" "D" Menos
↳
public static void PrintFirstLetter( String s ){ If ( s.length == 0 ){ return; } String [ ] Words = s.split( “ “ ); for ( String word : Words ) { System.out.println( word.charAt(0)); } } Menos

they ask subjective question in screening like what is instanceof in java?
3 respostas↳
yes, i knw it but i am not sure about this so i am not going to make any mistake so i simply says idk. andi also suggest you if you dont knw so leave it not try to make it large. Menos
↳
Tell me.. what question ask in skype round
↳
Tell me.. what question ask in skype round


All stupid questions which can't be expected to be answered by a junior engineer.
2 respostas↳
Release your anger. Tell us he questions.
↳
what sort of questions?