Junior C Net Developer Interview Questions

12 junior c net developer interview questions shared by candidates

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;
avatar

Junior C# and .NET developer

Interviewed at NiCE

3.9
6 Jun 2024

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;

Describe a data sturcture that you can do: Get[x] by key in O(1), Set(x,y) by key in O(1), and setAll(y) by O(1) The setAll does not must really put the value at all the places, its just need to be seen like this(when you do get, you need to get the correct value)
avatar

Junior C# and .NET developer

Interviewed at NiCE

3.9
6 Jun 2024

Describe a data sturcture that you can do: Get[x] by key in O(1), Set(x,y) by key in O(1), and setAll(y) by O(1) The setAll does not must really put the value at all the places, its just need to be seen like this(when you do get, you need to get the correct value)

Viewing 1 - 10 interview questions

Glassdoor has 12 interview questions and reports from Junior c net developer interviews. Prepare for your interview. Get hired. Love your job.