C# Interview Questions on Abstract and Sealed Class Members By Mallikarjun A 00:03:00 Add Comment Q : What is an abstract class? Ans : An abstract class is an incomplete class and must be implemented in a derived class. Q : Can you cr... Read More
C# Interview Questions on polymorphism By Mallikarjun A 00:03:00 Add Comment Q : Explain polymorphism in C# with a simple example? Ans : Polymorphism allows you to invoke derived class methods through a base class ... Read More
C# Interview Questions on constructors By Mallikarjun A 15:46:00 Add Comment C# Interview Questions on constructors Q : What is a constructor in C#? Ans : Constructor is a class method that is executed when an object... Read More
Basic C# Interview Questions on strings By Mallikarjun A 05:00:00 Add Comment Q : What is the difference between string keyword and System.String class? Ans : string keyword is an alias for Syste.String class. The... Read More
Basic C# Interview Questions on arrays By Mallikarjun A 15:45:00 Add Comment Basic C# Interview Questions on arrays Q : What is an array? Ans : An array is a data structure that contains several variables of the same... Read More
C# Interview Questions on Data Types By Mallikarjun A 15:45:00 Add Comment C# Interview Questions on Data Types Q : What are the 3 types of comments in C#? Ans : 1. Single Line Comments. You define single line comm... Read More
Interview Questions on ASP.NET Validation Controls By Mallikarjun A 15:43:00 Add Comment Interview Questions on ASP.NET Validation Controls Q : What is Validation controls in ASP.NET? Ans : ASP.NET provides validation con... Read More
Interview Questions & Answer on Master Pages By Mallikarjun A 23:38:00 Add Comment Q : What are Master Pages in ASP.NET? or What is a Master Page? Ans : ASP.NET master pages allow you to create a consistent layout for t... Read More
Interview Questions & Answer on ASP.NET Controls By Mallikarjun A 08:30:00 Add Comment Q : What are the 2 types of controls that you can use on a webform in ASP.NET? Ans : Web Server Controls HTML Controls Q : What’s the differ... Read More
C# Interview Questions related to Interfaces. By Mallikarjun A 23:37:00 Add Comment Q : Explain what is an Interface in C#? Ans : An Interface in C# is created using the interface keyword. An example is shown below. u... Read More
ASP.NET Page Life Cycle Events By Mallikarjun A 08:30:00 1 Comment PreInit: Raised after the start stage is complete and before the initialization stage begins. Use this event for the following: Check the I... Read More
C# Interview Questions and Answers By Mallikarjun A 23:19:00 Add Comment 1. What is C#? C# is an object oriented, type safe and managed language that is compiled by .Net framework to generate Microsoft Intermediat... Read More