Left outer Join query in table
Engineer Developer Interview Questions
3,856 engineer developer interview questions shared by candidates
//What will be minimum and maximum number //that will be printed? class AbcThread extends Thread{ private int[] _arr; public MyThread(int[] arr){ this._arr = arr; } public void run(){ for (int i=0;i<20 ; i++) { this._arr[0]++; } } public static void main(String[] args) { int[] arr ={0}; try { MyThread t1 = new MyThread(arr); MyThread t2 = new MyThread(arr); t1.start(); t2.start(); t1.join(); t2.join(); }catch(Exception ex){ System.out.println("Exception "+ex); } System.out.println(arr[0]); } }
- Explain project that you have done (stack you used) - Explain how you overcome difficulties in a team project - Talk about yourself and previous job experience - Talked about general testing knowledge (coverage, mockito, junit, testcontainers, jenkins, automation with selenium, etc.) - General questions
there are 6 question one of them coding
java questions, OOPS concept , HTML, CSS, JS
During the technical interview I got a question along the lines of: "Given a software project x, how would you go about setting everything up, and making sure it scales?"
advantages of c over java
Tell me about a time your team was under pressure, and how you helped the situation
Tell me about a time you needed to be a good communicator
1. Explain internal working of HashMap 2. Explain how you test your code
Viewing 671 - 680 interview questions