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;
C Net Lead Developer Interview Questions
57 c net lead developer interview questions shared by candidates
WAP to find missing no. in an array of integer numbers from 1 to 100 if numbers are given in a sorted order.
written : techniques of session management, merge two sorted array into single sorted array, few basic mathematical questions, order of having, group by, select, table etc 1st round : what is api ? how is soap different for restful service ? managing session out proc ? 2nd round : represent a tree with n node on code ? print all leaf nodes from this tree ? how can we represent this tree in rdbms ? print all leaf node from table you have made using query ? on click of button make the div of some color (apply class on div on click of button).
Elaborate Page life cycle in ASP.NET
WAP to find missing no. in an array of integer numbers from 1 to 100 if numbers are not given in a sorted order.
Why SFW?
Where do you see yourself in five years?
1.Difference between Procedural and Object Oriented Languages? 2.How will you troubleshoot if the system takes a lot of time?
What do you know about the company?
scaffolding
Viewing 11 - 20 interview questions