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); } }
Developer Java Interview Questions
30,868 developer java interview questions shared by candidates
There 4 rounds of interviews..two technical each of 30-45 mins..1 managerial round and last one is HR .. questions were related to core java SQL and Unix...HR told me about positive feedback and took all my docs but later on they didn't provide me the offer even after follw up of 2 months
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...
Delete a given node from a Linked List without using extra memory.
Ask about project in cv
SQL questions
About docker, CI, CD, the differences between different webservers... and normal qustions about OOP.
Présentez vous et qu'est ce que vous voulez faire dans votre prochain poste
Viewing 1451 - 1460 interview questions