What is faster for reading in Java ArrayList or HashMap and why?
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,844 desenvolvedor java interview questions shared by candidates
Basic Java
explain logic of all above questions
constructor looping
Are you willing to work in Dallas and why Dallas?
Tell me about youself. Why you leave your last job.
What Is a Package?
5. The user of this class expected the output “Num: 1000000”. They got something else. What went wrong and how would you fix it? public class Test { public final static int NUMTHREADS = 1000; public final static int NUMLOOP = 1000; public static int num = 0; static class Mythread extends Thread { @Override public void run() { for (int i = 0; i < NUMLOOP; i++) { ++num; } } } public static void main(String argv[]) { Mythread threads[] = new Mythread[NUMTHREADS]; for (int i = 0; i < NUMTHREADS; ++i) { threads[i] = new Mythread(); threads[i].start(); } try { for (int i = 0; i < NUMTHREADS; ++i) { threads[i].join(); } } catch (InterruptedException e) { } System.out.println("Num: " + num); } }
overload vs override
Pseudo code
Viewing 221 - 230 interview questions