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;
Junior Net Developer Interview Questions
6,542 junior net developer interview questions shared by candidates
Hr round would you like to work without taking salary for 2 months?
Questions from PDF "Interview Questions of .NET and SQL"
will you work 8-5pm every day?
The questions were very basic, something about .NET. They also asked me to provide some code that I've written on previous jobs.
What are the different kinds of windows forms?
I did not get a an actual interview. I was screened out based on the resume and cover letter submitted.
What methodology do you use in your development? like Agile
Reverse string to check weather it is palindrome or not
CRUD operation test
Viewing 971 - 980 interview questions