Jr Developer Interview Questions

14,271 jr 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
Jun 6, 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;

First one asks you to write a code to count number from 1 to 100, and for some numbers, you need to output a specific word rather than number. Second question is about database, ask about data representing.
avatar

Junior Report and Software Developer

Interviewed at Ouray Sportswear

3.3
Jul 1, 2016

First one asks you to write a code to count number from 1 to 100, and for some numbers, you need to output a specific word rather than number. Second question is about database, ask about data representing.

Viewing 2011 - 2020 interview questions

See Interview Questions for Similar Jobs

Glassdoor has 14,271 interview questions and reports from Jr developer interviews. Prepare for your interview. Get hired. Love your job.