BootStrap Interview Questions By Mallikarjun A 18:35:00 Add Comment BootStrap Interview Questions 1) Explain what is Bootstrap? Bootstrap is Javascript framework for building the rich web applications wi... Read More
LINQ Interview Questions By Mallikarjun A 18:32:00 Add Comment LINQ Interview Questions 1) Explain what is LINQ? Why is it required? Language Integrated Query or LINQ is the collection of standard quer... Read More
Different Types of Type Casting or Type Conversion By Mallikarjun A 13:35:00 Add Comment Implicit conversion Implicit conversion is being done automatically by the compiler and no data will be lost. It includes conversion... Read More
Understanding virtual, override and new keyword in C# By Mallikarjun A 13:33:00 1 Comment As you know Polymorphism is the concepts of OOPS which includes method overriding and method overloading. Virtual and Override keyword are u... Read More
Understanding Boxing and Unboxing in C# By Mallikarjun A 13:32:00 1 Comment Boxing and unboxing are the most important concepts you always get asked in your interviews. Actually, it's really easy to understand, a... Read More
Interview Questions on C# Collections By Mallikarjun A 23:18:00 Add Comment A collection is a set of related objects. Unlike arrays, a collection can grow and shrink dynamically as the number of objects added or del... Read More
Differences between Ref and out parameters By Mallikarjun A 15:32:00 Add Comment Ref and out parameters are used to pass an argument within a method. In this article, you will learn the differences between these two para... Read More
Understanding decision making statements in C# By Mallikarjun A 13:19:00 Add Comment Decision making statements help you to make decision based on certain conditions. These conditions are specified by a set of decision making... Read More
lamda expression in c# By Mallikarjun A 23:16:00 Add Comment The concept of lamda expression was introduced in C# 3.0. Basically, Lamda expression is a more concise syntax of anonymous method. It is j... Read More
Difference between int,int16,int32,int64 C# By Mallikarjun A 15:29:00 Add Comment int It is a primitive data type defined in C#. It is mapped to Int32 of FCL type. It is a value type and represent System.Int3... Read More
New features added in c# 5.0 By Mallikarjun A 15:28:00 Add Comment C# most recent version 5.0 was released on August 15, 2012 with .NET Framework 4.5 and Visual Studio 2012. There are two main features in ... Read More