How do you keep up to date with tech?
Junior Developer Interview Questions
14,267 junior developer interview questions shared by candidates
raccontaci di te
Basic Java-related Question and questions according to what you've used in your previous jobs
class Program { static void Main(string[] args) { B obj = new B(); Console.ReadKey(); } } abstract class A { public A() { Console.WriteLine("This is the A class"); //calc(); } public abstract void calc(); } class B : A { public B() { Console.WriteLine("This is the B class"); } public override void calc() { Console.WriteLine("This is the abstract methode"); } } Questions: 1. What will be printed on the console? 2. what will be printed to the console if we remove this "//" before the calc() in the contractor of class A;
Explain the creation of a thread-safe singleton in Java using double-checks locking
In Technical Interview, They asked questions from 1) Data Base Management System and SQL 2) About your mentioned and well griped Programming language ( mainly C/ C++/ Java and Python but mainly Java) 3) About my Minor and Major project like, How I came up with Idea? What is the blueprint?, How I deigned the model? How I Connected and implemented schema of database?, Why I used the specific technology stack, Future Scopes etc. In HR Interview just common questions about me like introduction, about my family, my strengths and weaknesses and one thing uncommon i.e HR asked me to tell about geographic location and history about my city and He offered biscuits too. 😊
Why do you would you like to work in Microsoft
reverse a singly linked list.
What is deamon thread in multi threading?
Can you tell me the difference between checked exception and unchecked exception?
Viewing 2001 - 2010 interview questions