Posts

Showing posts from 2017

Top 100 Microsoft Dot Net Interview Questions with Answers

1. What is C-Sharp (C#)? C# is a type-safe, managed and object oriented language, which is compiled by .Net framework for generating intermediate language (IL). 2. Explain the types of comments in C#? Below are the types of comments in C# – -->Single Line Comment Eg : // -->Multiline Comments Eg: /* */ -->XML Comments Eg : /// 3. List out the differences between Array and ArrayList in C#? Array stores the values or elements of same data type but arraylist stores values of different datatypes. Arrays will use the fixed length but arraylist does not uses fixed length like array. 4. Why to use “using” in C#? “Using” statement calls – “dispose” method internally, whenever any exception occurred in any method call and in “Using” statement objects are read only and cannot be reassignable or modifiable. 5. What is ASP.Net? It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HT

History of ASP.NET MVC Framework(Infographic)

Image
Introduction: Microsoft had introduced ASP.NET MVC in .Net 3.5 and then many features have been added. ASP.NET MVC(Model-View-Controller) is a Web Application Framework. MVC is highly testable open source framework. Here we will discuss released version history of ASP.NET MVC Framework. ASP.NET MVC Latest Updated - Free PDF Link

Top 7 New Features of C# 7.0(Infographic)

Image
Introduction: In C# 7, a lot of new features have been introduced, and also enhancement have been done for some features. Given below is the Top features of  C# 7.0 . Microsoft Dot Net Topics Latest Updated   – FREE PDF 

Complete Dot Net Topics to be Professional Dot Net Developer

Image
Preparing for .NET interview can be little hard because you do not know what to expect, especially if you are New to the .NET development. With this article, It gives you a platform to learn programs in .NET language, you get some basic idea and become job ready. Following is a list of important .NET developer interview questions and topics that frequently are asked. Dot Net Topics Latest Updated - FREE PDF Download Link FRAMEWORK CONCEPTS .NET Framework introduction Framework Components Types of Applications developed using MS.NET Base Class Library/Framework Class Library Namespaces, CLR MS.NET Memory Management / Garbage Collection CTS,CLS JIT Compilers C# Overview of C# Datatypes & Variables Declaration Implicit and Explicit Casting Enum and Constant Control Structures Arrays,Methods,Out and Parameters OOPS Classes Objects Encapsulation Inheritance Polymorphism Abstract Interfaces Delegates EXCEPTION HANDLING Introduct

Important Tools For Dot NET Development

Image
Microsoft Visual Studio: Microsoft Visual Studio is the important part of .NET Development. Microsoft Provides Microsoft Visual Studio it is one of the tools for Integrated Development Environment. Microsoft API, Micro-soft windows, and Microsoft Silverlight platforms are used in Visual Studio. It Supports Code editor, Code Debugger and Supports many Programming Languages. NuGet: Microsoft Development Platform Designed the NuGet. It is a free and Open Source Package.In Command Line and Automated with Scripts, the NuGet can be used. NuGet mainly Supports .NET Framework.Dot NET Developers mainly focused on NuGet. Trending Now:  Future of Dot Net Development NUnit: In .NET Framework, NUnit is used for Unit Testing Framework. It is the Open Source Platform for Microsoft.NET. NUnit Provides the Console Number Which is used in Execution Test. Advanced Feature of Dot Net Framework Web Essential Web Essential is the most important tool for Web developer and Its Extend w

Unit Testing in ASP.NET MVC - Easy Guide for Beginners and Professional

Image
What is Unit Testing ?   Unit tests are definitely becoming a need-to-have skill for developers to confirm their code does what it should for production.  1.In real world every application comprises of many modules. For instance consider a simple E-Commerce application may comprises of Inventory Module, Customer management Module, Order module etc.  2. Every Module is made of using more than one classes. 3. Every class exposes many functionalities in the form of functions. In Unit Testing we test these functions individually in an automated manner. Get Easiest & Simplest idea about ASP.NET MVC What are some general guidelines for Unit Testing?   Make sure you unit tests tests what needs to be unit tested…and nothing more.  If you have a simple POCO (Plain Old CLR Object) with a list of properties with no implementation or business rules behind it, I’m guessing you don’t need to test it. Your code should be unit testable. If it’s not, you may need to ret
The  ASP.NET MVC 5 Framework  is the latest update to Microsoft’s popular ASP.NET web platform. It provides an extensible, high-quality programming model that allows you to build dynamic, data-driven websites, focusing on a cleaner architecture and test-driven development. ASP.NET MVC TOPICS LATEST UPDATE - FREE PDF DOWNLOAD ASP.NET MVC 5 contains a number of improvements over previous versions, including some new features, improved user experiences; native support for JavaScript libraries to build multi-platform  CSS  and  HTML5  enabled sites and better tooling support. In this article, we will be taking an overview of some of the exciting N ew fundamental features of MVC 5 : Scaffolding One ASP.NET Bootstrap Scaffolding : Visual Studio 2013 includes a new Scaffolding Framework for ASP.NET MVC 5 and the ASP.NET Web API 2. Simply put, Scaffolding is a code generation framework provided for ASP.NET Web Applications. Using this framework,

TOP 50 ASP.NET MVC Interview Questions with Answers

Learn Microsoft Dot Net from Basics —  Dot Net Tutorial for Freshers — Easy Guide 1) What is MVC? MVC is a pattern which is used to split the application’s implementation logic into three components: models, views, and controllers. 2) Can you explain Model, Controller and View in MVC? Model — It’s a business entity and it is used to represent the application data. Controller — Request sent by the user always scatters through controller and it’s responsibility is to redirect to the specific view using View() method. View — It’s the presentation layer of MVC. 3)Explain the new features added in version 4 of MVC (MVC4)? Following are features added newly – Mobile templates Added ASP.NET Web API template for creating REST based services. Asynchronous controller task support. Bundling the java scripts. Segregating the configs for MVC routing, Web API, Bundle etc. 4)Can you explain the page life cycle of MVC? Below are the processed followed in the sequence -