Tell me about yourself, And OOPs concepts
Junior Net Developer Interview Questions
243 junior net developer interview questions shared by candidates
Please explain more about your last internship.
If you think you will not be done with some work, even if you said you would be done the same day, and absolutely need to finish the work from home, what do you do?
If you had a clone of yourself, how would you excel better than your clone?
What is your salary expectation?
How many years of experience do you have?
Presentacion propia, test de logica de media hora, breves preguntas en ingles para saber si manejamos el idioma
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;
What is an overwrite in Java
Encontrar fallos en un algoritmo de ordenación de datos en un array.
Viewing 41 - 50 interview questions