Projetos pessoais publicados, isso é muito importante.
Junior Java Developer Interview Questions
25,501 junior java developer interview questions shared by candidates
Implement Queue using Stacks
Delete a given node from a Linked List without using extra memory.
interface vs abstract class
What is thread, what are the ways to start one and here to put your logic.
find a loop in linked and write a code for "whether a BT is BST?". Algos for matrix manipulation...
About docker, CI, CD, the differences between different webservers... and normal qustions about OOP.
They Asked SQL, JAVA, Web each of 2,2,1 respectively
package com.interview; public class Threading { int counter; class Mythread extends Thread{ @Override public void run(){ for(int i=0; i < 10000; i++) counter++; System.out.println("run = " + counter); } } public static void main(String[] args) throws InterruptedException { // TODO Auto-generated method stub Threading a = new Threading(); Mythread t1 = a.new Mythread(); t1.start(); t1.join(); System.out.println("" + a.counter); } }
How hashmap internally calculate hashcode
Viewing 1281 - 1290 interview questions