ASP Interview Questions and Answers
ASP Interview Questions and Answers
1. What is ASP?
Active Server Pages (ASP), also known as Classic ASP, is a Microsoft's server-side technology, which helps in
creating dynamic and user-friendly Web pages. It uses different scripting languages to create dynamic Web pages,
which can be run on any type of browser. The Web pages are built by using either VBScript or JavaScript and these
Web pages have access to the same services as Windows application, including ADO (ActiveX Data Objects) for
database access, SMTP (Simple Mail Transfer Protocol) for e-mail, and the entire COM (Component Object Model)
structure used in the Windows environment. ASP is implemented through a dynamic-link library (asp.dll) that is
called by the IIS server when a Web page is requested from the server.
2. What is ASP.NET?
ASP.NET is a specification developed by Microsoft to create dynamic Web applications, Web sites, and Web services.
It is a part of .NET Framework. You can create ASP.NET applications in most of the .NET compatible languages,
such as Visual Basic, C#, and J#. The ASP.NET compiles the Web pages and provides much better performance
than scripting languages, such as VBScript. The Web Forms support to create powerful forms-based Web pages.
You can use ASP.NET Web server controls to create interactive Web applications. With the help of Web server
controls, you can easily create a Web application.
3. What is the basic difference between ASP and ASP.NET?
The basic difference between ASP and ASP.NET is that ASP is interpreted; whereas, ASP.NET is compiled. This
implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other
hand, ASP.NET uses .NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate
Language (MSIL).
4. In which event are the controls fully loaded?
Page load event guarantees that all controls are fully loaded. Controls are also accessed in Page_Init events but
you will see that view state is not fully loaded during this event
5. How can we identify that the Page is Post Back?
Page object has an "IsPostBack" property, which can be checked to know that is the page posted back.
6. What is the lifespan for items stored in ViewState?
The items stored in ViewState live until the lifetime of the current page expires including the postbacks to the
same page.
7. How information about the user's locale can be accessed?
The information regarding a user's locale can be accessed by using
the System.Web.UI.Page.Culture property.
8. What is the difference between SQL notification and SQL invalidation?
The SQL cache notification generates notifications when the data of a database changes, on which your cache item
depends. The SQL cache invalidation makes a cached item invalid when the data stored in a SQL server database
changes.
9. Which is the parent class of the Web server control?
The System.Web.UI.Control class is the parent class for all Web server controls.
10. Can you set which type of comparison you want to perform by the CompareValidator control?
Yes, by setting the Operator property of the CompareValidator control.
11. What is the behavior of a Web browser when it receives an invalid element?
The behavior of a Web browser when it receives an invalid element depends on the browser that you use to browse
your application. Most of the browsers ignore the invalid element; whereas, some of them display the invalid
elements on the page.
12. What are the advantages of the code-behind feature?
The code-behind feature of ASP.NET offers a number of advantages:
Makes code easy to understand and debug by separating application logic from HTML tags
Provides the isolation of effort between graphic designers and software engineers
Removes the problems of browser incompatibility by providing code files to exist on the Web server and
supporting Web pages to be compiled on demand.
The FormsAuthentication.Signout() method is used to sign out from the forms authentication.
If you want a control to postback automatically when an event is raised, you need to set
the AutoPostBack property of the control to True.
The ASP.NET 4.0 introduced a new property called ViewStateMode for the Control class. Now you can
enable the view state to an individual control even if the view state for an ASP.NET page is disabled.
The App_Code folder is automatically present in the project. It stores the files, such as classes, typed
data set, text files, and reports. If this folder is not available in the application, you can add this folder.
One of the important features of the App_Code folder is that only one dll is created for the complete
folder, irrespective of how many files it contains.
A multilingual Web site serves content in a number of languages. It contains multiple copies for its content
and other resources, such as date and time, in different languages.
ASP.NET Web forms are designed to use controls and features that are almost as powerful as the ones
used with Windows forms, and so they are called as Web forms. The Web form uses a server-side object
model that allows you to create functional controls, which are executed on the server and are rendered as
HTML on the client. The attribute,runat="server", associated with a server control indicates that the
Web form must be processed on the server.
19. What is the difference between a default skin and a named skin?
The default skin is applied to all the Web server controls in a Web form, which are of similar type, and it does not
provide a Skin ID attribute. The named skin provides a Skin ID attribute and users have to set the Skin ID property
to apply it.
20. What is IIS? Why is it used?
Internet Information Services (IIS) is created by Microsoft to provide Internet-based services to ASP.NET Web
applications. It makes your computer to work as a Web server and provides the functionality to develop and deploy
Web applications on the server. IIS handles the request and response cycle on the Web server. It also offers the
services of SMTP and FrontPage server extensions. The SMTP is used to send emails and use FrontPage server
extensions to get the dynamic features of IIS, such as form handler.
21. What is Query String? What are its advantages and limitations?
The Query String helps in sending the page information to the server.
The Query String has the following advantages:
It does not require server resources and so does not exert any kind of burden on the server.
Information must be within the limit because URL does not support many characters.
22. What is actually returned from server to the browser when a browser requests an .aspx file and the
file is displayed?
When a browser requests an .aspx file then the server returns a response, which is rendered into a HTML string.
23. How can you display all validation messages in one control?
The ValidationSummary control displays all validation messages in one control.
24. Which two new properties are added in ASP.NET 4.0 Page class?
The two new properties added in the Page class are MetaKeyword and MetaDescription.
25. What is tracing? Where is it used?
Tracing displays the details about how the code was executed. It refers to collecting information about the
application while it is running. Tracing information can help you to troubleshoot an application. It enables you to
record information in various log files about the errors that might occur at run time. You can analyze these log files
to find the cause of the errors.
In .NET, we have objects called Trace Listeners. A listener is an object that gets the trace output and stores it to
different places, such as a window, a file on your locale drive, or a SQL Server.
The System.Diagnostics namespace contains the predefined interfaces, classes, and structures that are used
for tracing. It supplies two classes, Trace and Debug, which allow you to write errors and logs related to the
application execution. Trace listeners are objects that collect the output of tracing processes.
26. What is the difference between authentication and authorization?
Authentication verifies the identity of a user and authorization is a process where you can check whether or not the
identity has access rights to the system. In other words, you can say that authentication is a procedure of getting
some credentials from the users and verify the user's identity against those credentials. Authorization is a
procedure of granting access of particular resources to an authenticated user. You should note that authentication
always takes place before authorization.
27. How can you register a custom server control to a Web page?
You can register a custom server control to a Web page using the @Register directive.
28. Which ASP.NET objects encapsulate the state of the client and the browser?
The Session object encapsulates the state of the client and browser.
29. Differentiate globalization and localization.
The globalization is a technique to identify the specific part of a Web application that is different for different
languages and make separate that portion from the core of the Web application. The localization is a procedure of
configuring a Web application to be supported for a specific language or locale.
30. What is ViewState?
The ViewState is a feature used by ASP.NET Web page to store the value of a page and its controls just before
posting the page. Once the page is posted, the first task by the page processing is to restore the ViewState to
get the values of the controls.
31. Which method is used to force all the validation controls to run?
The Page.Validate() method is used to force all the validation controls to run and to perform validation.
32. Which method has been introduced in ASP.NET 4.0 to redirect a page permanently?
The RedirectPermanent() method added in ASP.NET 4.0 to redirect a page permanently. The following code
snippet is an example of the RedirectPermanent() method:
RedirectPermanent("/path/Aboutus.aspx");
33. How can you send an email message from an ASP.NET Web page?
You can use the System.Net.Mail.MailMessage and the System.Net.Mail.SmtpMail classes to send an
email in your Web pages. In order to send an email through your mail server, you need to create an object of
theSmtpClient class and set the server name, port, and credentials.
34. What is the difference between the Response.Write() and Response.Output.Write() methods?
The Response.Write() method allows you to write the normal output; whereas,
the Response.Output.Write()method allows you to write the formatted output.
35. What does the Orientation property do in a Menu control?
Orientation property of the Menu control sets the horizontal or vertical display of a menu on a Web page. By
default, the orientation is vertical.
36. Differentiate between client-side and server-side validations in Web pages.
Client-side validations take place at the client end with the help of JavaScript and VBScript before the Web page is
sent to the server. On the other hand, server-side validations take place at the server end.
37. How does a content page differ from a master page?
A content page does not have complete HTML source code; whereas a master page has complete HTML source
code inside its source file.
38. Suppose you want an ASP.NET function (client side) executed on the MouseOver event of a button.
Where do you add an event handler?
The event handler is added to the Add() method of the Attributes property.
39. What is the default timeout for a Cookie?
The default time duration for a Cookie is 30 minutes.
40. What are HTTP handlers in ASP.NET?
HTTP handlers, as the name suggests, are used to handle user requests for Web application resources. They are
the backbone of the request-response model of Web applications. There is a specific event handler to handle the
request for each user request type and send back the corresponding response object.
Each user requests to the IIS Web server flows through the HTTP pipeline, which refers to a series of components
(HTTP modules and HTTP handlers) to process the request. HTTP modules act as filters to process the request as it
passes through the HTTP pipeline. The request, after passing through the HTTP modules, is assigned to an HTTP
handler that determines the response of the server to the user request. The response then passes through the
HTTP modules once again and is then sent back to the user.
You can define HTTP handlers in the <httpHandlers> element of a configuration file. The <add> element tag is
used to add new handlers and the <remove> element tag is used to remove existing handlers. To create an HTTP
handler, you need to define a class that implements the IHttpHandler interface.
41. What are the events that happen when a client requests an ASP.NET page from IIS server?
The following events happen when a client requests an ASP.NET page from the IIS server:
1.
2.
3.
4.
An object of the HttpApplication class is created and allocated to the Request object.
5.
CreateUserWizard control - Provides an interface to the user to register for that Web site.
Login control - Provides an interface for user authentication. It consists of a set of controls, such
asTextBox, Label, Button, CheckBox, HyperLink.
LoginView control - Displays appropriate information to different users according to the user's status.
LoginStatus control - Shows a login link to users, who are not authenticated and logout link, who are
authenticated
PasswordRecovery control - Allows users to get back the password through an e-mail, if they forget.
<authorization >
<deny users="username" />
</authorization>
48. What are the event handlers that can be included in the Global.asax file?
The Global.asax file contains some of the following important event handlers:
Application_Error
Application_Start
Application_End
Session_Start
Session_End
49. What is the difference between page-level caching and fragment caching?
In the page-level caching, an entire Web page is cached; whereas, in the fragment caching, a part of the Web
page, such as a user control added to the Web page, is cached.
50. Make a list of all templates of the Repeater control.
The Repeater control contains the following templates:
ItemTemplate
AlternatingltemTemplate
SeparatorTemplate
HeaderTemplate
FooterTemplate
When we execute a Web page, it passes from the following stages, which are collectively known as Web page
lifecycle:
Page request - During this stage, ASP.NET makes sure the page either parsed or compiled and a cached
version of the page can be sent in response
Start - During this stage sets the Request and Response page properties and the page check the page
request is either a postback or a new request
Page Initialization - During this stage, the page initialize and the control's Unique Id property are set
Load - During this stage, if the request is postback, the control properties are loaded without loading the
view state and control state otherwise loads the view state
Postback event handling - During this stage, if the request is a postback, handles the event
Rendering - During this stage, the page invokes the Render method to each control for return the output
Unload - During this stage, when the page is completely rendered and sent to the client, the page is
unloaded.
52. How can you assign page specific attributes in an ASP.NET application?
The @Page directive is responsible for this.
53. Which method is used to post a Web page to another Web page?
The Respose.Redirect method is used to post a page to another page, as shown in the following code
snippet:Response.Redirect("DestinationPageName.aspx");
54. What is a Cookie? Where is it used in ASP.NET?
Cookie is a lightweight executable program, which the server posts to client machines. Cookies store the identity of
a user at the first visit of the Web site and validate them later on the next visits for their authenticity. The values of
a cookie can be transferred between the user's request and the server's response.
55. What are Custom User Controls in ASP.NET?
The custom user controls are the controls that are defined by developers. These controls are a mixture of custom
behavior and predefined behavior. These controls work similar to other Web server controls.
56. What does the .WebPart file do?
The .WebPart file explains the settings of a Web Parts control that can be included to a specified zone on a Web
page.
57. How can you enable impersonation in the web.config file?
To enable impersonation in the web.confing file, you need to include the <identity> element in
the web.configfile and set the impersonate attribute to true as shown in the following code snippet:
View State
Hidden Fields
Cookies
Query Strings
Control State
Application State
Session State
Profile Properties
To ensure that no one has tampered with ViewState in a Web page, set the EnableViewStateMac property
toTrue.
63. What is the difference between adding items into cache through the Add() method and through
theInsert() method?
Both methods work in a similar way except that the Cache.Add() function returns an object that represents the
item you added in the cache. The Cache.Insert() function can replace an existing item in the cache, which is
not possible using the Cache.Add() method.
64. Explain the cookie less session and its working.
ASP.NET manages the session state in the same process that processes the request and does not create a cookie.
It is known as a cookie less session. If cookies are not available, a session is tracked by adding a session identifier
to the URL. The cookie less session is enabled using the following code snippet: <sessionState
cookieless="true" />
65. What is a round trip?
The trip of a Web page from the client to the server and then back to the client is known as a round trip.
66. What are the major built-in objects in ASP.NET?
The major built-in objects in ASP.NET are as follows:
Application
Request
Response
Server
Session
Context
Trace
67. Where should the data validations be performed-at the client side or at the server side and
why?
Data validations should be done primarily at the client side and the server-side validation should be
avoided because it makes server task overloaded. If the client-side validation is not available, you can use
server-side validation. When a user sends a request to the server, the validation controls are invoked to
check the user input one by one.
When we have several hierarchical levels in a Web site, then we use nested master pages in the Web site.
User controls can be dynamically loaded by adding a Web User Control page in the application and adding
the control on this page.
The web.config file sets the configuration for a Web project. The appSettings block in configuration
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:
<configuration>
<appSettings>
<add key="ConnectionString" value="server=indiabixserver; pwd=dbpassword;
database=indiabix" />
</appSettings>
...
71. What type of code, client-side or server-side, is found in a code-behind file of a Web page?
A code-behind file contains the server-side code, which means that the code contained in a code-behind
file is executed at the server.
72. To which class a Web form belongs to in the .NET Framework class hierarchy?
73. What does the "EnableViewState" property do? Why do we want it On or Off?
The EnableViewState property enables the ViewState property on the page. It is set to On to allow
the page to save the users input between postback requests of a Web page; that is, between
the Request and correspondingResponse objects. When this property is set to Off, the page does not
store the users input during postback.
74. Which event determines that all the controls are completely loaded into memory?
The Page_Load event determines that all the controls on the page are fully loaded. You can also access
the controls in the Page_Init event; however, the ViewState property does not load completely during
this event.
It provides the customize validation code to perform both client-side and server-side validation.
In the Role-based security, you can assign a role to every user and grant the privilege according to that
role. A role is a group of principal that restricts a user's privileges. Therefore, all the organization and
applications use role-based security model to determine whether a user has enough privileges to perform
a requested task.
The data types supported by the RangeValidator control are Integer, Double, String, Currency, and
Date.
HTML server controls are similar to the standard HTML elements, which are normally used in HTML pages.
They expose properties and events that can be used programmatically. To make these controls
programmatically accessible, you need to specify that the HTML controls act as a server control by adding
the runat="server" attribute.
The SiteMapPath control displays a hierarchical path to the root Web page of the Web site. Therefore, it
is known as the breadcrumb or eyebrow navigation control.
You can select more than one HtmlInputCheckBox control from a group
of HtmlInputCheckBox controls; whereas, you can select only a
single HtmllnputRadioButton control from a group of HtmlInputRadioButtoncontrols.
83. What is the difference between HTML and Web server controls?
HTML controls are client-side controls; therefore, all the validations for HTML controls are performed at the
client side. On the other hand, Web server controls are server-side controls; therefore, all the validations
for Web server controls are performed at the server side.
The AdRotator is an ASP.NET control that is used to provide advertisements to Web pages.
The AdRotator control associates with one or many advertisements, which randomly displays one by one
at a time when the Web page is refreshed. The AdRotator control advertisements are associated with
links; therefore, when you click on an advertisement, it redirects you to other pages.
The AdRotator control is associated with a data source, which is normally an xml file or a database
table. A data source contains all the information, such as advertisement graphics reference, link, and
alternate text. Therefore, when you use the AdRotator control, you should first create a data source and
then associate it with theAdRotator control.
The culture denotes a combination of a language and optionally a region or a country. The contents of a Web page
of a multilingual Web site are changed according to the culture defined in the operating system of the user
accessing the Web page.
86. What is the difference between absolute expiration and sliding-time expiration?
The absolute expiration expires a cached item after the provided expiration time. The sliding time does not expire
the cached items because it increments the specified time.
87. What is the code-behind feature in ASP.NET?
The code-behind feature of ASP.NET enables you to divide an ASP.NET page into two files - one consisting of the
presentation data, and the second, which is also called the code-behind file, consisting of all the business logic. The
presentation data contains the interface elements, such as HTML controls and Web server controls, and the codebehind contains the event-handling process to handle the events that are fired by these controls. The file that
contains the presentation data has the .aspx extension. The code behind file has either the .cs extension (if you
are using the programming language C#) or the .vb (if you are using the programming language Visual Basic
.NET) extension.
88. How can you check if all the validation controls on a Web page are valid and proper?
You can determine that all the validation controls on a Web page are properly working by writing code in the source
file of the Web page using a scripting language, such as VBScript or JavaScript. To do this task, you have to loop
across validators collection of pages and check the IsValid property of each validation control on the Web page to
check whether or not the validation test is successful.
89. Explain the validation controls. How many validation controls in ASP.NET 4.0?
Validation controls are responsible to validate the data of an input control. Whenever you provide any input to an
application, it performs the validation and displays an error message to user, in case the validation fails.
ASP.NET 4.0 contains the following six types of validation controls:
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.
timeout="40"/>
99. Can you post and access view state in another application?
Yes, you can post and access a view state in other applications. However, while posting a view state in another
application, the PreviousPage property returns null.
PreRender() - Fires at the brief moment before the page is displayed to the user as HTML.
Unload() - Fires when the page is destroying the instances of server controls.
104. What are navigation controls? How many navigation controls are there in ASP.NET 4.0?
Navigation controls help you to navigate in a Web application easily. These controls store all the links in a
hierarchical or drop-down structure; thereby facilitating easy navigation in a Web application.
There are three navigation controls in ASP.Net 4.0.
SiteMapPath
Menu
TreeView
105. What happens if an ASP.NET server control with event-handling routines is missing from its
definition?
browserCaps
clientTarget
pages
customErrors
globalization
authorization
authentication
webControls
webServices
Windows Authentication - This mode works as the default authentication technique. It can work with
any form of Microsoft Internet Information Services (IIS) authentication, such as Basic, Integrated
Windows authentication (NTLM/Kerberos), Digest, and certificates. The syntax of Windows authentication
mode is given as follows: <authentication mode="windows" />
Forms Authentication - You can specify this mode as a default authentication mode by using the
following code snippet: <authentication mode="Forms"/>
Passport - This mode works with Microsoft Passport authentication, as shown in the following code
snippet:<authentication mode = "Passport"/>
116. What are the different ways to send data across pages in ASP.NET?
The following two ways are used to send data across pages in ASP.NET:
Session
Public properties
ASP.NET uses these web.config configuration files at runtime to compute hierarchically a sole collection
of settings for every URL target request. These settings compute only once and cached across further
requests. ASP.NET automatically checks for changing file settings and do not validate the cache if any of
the configuration changes made.
of storing states is optional. However, under certain circumstances, using states with applications is imperative. For
example, it is necessary to store states for Web applications, such as an e-commerce shopping site or an Intranet
site of a company, to keep track of the requests of the users for the items they have selected on the shopping site
or the days requested for vacation on the Intranet site.
122. Can we validate a DropDownList by RequiredFieldValidator?
Yes, we can validate a DropDownList by RequiredFieldValidator. To perform this validation, we have to set
theInitialValue property of RequiredFieldValidator control.
123. List the features of the Chart control.
The following are the features of the Chart control:
Simple manipulation of chart data, such as copying, merging, grouping, sorting, searching, and filtering.
Provide advanced chart outlook, such as 2-D, 3-D, lighting, and perspective.
number, category, and color and behavior, such as duration of flight, speed, and number of passengers. A class
inherits the data members and behaviors of other classes by extending from them.
3. What is an object?
They are instance of classes. It is a basic unit of a system. An object is an entity that has attributes, behavior, and
identity. Attributes and behavior of an object are defined by the class definition.
4. What is the relationship between a class and an object?
A class acts as a blue-print that defines the properties, states, and behaviors that are common to a number of
objects. An object is an instance of the class. For example, you have a class called Vehicle and Car is the object
of that class. You can create any number of objects for the class named Vehicle, such as Van, Truck, and Auto.
The new operator is used to create an object of a class. When an object of a class is instantiated, the system
allocates memory for every data member that is present in the class.
5. Explain the basic features of OOPs.
The following are the four basic features of OOP:
Abstraction - Refers to the process of exposing only the relevant and essential data to the users without
showing unnecessary information.
Encapsulation - Prevents the data from unwanted access by binding of code and data in a single unit
called object.
Inheritance - Promotes the reusability of code and eliminates the use of redundant code. It is the
property through which a child class obtains all the features defined in its parent class. When a class
inherits the common properties of another class, the class inheriting the properties is called a derived
class and the class that allows inheritance of its common properties is called a base class.
You need to specify the size of an array at the time of its declaration. It cannot be resized dynamically.
2.
Collection:
1.
The size of a collection can be adjusted dynamically, as per the user's requirement. It does not have fixed
size.
2.
3.
4.
A collection can be defined as a group of related items that can be referred to as a single unit.
TheSystem.Collections namespace provides you with many classes and interfaces. Some of them are
- ArrayList,List, Stack, ICollection, IEnumerable, and IDictionary. Generics provide the
type-safety to your class at the compile time. While creating a data structure, you never need to specify
the data type at the time of declaration. The System.Collections.Generic namespace contains all
the generic collections.
5.
6.
You can prevent a class from being inherited further by defining it with the sealed keyword.
7.
8.
9.
10. Can you specify the accessibility modifier for methods inside the interface?
10. All the methods inside an interface are always public, by default. You cannot specify any other access
modifier for them.
11. 11. Is it possible for a class to inherit the constructor of its base class?
12. No, a class cannot inherit the constructor of its base class.
13. 12. How is method overriding different from method overloading?
14. Overriding involves the creation of two or more methods with the same name and same signature in
different classes (one of them should be parent class and other should be child).
Overloading is a concept of using a method at different places with same name and different signatures
within the same class.
13. What is the difference between a class and a structure?
Class:
1.
2.
While instantiating a class, CLR allocates memory for its instance in heap.
3.
4.
5.
Structure:
1.
2.
3.
4.
5.
Structure does not require constructor/destructor and members can be initialiazed automatically.
Access specifiers, such as public, private, and protected, are identically used in structures and
classes to restrict the access of their data and methods outside their body.
The access level for class members and struct members, including nested classes and structs, is private by
default. Private nested types are not accessible from outside the containing type.
Both can have constructors, methods, properties, fields, constants, enumerations, events, and event
handlers.
Both structures and classes can implement interfaces to use multiple-inheritance in code.
Enumeration is defined as a value type that consists of a set of named values. These values are constants and are
called enumerators. An enumeration type is declared using the enum keyword. Each enumerator in an enumeration
is associated with an underlying type that is set, by default, on the enumerator. The following is an example that
creates an enumeration to store different varieties of fruits:
An interface is used to implement multiple inheritance in code. This feature of an interface is quite
different from that of abstract classes because a class cannot derive the features of more than one class
but can easily implement multiple interfaces.
Variables in interface must be declared as public, static, and final while methods must
be public andabstract.
Methods are the building blocks of a class, in which they are linked together to share and process data to produce
the result. In other words, a method is a block of code that contains a series of statements and represents the
behavior of a class. While declaring a method you need to specify the access specifier, the return value, the name
of the method, and the method parameters. All these combined together is called the signature of the method.
32. What is a namespace?
Namespace is considered as a container that contains functionally related group of classes and other types.
33. Do events have return type?
No, events do not have return type.
34. What is the function of the Try-Catch-Finally block?
The try block encloses those statements that can cause exception and the catch block handles the exception, if it
occurs. Catch block contains the statements that have to be executed, when an exception occurs.
The finally block always executes, irrespective of the fact whether or not an exception has occurred.
The finally block is generally used to perform the cleanup process. If any exception occurs in the try block, the
program control directly transfers to its corresponding catch block and later to the finally block. If no exception
occurs inside the try block, then the program control transfers directly to the finally block.
35. How can you prevent a class from overriding in C# and Visual Basic?
You can prevent a class from overriding in C# by using the sealed keyword; whereas,
the NotInheritablekeyword is used to prevent a class from overriding in Visual Basic.
36. What are abstract classes? What are the distinct characteristics of an abstract class?
An abstract class is a class that cannot be instantiated and is always used as a base class.
The following are the characteristics of an abstract class:
You cannot instantiate an abstract class directly. This implies that you cannot create an object of the
abstract class; it must be inherited.
You must declare at least one abstract method in the abstract class.
The basic purpose of an abstract class is to provide a common definition of the base class that multiple derived
classes can share.
37. Give a brief description of properties in C# and the advantages that are obtained by using them in
programs.
In C#, a property is a way to expose an internal data element of a class in a simple and intuitive manner. In other
words, it is a simple extension of data fields. You can create a property by defining an externally available name
and then writing the set and get property accessors. The get property accessor is used to return the property
value. The set property accessor is used to assign a new value to the property.
38. Explain different types of inheritance.
Inheritance in OOP is of four types:
Single inheritance - Contains one base class and one derived class
Hierarchical inheritance - Contains one base class and multiple derived classes of the same base class
All .NET languages supports single, hierarchical, and multilevel inheritance. They do not support multiple
inheritance because in these languages, a derived class cannot have more than one base class. However, you can
implement multiple inheritance in.NET through interfaces.
39. You have defined a destructor in a class that you have developed by using the C# programming
language, but the destructor never executed. Why did the destructor not execute?
The runtime environment automatically invokes the destructor of a class to release the resources that are occupied
by variables and methods of an object. However, in C#, programmers cannot control the timing for invoking
destructors, as Garbage Collector is only responsible for releasing the resources used by an object. Garbage
Collector automatically gets information about unreferenced objects from .NET's runtime environment and then
invokes the Finalize()method.
Although, it is not preferable to force Garbage Collector to perform garbage collection and retrieve all inaccessible
memory, programmers can use the Collect() method of the Garbage Collector class to forcefully execute
Garbage Collector.
40. What is a hashtable?
Hashtable is a data structure that implements the IDictionary interface. It is used to store multiple items and
each of these items is associated with a unique string key. Each item can be accessed using the key associated with
it. In short, hashtable is an object holding the key-value pairs.
41. Can users define their own exceptions in code?
Yes, customized exceptions can be defined in code by deriving from the System.Exception class.
42. Is it possible to execute two catch blocks?
You are allowed to include more than one catch block in your program; however, it is not possible to execute them
in one go. Whenever, an exception occurs in your program, the correct catch block is executed and the control
goes to the finally block.
43. What do you mean by data encapsulation?
Data encapsulation is a concept of binding data and code in single unit called object and hiding all the
implementation details of a class from the user. It prevents unauthorized access of data and restricts the user to
use the necessary data only.
44. What is the difference between procedural and object-oriented programming?
Procedural programming is based upon the modular approach in which the larger programs are broken into
procedures. Each procedure is a set of instructions that are executed one after another. On the other hand, OOP is
based upon objects. An object consists of various elements, such as methods and variables.
Access modifiers are not used in procedural programming, which implies that the entire data can be accessed freely
anywhere in the program. In OOP, you can specify the scope of a particular data by using access modifiers
- public,private, internal, protected, and protected internal.
45. Explain the concept of destructor?
A destructor is a special method for a class and is invoked automatically when an object is finally destroyed. The
name of the destructor is also same as that of the class but is followed by a prefix tilde (~).
A destructor is used to free the dynamic allocated memory and release the resources. You can, however, implement
a custom method that allows you to control object destruction by calling the destructor.
The main features of a destructor are as follows:
2.
3.
4.
5.
6.
7.
The class extending the abstract class may or may not implement any of its method.
8.
Interface
1.
2.
3.
4.
5.
6.
7.
8.
structemp
{
fixedintempID[15];
fixedcharname[30];
fixedcharaddr[50];
fixedchardept[15];
fixedchardesig[15];
}
The preceding example defines a structure emp and the members of this structure specify the information of an
employee.
54. When do you really need to create an abstract class?
We define abstract classes when we define a template that needs to be followed by all the derive
Background
I have attended many interviews in my life. But the interview with Infosys was something different. I thought to
share that experience with you all.
Points to be remember
(There are some mistakes I made in the interview. I don't want you to do the same :)) Please ensure that you are
maintaining eye contact with the interviewer. Be confident of what you say. Don't change your answer if the
interviewer tries to make you do so. Please avoid the unwanted examples. Please never use any other technical
terms that may provoke the interviewer into asking questions about. If you don't know the answer, please say "I
don't know". It is always better to say so instead of going with the wrong answer. You can find more tips here: How
to Prepare for a Job Interview
}
}
Ref: You can find more here:http://www.dotnetperls.com/palindrome
7. Write a program to determine the count of a specific character in a string.
A.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FindCountCharOccurance
{
class Program
{
static void Main(string[] args)
{
string strOccur,strChar = null;
Console.WriteLine("Enter the string in which you need to find the count of a char occurance");
strOccur = Console.ReadLine();
Console.WriteLine("Enter the char to be searched..");
strChar = Console.ReadLine();
int intCnt =strOccur.Length- strOccur.Replace(strChar, string.Empty).Length;
Console.WriteLine("Count of occurance is "+intCnt);
Console.ReadLine();
}
}
}
8. Next he gave me a program like the following and asked me what the output of this will be.
public class A
{
public int A()
{
Console.WriteLine("Hi you are in class A");
}
}
A. I said "Here we have a constructor A; a constructor should not have a return type. So the code above will throw
a compilation error."
9. What may be the output of the following program?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RefClass
{
class Program
{
static void Main(string[] args)
{
B bObj= new B();
Console.ReadLine();
}
}
public class A
{
public A()
{
Console.WriteLine("Hi you are in class A");
}
}
public class B:A
{
public B()
{
Console.WriteLine("Hi you are in class B");
}
}
}
A. I said the output will be:
Hi you are in class A
Hi you are in class B
Eventhough you are creating an object of the derived class, it will invoke the base class first.
10. Write the output of the following program.
class Program
{
static void Main(string[] args)
{
B bObj= new B(2);
Console.ReadLine();
}
}
public class A
{
public A()
{
Console.WriteLine("Hi you are in class A");
}
public A(int x)
{
}
}
public class B:A
{
public B()
{
Console.WriteLine("Hi you are in class B");
}
}
A. It will throw a compilation error.
B does not contain a constructor that takes 1 argument. If you want to make this program run, you must create a
parameterized constructor for class B also.
11. Abstract and interface real time examples
B.Please read it here: Real time example of interface
12. Describe authentication, types, differences?
A. Forms, Windows, Passport. Please read more here: ASP.NET authentication and authorization
13. Why DBMS? Why don't we save data in separate files?
A. I didnt know what exactly he meant, I got stuck there for a while. Finally I came up with the answer that
"Normalization" is the main advantage of a DBMS.
Read more here: Why use a DBMS?
14. What is the differences between a Primary key and a Unique key?
A. Primary key doesn't allow NULL, a unique key does.
15. What exactly is happening when we make a field a primary key?
A. A clustered index will be created for that specific field.
16. How may clustered index we can create in table?
A. Basically we can create only one clustered index, but there is a way to have more. Please read here: Only one
That was little tricky at that time. For a while I thought, and I just wrote the question to a paper,
and replied.
alert('5' + 5 + 5); Output= 555
alert(5 + 5 + '5'); Output=105
alert(5 + '5' + '5'); Output=555
alert(5 + '5' ); Output=555
Hmmm finally he said "You are selected for the next round" :)
Next was the direct HR round. That was a simple round. He just asked me to fill in some
forms.
Finally they sent me an Offer Letter :)
Hi, I hope you are all fine. If you are a .Net professional and if you are looking for a change in job (especially in
Infosys, IBM, DELL, Aversan) you may want to read: Interview Questions For 3 Year .NET Professionals.
I have described my interview experience there. Now I will share some other important series of questions that will
definitely ask in any .Net interview. What employers currently look for in a candidate is logical understanding with
basic knowledge. So understanding the basics is very important, even if you are an experienced candidate.
So let us start. I hope you will like this article. Please provide your valuable comments so that I can improve
myself.
First of all you must be ready to introduce yourself. Please don't use so many mmmmm and And and and. Be
confident and don't urge. Take your own time to describe yourself. Look straight. You can find more tips here: How
to Prepare for a Job Interview.
Please note that these questions are asked in my interview experience, you may need to see more questions when
you go for your interview.
I (Init)
L (Load)
V (Validate)
E (Event)
R (Render)
Dictionary:
Hashtable:
1.
2.
if(ViewState["SampleText"]==null)
3.
4.
5.
ViewState["SampleText"] = str;
Hidden Field
View State
Cookies
Control State
Query Strings
Server-side:
Session
1.
In Proc mode
2.
3.
4.
Custom mode
Application.
Read here.
5. How can we create a new table in SQL with only the structure?
Here is the query to do that.
Select * Into<B>From<A>Where1 = 2
Points to be noted:
1.
2.
myButton.Text = "Hai";
3.
myGrid.Controls.Add(myButton);
1.
Here we are finding the control myButton from the 0th row first cell.
8. What are abstract and interface? Provide actual examples.
Please read here.
9. What is partial class?
There are the following situations of when splitting a class definition is desirable:
1.
2.
3.
To make it more real, let us consider this class is used by the Husband .
4.
5.
6.
7.
8.
9.
10. {
11.
To make it more real, let us consider this class is used by the Wife.
12.
She will add his expenses (in programming life , her codes )
13.
14.
15.
16. }
1.
Normally the syntax to create a table variable is the same as to create a table statement.
1.
DECLARE@tabVar TABLE
2.
3.
4.
13. How can you delete a duplicate record from a table in SQL?
There are so many ways to do this. Here I am sharing what I use when I get that kind of situation.
Copy the distinct data from the existing table to the temp table.
Insert the data from the temp table to the source table.
1.
2.
3.
4.
5.
We can use override when there is virtual/abstract/override type of method in base class.
We can use New when there is no virtual/abstract/override type of method in base class.
That is all for today. I will see you soon with another set of questions and answers.
Please provide your comments and suggestions thanks in advance.
Kindest Regards