Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

.Net Interview Questions and Answers

by Venkatesan M, on May 23, 2017 6:07:40 PM

.Net Interview Questions and Answers

Q1. What is ASP.Net?

Ans: It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HTML, Javascript, CSS etc. Its successor of Microsoft Active Server Pages(ASP). Currently there is ASP.NET 4.0, which is used to develop web sites. There are various page extensions provided by Microsoft that are being used for web site development. Eg: aspx, asmx, ascx, ashx, cs, vb, html, XML etc.

Q2. What’s the use of Response.Output.Write()?

Ans: We can write formatted output  using Response.Output.Write().

Q3. In which event of page cycle is the ViewState available?

Ans: After the Init() and before the Page_Load().

Q4. What is the difference between Server.Transfer and Response.Redirect?  

Ans: In Server.Transfer page processing transfers from one page to the other page without making a round-trip back to the client’s browser.  This provides a faster response with a little less overhead on the server.  The clients url history list or current url Server does not update in case of Server.Transfer.

Response.Redirect is used to redirect the user’s browser to another page or site.  It performs trip back to the client where the client’s browser is redirected to the new page.  The user’s browser history list is updated to reflect the new address.

Q5. From which base class all Web Forms are inherited?

Ans: Page class. 

Q6. What are the different validators in ASP.NET?

Ans: Required field Validator

Range  Validator

Compare Validator

Custom Validator

Regular expression Validator

Summary Validator

Q7. Which validator control you use if you need to make sure the values in two different controls matched?

Ans: Compare Validator control.

Q8. What is ViewState?

Ans: ViewState is used to retain the state of server-side objects between page post backs.

Q9. Where the viewstate is stored after the page postback?

Ans: ViewState is stored in a hidden field on the page at client side.  ViewState is transported to the client and back to the server, and is not stored on the server or any other external source.

Q10. How long the items in ViewState exists?

Ans: They exist for the life of the current page.

Q11. What are the different Session state management options available in ASP.NET?

Ans:

  1. In-Process
  2. Out-of-Process.

In-Process stores the session in memory on the web server.

Out-of-Process Session state management stores data in an external server.  The external server may be either a SQL Server or a State Server.  All objects stored in session are required to be serializable for Out-of-Process state management.

Q12. How you can add an event handler?

Ans: Using the Attributes property of server side control.

  btnSubmit.Attributes.Add("onMouseOver","JavascriptCode();")

 

Q13. What is caching?

Ans: Caching is a technique used to increase performance by keeping frequently accessed data or files in memory. The request for a cached file/data will be accessed from cache instead of actual location of that file.

Q14. What are the different types of caching?

Ans: ASP.NET has 3 kinds of caching :

Output Caching,

Fragment Caching,

Data Caching.

Q15. Which type if caching will be used if we want to cache the portion of a page instead of whole page?

Ans: Fragment Caching: It caches the portion of the page generated by the request. For that, we can create user controls with the below code:

  <%@ OutputCache Duration="120" VaryByParam="CategoryID;SelectedID"%>

 

Q16. List the events in page life cycle.

Ans: 1) Page_PreInit
2) Page_Init
3) Page_InitComplete
4) Page_PreLoad
5) Page_Load
6) Page_LoadComplete
7) Page_PreRender
8)Render

Q17. Can we have a web application running without web.Config file?

Ans: Yes

Q18. Is it possible to create web application with both webforms and mvc?

Ans: Yes. We have to include below mvc assembly references in the web forms application to create hybrid application.

 

 

System.Web.Mvc

System.Web.Razor

System.ComponentModel.DataAnnotations

 

Q19. Can we add code files of different languages in App_Code folder?
 

Ans: No. The code files must be in same language to be kept in App_code folder.

Q20. What is Protected Configuration?

Ans: It is a feature used to secure connection string information.

Q21. Write code to send e-mail from an ASP.NET application?

Ans:

 

 

 

 

 

 

 

MailMessage mailMess = new MailMessage ();

mailMess.From = "abc@gmail.com";

mailMess.To = "xyz@gmail.com";

mailMess.Subject = "Test email";

mailMess.Body = "Hi This is a test mail.";

SmtpMail.SmtpServer = "localhost";

SmtpMail.Send (mailMess);

 

MailMessage and SmtpMail are classes defined System.Web.Mail namespace.

Q22. How can we prevent browser from caching an ASPX page?

Ans: We can SetNoStore on HttpCachePolicy object exposed by the Response object’s Cache property:

 

 

Response.Cache.SetNoStore ();

Response.Write (DateTime.Now.ToLongTimeString ());


Q23. What is the good practice to implement validations in aspx page?

Ans: Client-side validation is the best way to validate data of a web page. It reduces the network traffic and saves server resources.

Q24. What are the event handlers that we can have in Global.asax file?

Ans:

Application Events:Application_Start , Application_End, Application_AcquireRequestState, Application_AuthenticateRequest, Application_AuthorizeRequest, Application_BeginRequest, Application_Disposed,  Application_EndRequest, Application_Error, Application_PostRequestHandlerExecute, Application_PreRequestHandlerExecute,
Application_PreSendRequestContent, Application_PreSendRequestHeaders, Application_ReleaseRequestState, Application_ResolveRequestCache, Application_UpdateRequestCache

Q25. Which protocol is used to call a Web service?

Ans: HTTP Protocol

Q26. Can we have multiple web config files for an asp.net application?

Ans: Yes.

Q27. What is the difference between web config and machine config?

Ans: Web config file is specific to a web application where as machine config is specific to a machine or server. There can be multiple web config files into an application where as we can have only one machine config file on a server.

Q28. Explain role based security ?

Ans: Role Based Security used to implement security based on roles assigned to user groups in the organization.

Then we can allow or deny users based on their role in the organization. Windows defines several built-in groups, including Administrators, Users, and Guests.

 

 

 

 

<AUTHORIZATION>< authorization >

< allow roles="Domain_Name\Administrators" / >   < !-- Allow Administrators in domain. -- >

< deny users="*"  / >                            < !-- Deny anyone else. -- >

< /authorization >

 

Q29. What is Cross Page Posting?

Ans: When we click submit button on a web page, the page post the data to the same page. The technique in which we post the data to different pages is called Cross Page posting. This can be achieved by setting POSTBACKURL property of  the button that causes the postback. Findcontrol method of PreviousPage can be used to get the posted values on the page to which the page has been posted.

Q30. How can we apply Themes to an asp.net application?

Ans: We can specify the theme in web.config file. Below is the code example to apply theme:

  <configuration>

<system.web>

<pages theme="Windows7" />

</system.web>

</configuration>

 

Q31. What is RedirectPermanent in ASP.Net?

Ans: RedirectPermanent Performs a permanent redirection from the requested URL to the specified URL. Once the redirection is done, it also returns 301 Moved Permanently responses.

Q32. What is MVC?

Ans: vMVC is a framework used to create web applications. The web application base builds on  Model-View-Controller pattern which separates the application logic from UI, and the input and events from the user will be controlled by the Controller.

Q33. Explain the working of passport authentication.

Ans: First of all it checks passport authentication cookie. If the cookie is not available then the application redirects the user to Passport Sign on page. Passport service authenticates the user details on sign on page and if valid then stores the authenticated cookie on client machine and then redirect the user to requested page

Q34. What are the advantages of Passport authentication?

Ans: All the websites can be accessed using single login credentials. So no need to remember login credentials for each web site.

Users can maintain his/ her information in a single location.

Q35. What are the asp.net Security Controls?

Ans:

  • <asp:Login>: Provides a standard login capability that allows the users to enter their credentials
  • <asp:LoginName>: Allows you to display the name of the logged-in user
  • <asp:LoginStatus>: Displays whether the user is authenticated or not
  • <asp:LoginView>: Provides various login views depending on the selected template
  • <asp:PasswordRecovery>:  email the users their lost password

Q36. How do you register JavaScript for webcontrols ?

Ans: We can register javascript for controls using <CONTROL -name>Attribtues.Add(scriptname,scripttext) method.

Q37. In which event are the controls fully loaded?

Ans: Page load event.

Q38. what is boxing and unboxing?

Ans: Boxing is assigning a value type to reference type variable.

Unboxing is reverse of boxing ie. Assigning reference type variable to value type variable.

Q39. Differentiate strong typing and weak typing

Ans: In strong typing, the data types of variable are checked at compile time. On the other hand, in case of weak typing the variable data types are checked at runtime. In case of strong typing, there is no chance of compilation error. Scripts use weak typing and hence issues arises at runtime.

Q40. How we can force all the validation controls to run?

Ans: The Page.Validate() method is used to force all the validation controls to run and to perform validation.

Q41. List all templates of the Repeater control.

Ans:

  • ItemTemplate
  • AlternatingltemTemplate
  • SeparatorTemplate
  • HeaderTemplate
  • FooterTemplate

Q42. List the major built-in objects in ASP.NET? 

Ans:

  • Application
  • Request
  • Response
  • Server
  • Session
  • Context
  • Trace

Q43. What is the appSettings Section in the web.configfile?

Ans: The appSettings block in web config file sets the user-defined values for the whole application.

For example, in the following code snippet, the specified ConnectionString section is used throughout the project for database connection:

1

2

3

4

<em><configuration>

<appSettings>

<add key="ConnectionString" value="server=local; pwd=password; database=default" />

</appSettings></em>

 

Q44. Which data type does the RangeValidatorcontrol support?

Ans: The data types supported by the RangeValidator control are Integer, Double, String, Currency, and Date.

Q45.What is the difference between an Html InputCheckBox control and an Html Input Radio Button control?

Ans: In HtmlInputCheckBoxcontrol, multiple item selection is possible whereas in HtmlInputRadioButton controls, we can select only single item from the group of items.

Q46. Which namespaces are necessary to create a localized application?

Ans: System.Globalization

System.Resources

Q47. What are the different types of cookies in ASP.NET?

Ans: Session Cookie – Resides on the client machine for a single session until the user does not log out.

Persistent Cookie – Resides on a user’s machine for a period specified for its expiry, such as 10 days, one month, and never.

Q48. What is the file extension of web service?

Ans: Web services have file extension .asmx..

Q49. What are the components of ADO.NET?

Ans: The components of ADO.Net are Dataset, Data Reader, Data Adaptor, Command, connection.

Q50. What is the difference between ExecuteScalar and ExecuteNonQuery?

Ans: ExecuteScalar returns output value where as ExecuteNonQuery does not return any value but the number of rows affected by the query. ExecuteScalar used for fetching a single value and ExecuteNonQuery used to execute Insert and Update statements.

Q51. NET Framework class library:

Ans: The .NET framework class library is a collection of reusable types and exposes features of the runtime. It contains of a set of classes that is used to access common functionality.

Q52. What is CTS (Common Type System)?

Ans: The common type system (CTS) defines how types are declared, used, and managed in the runtime, and is also an important part of the runtime’s support for cross-language integration. The common type system performs the following functions:

  • Establishes a framework that helps to enable cross-language integration, type safety, and high performance code execution.
  • Provides an object-oriented model that supports the complete implementation of many programming languages.
  • Define the rules that languages must follow, which helps to ensure that objects written in different languages can interact with each other.

Q53. What is CLS (Common Language Specification)?

Ans: This is a subset of the CTS which all .NET languages are expected to support. It was always a dream of Microsoft to unite all different languages in to one umbrella and CLS is one step towards that. Microsoft has defined CLS which are nothing but guidelines that language to follow, so that it can communicate with other .NET languages in a seamless manner.

Q54. What is .Net Assembly?

Ans: .Net Assembly is one basic building of application. It can be an .exe or .dll file.
.Net Assembly can be used to

  • Simplify application deployment
  • Solves the versioning problems that can occur with component-based applications

Q55. What are the Different elements in .Net Assembly?

Ans:

  • Assembly manifest
  • Type Metadata
  • MSIL Code
  • Set of Resources

Q56. What is Global Assembly catche?

Ans: If the machine installs with .NetFramework, then the machine contains a machine-wide code cache called the global assembly cache. The global assembly cache stores assemblies specifically designated to be shared by several applications on the machine/computer.

Q57. What are different ways to deploy an assembly in to global assembly catche?

Ans:

  • We can use the Global Assembly Cache tool (Gacutil.exe), GAC Tool has provided by the .NET Framework SDK.
  • We can use Windows Explorer to drag assemblies into the cache.
  • We can use an installer designed to work with the global assembly cache.

Q58. Explain the Application Domain in .NetFramework?

Ans: Application Domain will isolate applications that are running on same computer. Application domains will provide more secure and versatile unit of processing that CLR can use to provide isolation between applications.

Q59. What are the benefits of isolation provided by the Application domains?

Ans:

  • Faults in one application cannot affect other applications. The application domains ensure that code running in one domain cannot affect other applications in the process.
  • Individual applications can be stopped without stopping the entire process. Application domains will enable you to unload the code running in a single application.

Q60. What are the types of Authentication in ASP.NET?

Ans: There are three types of authentication available in ASP.NET:

  1. Windows Authentication: This authentication method uses built-in windows security features to authenticate user.
  2. Forms Authentication: authenticate against a customized list of users or users in a database.
  3. Passport Authentication: validates against Microsoft Passport service which is basically a centralized authentication service.

Q61. What are Session state modes in ASP.NET?

Ans: ASP.NET supports different session state storage options:

  • In-Processis the default approach. It stores session state locally on same web server memory where the application is running.
  • StateServermode stores session state in a process other than the one where application is running. Naturally, it has added advantages that session state is accessible from multiple web servers in a Web Farm and also session state will remain preserved even web application is restarted.
  • SQLServermode stores session state in SQL Server database. It has the same advantages as that of StateServer.
  • Custommodes allows to define our custom storage provider.
  • Offmode disables session storage.

Q62. What are the different types of Validation controls in ASP.NET?

Ans: In order to validate user input, ASP.NET provides validation server controls. All validation controls inherit from BaseValidator class which contains the common validation properties and methods like ControlToValidate, Enabled, IsValid, EnableClientScript, ValidationGroup,Validate(), etc.

ASP.NET provides a range of validation controls:

  • RequiredFieldValidator validates compulsory/required input.
  • RangeValidator validates the range. Validates that input falls between the given range values.
  • CompareValidator validates or compares the input of a control with another control value or with a fixed value.
  • RegularExpressionValidator validates input value against a defined regular expression pattern.
  • CustomValidator allows to customize the validation logic with respect to our application logic.
  • ValidationSummary displays all errors on page collectively.

Q63. What is the difference between custom controls and user controls?

Ans: Custom controls are basically compiled code, i.e., DLLs. These can be easily added to toolbox, so it can be easily used across multiple projects using drag and drop approach. These controls are comparatively hard to create.

But User Controls (.ascx) are just like pages (.aspx). These are comparatively easy to create but tightly coupled with respect to User Interface and code. In order to use across multiple projects, we need to copy and paste to the other project as well.

Related Interview Questions...

ASP.Net Web API Essentials using C# Interview Questions

VB.NET Interview Questions and Answers

ASP.NET MVC Interview Questions and Answers

ASP.NET Interview Questions and Answers For Experienced

ASP.NET Interview Questions and Answers

.NET Apps Interview Questions

Topics:.Net Interview Question and AnswerInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...