Net 4 5 Interview Questions And Answers

Net 4 5 Interview Questions list for experienced

  1. Explain the various modes for the Session state in ASP.NET?
  2. Explain the differences between GridView and DataGrid?
  3. How would you explain the differences between ListView and Repeater?
  4. Briefly Describe Globalization and Localization?
  5. How are User Control and Custom Control different?
  6. Explain server controls in ASP.NET?
  7. Explain various page events in ASP.NET?
  8. Explain the difference between Web.config and Machine.config file?
  9. Briefly describe the difference between the Web Site and Web Application?
  10. Explain View State? And its advantages and disadvantages.
  11. Explain Cookies in ASP.NET?
  12. Explain the purpose of Web Services in ASP.NET?
  13. Explain App Domain Concept in ASP.NET with Example.
  14. What is tracing in .NET?
  15. Why do we use CheckBox in .NET?
  16. Explain the HTML server controls in ASP.NET?
  17. Briefly describe the application of state management in ASP.NET? Add Examples.
  18. Explain the ASP.NET page life cycle in brief.
  19. What is the difference between custom controls and user controls?
  20. What are the different Validators in ASP.NET?
  21. What are the different Session state management options available in ASP.NET?
  22. Give some examples of web controls.
  23. What is the difference between session and application object?
  24. What is Caching and what are the benefits of using it?
  25. What is ASP.NET AJAX?
  26. What is the REST architecture?
  27. What is Razor in ASP.NET

Net 4 5 interview questions and answers on advance and basic Net 4 5 with example so this page for both freshers and experienced condidate. Fill the form below we will send the all interview questions on Net 4 5 also add your Questions if any you have to ask and for apply in Net 4 5 Tutorials and Training course just send a mail on info@pcds.co.in in detail about your self.

Top Net 4 5 interview questions and answers for freshers and experienced

What is Net 4 5 ?

Answer : Version 4.5 of the .NET Framework.

Questions : 1 :: Explain the various modes for the Session state in ASP.NET?

There are various modes for storing session state: InProc: The session state is stored in the memory on the web server. This is the default mode. Custom mode: you can specify a custom...View answers

Questions : 2 :: Explain the differences between GridView and DataGrid?

GridView DataGrid In-built support for paging, sorting and in-place editing using PagerSettings property. Requires custom code for paging, sorting and editing. Uses data source...View answers

Questions : 3 :: How would you explain the differences between ListView and Repeater?


Repeater ListView Flexible layout introduced in .NET 1.0. Flexible layout with easy customization introduced with .NET 3.5 No built-in support, custom code should be written for...View answers

Questions : 4 :: Briefly Describe Globalization and Localization?

 Globalization is the growth of business outside the national borders. It involves understanding the laws and regulations of various countries to build the business environment. Globalization...View answers

Questions : 5 :: How are User Control and Custom Control different?

User Control Custom Control Stored as .ascx extension. It is a .dll extension. They have a visual interface. These controls don't have a visual interface. Do not appear in the...View answers

Questions : 6 :: Explain server controls in ASP.NET?


Server controls are the primary controls in ASP.NET and are categorized in the following groups: Validation controls:  These controls validate user input by running the client-side...View answers

Questions : 7 :: Explain various page events in ASP.NET?

The various page events in ASP.NET are: Event Description Page request This event happens before the lifecycle begins. Whenever a user requests a page, ASP.NET parses and compiles the...View answers

Questions : 8 :: Explain the difference between Web.config and Machine.config file?

web.config machine.config Stores the configuration settings for a particular web application. Specifies the configuration settings for all the websites hosted on the web...View answers

Questions : 9 :: Briefly describe the difference between the Web Site and Web Application?


Website Web Application Contains static content available publicly to all the visitors. Dynamic and interactive content.  The content is readable by all but cannot be changed...View answers

Questions : 10 :: Explain View State? And its advantages and disadvantages.

Suppose a user submits a form and there are validation errors or if the page refreshes after the user enters a lot of information on the page. In such cases, the information already written by the...View answers

Questions : 11 :: Explain Cookies in ASP.NET?

 A cookie is a part of text that stores user-specific data. Cookies are stored by the browser in a user's hard drive and used whenever the user requests for a particular page. Cookies help in...View answers

Questions : 12 :: Explain the purpose of Web Services in ASP.NET?

 ASP.NET can create web services which are nothing but programs that use XML to exchange data with other software programs through commonly used internet protocols. We can communicate with any...View answers

Questions : 13 :: Explain App Domain Concept in ASP.NET with Example.

 App domain or application domain in ASP.NET is a light-weight process that has its own set of code, configuration and data settings. It is a logical boundary that separates one application from...View answers

Questions : 14 :: What is tracing in .NET?

Tracing in .net enables one to follow the execution path of a page, debug the application and display diagnostic information at runtime. Trace messages can be accessed and manipulated from the code...View answers

Questions : 15 :: Why do we use CheckBox in .NET?

The checkbox is used to get multiple inputs from the user. Users can select more than one choice from the given options. In the code, it is set as a yes/no or true/false option, when it is ticked,...View answers

Questions : 16 :: Explain the HTML server controls in ASP.NET?

HTML server controls provide automatic state and server-side event management. These are HTML elements that have the attribute runat=server. The HTML server control properties and output are the same...View answers

Questions : 17 :: Briefly describe the application of state management in ASP.NET? Add Examples.

HTTP is stateless, i.e. doesn't remember the state of a user, for example, his previously visited websites, requests and URLs. However, for certain requests, we need to maintain the state of...View answers

Questions : 18 :: Explain the ASP.NET page life cycle in brief.

 ASP.NET goes through a series of stages in the life cycle of each page. Page request. The user requests a page. ASP.NET decides whether to compile it or serve it from a cache. Page Start....View answers

Questions : 19 :: What is the difference between custom controls and user controls?

Custom controls are basically compiled code, i.e., DLLs. These can be easily added to the toolbox, so it can be easily used across multiple projects using a drag-and-drop approach. These controls are...View answers

Questions : 20 :: What are the different Validators in ASP.NET?

ASP.NET validation controls define an important role in validating the user input data. Whenever the user gives input, it must always be validated before sending it across the various layers of an...View answers

Questions : 21 :: What are the different Session state management options available in ASP.NET?

In-Process and Out-of-Process are the two session state management options. In-Process stores the session in memory on the web server. Out-of-Process Session state management stores data in an...View answers

Questions : 22 :: Give some examples of web controls.

Questions : 23 :: What is the difference between session and application object?

The difference between session and application object is that all users share one Application object and with sessions, there is one session object for each user. Data stored in the application...View answers

Questions : 24 :: What is Caching and what are the benefits of using it?

Caching is a mechanism that improves performance for an application by storing data in the memory for faster access. When the application accesses data from Cache (i.e. in-memory) instead of fetching...View answers

Questions : 25 :: What is ASP.NET AJAX?

 Microsoft has provided an implementation of AJAX functionality known as ASP.NET AJAX. AJAX stands for Asynchronous JavaScript and XML. This is a cross-platform technology that speeds up...View answers

Questions : 26 :: What is the REST architecture?

 REST (Representational State Transfer) is an architectural style for designing applications and it dictates to use HTTP for making calls for communications instead of complex mechanism like...View answers

Questions : 27 :: What is Razor in ASP.NET

Razor is a markup syntax that lets you embed server-based code (Visual Basic and C#) into web pages. The server-based code can create dynamic web content on the fly, while a web page is written to...View answers
More Question

Ask your interview questions on Net 4 5

Write Your comment or Questions if you want the answers on Net 4 5 from Net 4 5 Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---