Looping control
Desenvolvedor Java Interview Questions
Desenvolvedor Java Interview Questions
Prepare-se para responder a perguntas técnicas que testam seu conhecimento básico de Java. Os entrevistadores também podem fazer perguntas abertas para avaliar suas habilidades de codificação e solução de problemas. Prepare-se para perguntas não técnicas relacionadas à sua gestão de tempo, comunicação interpessoal e ética profissional.
Principais perguntas de entrevista para desenvolvedor(a) Java e como respondê-las
Pergunta 1: Qual é a diferença entre HashTable e HashMap no Java?
Pergunta 2: Crie um programa para determinar se 243 é um número de Armstrong.
Pergunta 3: Como você cria códigos de qualidade quando precisa trabalhar em vários projetos Java ao mesmo tempo?
30,842 desenvolvedor java interview questions shared by candidates
What is concurrent hash map?
They ask me about JAVA concept and so on.
They wanted a 2 minute profile video, for their clients
program for Armstrong number and program for factorial
Given an array of numbers, create another array of numbers. Calculate each new array number by multiplying all input array numbers, except for the current number position in the new array.
Input is a string like "AAAAABBCCAA" and it should print "5A2B2C2A". 5 being the continuous number of occurance for character 'A'. Same is with other characters also.
Given an array of pairs of numbers, simplify the numbers. The pairs represent ranges, and the result is a simplified version of these pairs. So [1,5],[3,7] should result in [1,7].
Interview question like that Q: 01 Given: 11. public static void parse(String str) { 12. try { 13. float f = Float.parseFloat(str); 14. } catch (NumberFormatException nfe) { 15. f = 0; 16. } finally { 17. System.out.println(f); 18. } 19. } 20. public static void main(String[] args) { 21. parse("invalid"); 22. } What is the result? A. 0.0 B. Compilation fails. C. A ParseException is thrown by the parse method at runtime. D. A NumberFormatException is thrown by the parse method at runtime. Answer: B
1.program to print 1 to 100 without using any loop
Viewing 71 - 80 interview questions