Posts

Showing posts from July, 2017
Learn Microsoft Dot Net from Basics -  Dot Net Tutorial for Freshers - Easy Guide 1. What is OOPS? OOPS is abbreviated as Object Oriented Programming system in which programs are considered as a collection of objects. Each object is nothing but an instance of a class. 2 . Write basic concepts of OOPS? Following are the concepts of OOPS and are as follows:. Abstraction. Encapsulation. Inheritance. Polymorphism. 3. What is a class? A class is simply a representation of a type of object. It is the blueprint/ plan/ template that describe the details of an object. 4. What is an object? Object is termed as an instance of a class, and it has its own state, behavior and identity. 5 . What is Encapsulation? Encapsulation is an attribute of an object, and it contains all data which is hidden. That hidden data can be restricted to the members of that class. Levels are Public,Protected, Private, Internal and Protected Internal. 6 . What is Polymorphism? Polymorp

Top 50 .NET Interview Questions and Answers for Freshers

Image
Learn Microsoft.NET From Basics -  Microsoft .NET Tutorial For Beginners 1.What is .NET? NET is an integral part of many applications running on Windows and provides common functionality for those applications to run. This download is for people who need .NET to run an application on their computer. For developers, the .NET Framework provides a comprehensive and consistent programming model for building applications that have visually stunning user experiences and seamless and secure communication. 2.How many languages .NET is supporting now? When .NET was introduced it came with several languages. VB.NET, C#, COBOL  and Perl, etc. 3. What is an IL? Intermediate Language is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language). All .NET source code is compiled to IL. IL is then converted to machine code at the point where the software is installed, or at run-time by a Just-In-Time (JIT) compiler. 4. What is code access secur