0% found this document useful (0 votes)
545 views31 pages

Interview Questions in ASP - NET, C#.NET, SQL Server,.NET Framework - ASP - NET, C#.NET, VB PDF

Uploaded by

Gopinath
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
545 views31 pages

Interview Questions in ASP - NET, C#.NET, SQL Server,.NET Framework - ASP - NET, C#.NET, VB PDF

Uploaded by

Gopinath
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 31

6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.

NET,JQuery,JavaScript,Gridview

Like 16k Follow @aspdotnetsuresh 6,421 follow ers

ASP.NET,C#.NET,VB.NET,JQuery,
HOME ASP.NET AJAX GRIDVIEW JAVASCRIPT SQL JQUERY OOPS CONCEPTS MVC INTERVIEW QUESTIONS TRACE MOBILE CONTACT
JavaScript,Gridview
aspdotnet-suresh offers C#.net articles and
tutorials,csharp dot net,asp.net articles and Search This Site
Interview Questions
tutorials,VB.NET in articles,code
Articles,Gridview ASP.NET,C#.NET,SQL
examples of asp.net 2.0 /3.5,AJAX,SQL Server
Server,.NET
Frameworkof .net technologies
Articles,examples
By: Suresh Dasari Nov 13, 2013 Custom Search Search
Categories: Interview Questions

Ads by Google
C# Net C# Example Visual Studio C#
Here I am posting the interview questions whatever i have faced in my interviews
I have searched for so many websites and gathered information from my friends to answer the questions
perfectly.

i think these questions are very helpful for the people who are trying to get the job on .NET
The most common question for experience persons is

Why would you like to change the company?

1) I am looking for a more challenging career in a firm with a larger employee base such as yours. Quantitative Aptitude for … Quantitative Aptitude for …
2) Keeping in mind my career goals, the time has come for me to move onto the next rung of Rs. 367.00 Rs. 368.00
the ladder and make a mark for myself. This can be achieved in a company like this. (details + delivery) (details + delivery)
3) It is just a career move to enhance my knowledge in my own area of interest.
After completion of this question only interview will go for further questions

Difference between stored procedure and function Follow US

1) Procedure can return zero or n values whereas function can return one value which is mandatory. Follow @aspdotnetsuresh 6,421 follow ers
2) Procedures can have input, output parameters for it whereas functions can have only input
parameters. Like 16k 149
3) Procedure allows select as well as DML statement in it whereas function allows only select statement in
it.
4) Functions can be called from procedure whereas procedures cannot be called from function.
5) Exception can be handled by try-catch block in a procedure whereas try-catch block cannot be used in
a function.
6) We can go for transaction management in procedure whereas we can't go in function.
7) Procedures cannot be utilized in a select statement whereas function can be embedded in a select
statement.

Difference between Abstract and Interface


Select Language
Abstract Class: Pow ered by Translate

-Abstract class provides a set of rules to implement next class


-Rules will be provided through abstract methods
-Abstract method does not contain any definition
-While inheriting abstract class all abstract methods must be override
-If a class contains at least one abstract method then it must be declared as an “Abstract Class”
-Abstract classes cannot be instantiated, but a reference cannot be created
-Reference depends on child class object’s memory
-Abstract classes are also called as “Partial abstract classes”
-Partial abstract class may contain functions with body and functions without body
-If a class contains all functions without body then it is called as “Fully Abstract Class” (Interface)

Interface:

-If a class contains all abstract methods then that class is known as “Interface”
-Interfaces support like multiple inheritance
-In interface all methods r public abstract by default
-Interfaces r implementable
-Interfaces cannot be instantiated, but a reference can be created

Index types in SQL Server

Clustered Index

Only 1 allowed per table physically rearranges the data in the table to confirm to the index constraints for
use on columns that are frequently searched for ranges of data for use on columns with low selectivity.

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 1/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

Non-Clustered Index

Up to 249 allowed per table creates a separate list of key values with pointers to the location of the data
in the data pages For use on columns that are searched for single values

A clustered index is a special type of index that reorders the way records in the table are physically
stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain
the data pages. A non-clustered index is a special type of index in which the logical order of the index
does not match the physical stored order of the rows on disk. The leaf node of a non-clustered index
does not consist of the data pages. Instead, the leaf nodes contain index rows.

Included Column Index (New in SQL Server 2005)

In SQL Server 2005, the functionality of non-clustered indexes is extended by adding non-key columns to
the leaf level of the non-clustered index. Non-key columns can help to create cover indexes. By including
non-key columns, you can create non-clustered indexes that cover more queries. The Database Engine
does not consider non-key columns when calculating the number of index key columns or index key size.
Non-key columns can be included in non-clustered index to avoid exceeding the current index size
limitations of a maximum of 16 key columns and a maximum index key size of 900 bytes. Another
advantage is that using non-key column in index we can have index data types not allowed as index key
columns generally.

In following example column Filename is varchar(400), which will increase the size of the index key bigger
than it is allowed. If we still want to include in our cover index to gain performance we can do it by using
the Keyword INCLUDE.

USE AdventureWorks
GO
CREATE INDEX IX_Document_Title
ON Production.Document (Title, Revision)
INCLUDE (FileName)

Non-key columns can be included only in non-clustered indexes. Columns can’t be defined in both the key
column and they INCLUDE list. Column names can’t be repeated in the INCLUDE list. Non-key columns can
be dropped from a table only after the non-key index is dropped first. For Included Column Index to exist
there must be at least one key column defined with a maximum of 16 key columns and 1023 included
columns.
Get Latest articles in your inbox for free.
Avoid adding unnecessary columns. Adding too many index columns, key or non-key as they will affect
negatively on performance. Fewer index rows will fit on a page. This could create I/O increases and Enter your email address:
reduced cache efficiency. More disk space will be required to store the index. Index maintenance may
increase the time that it takes to perform modifications, inserts, updates, or deletes, to the underlying
table or indexed view.
Subscribe
Another example to test:

Create following Index on Database AdventureWorks in SQL SERVER 2005

USE AdventureWorks
GO Aspdotnet-Suresh
CREATE NONCLUSTERED INDEX IX_Address_PostalCode
Follow +1
ON Person.Address (PostalCode)
INCLUDE (AddressLine1, AddressLine2, City, StateProvinceID)
+ 2,315
GO

Test the performance of following query before and after creating Index. The performance improvement is Aspdotnetsuresh
significant. 16,983 likes
SELECT AddressLine1, AddressLine2, City, StateProvinceID, PostalCode
FROM Person.Address
WHERE PostalCode BETWEEN '98000'
AND '99999'; Like Page Contact Us
GO

Interview questions Be the first of your friends to like this

What are differences between Array list and Hash table?

Ans: 1) Hash table store data as name, value pair. While in array only value is store.
2) To access value from hash table, you need to pass name. While in array, to access value, you need to
pass index number.
3) you can store different type of data in hash table, say int, string etc. while in array you can store only
similar type of data.
Tags
What are differences between system.stringbuilder and system.string? Asp.net JQuery C#.Net General VB.NET
Code Snippets Javascript SQL Server Gridview
The main difference is system.string is immutable and system.stringbuilder is a mutable. Append keyword asp.net mvc c# JQuery Plugins Errors Interview
is used in string builder but not in system.string. Questions Fileupload Ajax mvc DropdownList
Immutable means once we created we cannot modified. Suppose if we want give new value to old value
AngularJS JSON validations Google API AutoComplete
simply it will discarded the old value and it will create new instance in memory to hold the new value.
Google MAPS CSS DatePicker Windows Application
IISServer Modalpopup Membership Authentication
What are the differences between Application object and session object?
CheckBox Crystal Reports HTML ExcelSheet

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 2/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Ans: The session object is used to maintain the session of each user. If one user enter in to the Concepts SharePoint jQuery UI ExportGridviewData
application then they get session id if he leaves from the application then the session id is deleted. If they XML SendMail WebService Entity Framew ork UpdatePanel
again enter in to the application they get different session id. AjaxModalPopupExtender Bootstrap Google Maps API
But for application object the id is maintained for whole application. InternetTips SlideShow ToolTip Visual Studio WCF
Progressbar Razor View SQL Joins w eb.config ADO.NET
What are the different types of indexes? DataGridview Repeater Web API YouTube
AjaxAsyncFileUpload Cookie
Ans: Two types of indexes are there one is clustered index and non-clustered index EncryptionandDecryption LightBoxEffect RDLC Report
RadioButtonList Window s Service loading Image Accordion
How many types of memories are there in .net?
Menu Charts CheckBoxList Dynamic Controls Facebook
Header on Scroll Generic List Global.asax IEnumerable
Ans: Two types of memories are there in .net stack memory and heap memory
Tw itter jQuery Menu Access Database Blog Statistics
KeyBoard Key Codes ListBox MultilineTextbox Polymorphism
Is it possible to set the session out time manually?
UI Grid ZIP UNZIP Files jQuery Cookie setInterval setTimeOut
Ans: Yes we can set the session out time manually in web.config. 360 Degree View Plugins ASP AjaxAutoCompleteExtender
AjaxTabContainer Average rating Captcha Flip Effect
What are differences between function and stored procedure? Installer LINQ Linkedin MySQL News Ticker in jQuery
Viewers Product Reviews QR Code QueryString Reflection
Ans: Resize Image Reviews SQL Constraints SQL Server 2008 R2
1) Function returns only one value but procedure returns one or more than one value. Session Timeout SiteMap Social Media Bookmark Plugins
2) Function can be utilized in select statements but that is not possible in procedure. ThumbnailsGeneration UserName Check Visitors Count
3) Procedure can have an input and output parameters but function has only input parameters only. Windows 8 app.config asp.net core jQuery Media Plugins
4) Exceptions can be handled by try catch block in procedures but that is not possible in function. sorting windows 10 3-TierArchitecture AbstractVsInterface
ActiveDirectory Advertise Ajax Calendarextender
What are the differences between Abstract and interface? ConfirmbuttonExtender AjaxAccordionControl
AjaxCalendarExtender AjaxCollapsiblePanelControl
Ans:
AjaxDragPanelExtender AjaxPasswordStrength
AjaxRatingControl AjaxSlideshowExtender Arraylist Assembly
1) Abstract and interfaces cannot be instantiated but we can inherit.
Authorization Caching Chatting Plugins CodingStandards
2) Interface contain only declarations no definitions. Abstract contain declarations and definitions.
Containers Custom Right Click Menu Dapper DataGrid
3) The class which contains only abstract methods is interface class. A class which contains abstract
method is called abstract class Donate Error Log Forums Google Charts Gzip Compression

4) Public is default access specifier for interface we don’t have a chance to declare other specifiers. In Hyperlinks IP Address ImportContacts Lync MCC Award

abstract we have chance to declare with any access specifier Award Northwind Database Notification Bar Panorama Image
Viewer Plugins Print DIV Projects Query Strings RSSFeeds
Can you Explain Page lifecycle in .net? Read/Write text file ReadOnlyValues RichTextBox
Can you Explain .NET architecture in .net? Session Setup File Spell Checker TFS Testimonial Example
Testing TextArea Trace Mobile Number Try Catch
What is the difference between primary key and unique key with not null? Virtual Keyboard WPF bulk copy code contactus delegates
dynamically page create generate script jQuery Audio Plugins
Ans: There is no difference between primary key and unique key with not null. jQuery Mobile jQuery Video Plugins jqGridview
top/bottom of div slider from folder tree view
What is boxing and unboxing concepts in .net?

Ans: Boxing is a process of converting value type into reference type


Unboxing is a process of converting reference type to value type.

What are the differences between value type and reference type?

Ans: Value type contain variable and reference type are not containing value directly in its memory.

Memory is allocated in managed heap in reference type and in value type memory allocated in stack.
Reference type ex-class value type-struct, enumeration

Is it possible to host the website from desktop?

Ans: Yes

Why we go for page rendering in Asp.Net Page life cycle?

Ans: Browser understands an only html control that’s why in page rendering we will convert the aspx
controls into html controls.

Write a sample query for self join?

Ans: Select e1.ename, e2.empid from emp e1, emp e2 where e1.empid=e2.mgrid;

Can we change the index of primary key on table?

Ans: No

How to change the name of the table or stored procedure in sql?

Ans: sp_rename oldtablename newtablename


For changing the column name
Sp_rename ‘tablename.[Oldcolumnname]’,’newcolumnname’,’Column’
Ex:sp_rename ‘tblemp.first’,’namechange’,’Column’

How to find out which index is defined on table?

Ans: sp_helpindex tablename

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 3/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Can you write the program to find the length of string without using library function?

Ans: for (int i=0; str[i]!=”\n”; i++)


{
Count++;
}

What is the difference between scope_identity() and current_identity()?

Ans: Scope_identity and current _identity both are similar and it will return the last identity value
generated in the table.
Scope_Identity will return the identity value in table that is currently in scope

What are difference between GET and POST Methods?

Ans:
GET Method ():

1) Data is appended to the URL.


2) Data is not secret.
3) It is a single call system
4) Maximum data that can be sent is 256.
5) Data transmission is faster
6) this is the default method for many browsers

POST Method ():

1) Data is not appended to the URL.


2) Data is Secret
3) it is a two call system.
4) There is no Limit on the amount of data. That is characters any amount of data can be sent.
5) Data transmission is comparatively slow.
6) No default and should be explicitly specified.

What are difference between truncate and delete?

Ans: 1) Delete keep the lock over each row where Truncate keeps the lock on table not on all the row.
2) Counter of the Identity column is reset in Truncate where it is not reset in Delete.
3) Trigger is not fired in Truncate where as trigger is fired in Delete.
4) In TRUNCATE we cannot rollback.
5) In DELETE we can rollback

What is the difference Grid View and between Data Grid (Windows)?

Ans:
1) GridView Control Enables you to add sorting, paging and editing capabilities without writing any code.
2)GridView Control Automatically Supports paging by setting the ‘PagerSetting’ Property.The Page Setting
Property supports four Modles

a. Numeric(by default)
b. Next Previous
c. NumericFirstLast
d. Next PreviousLast

3)It is Used in asp.net


4)GridView Supports RowUpdating and RowUpdated Events.
5)GidView is Capable of Pre-Operations and Post-Operations.
6)GridView Has EditTemplates for this control
7)It has AutoFormat

DataGrid(Windows)

1)DataGid Control raises single Event for operations


2)DataGird Supports the SortCommand Events that occur when a column is Soted.
3)DataGrid Supports UpdataCommand Event that occurs when the UpdateButton is clicked for an item in
the grid.
4)DataGrid is used in Windows GUI Application.
5)It doesnot have EditTemplates for this control
6)It doesnot have AutoFormat

If I write System.exit (0); at the end of the try block, will the finally block still execute?

Ans: No in this case the finally block will not execute because when you say system.exit(0),the control
immediately goes out of the program, and thus finally never executes.

What are the different levels of State management in ASP.NET?

Ans:
State management is the process by which you maintain state and page information over multiple
requests for the same or different pages.

There are 2 types State Management:

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 4/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
1. Client – Side State Management
This stores information on the client's computer by embedding the information into a Web page, a uniform
resource locator (url), or a cookie. The techniques available to store the state information at the client
end are listed down below:

a. View State – Asp.Net uses View State to track the values in the Controls. You can add custom values
to the view state. It is used by the Asp.net page framework to automatically save the values of the page
and of each control just prior to rendering to the page. When the page is posted, one of the first tasks
performed by page processing is to restore view state.

b. Control State – If you create a custom control that requires view state to work properly, you should
use control state to ensure other developers don’t break your control by disabling view state.

c. Hidden fields – Like view state, hidden fields store data in an HTML form without displaying it in the
user's browser. The data is available only when the form is processed.

d. Cookies – Cookies store a value in the user's browser that the browser sends with every page request
to the same server. Cookies are the best way to store state data that must be available for multiple Web
pages on a web site.

e. Query Strings - Query strings store values in the URL that are visible to the user. Use query strings
when you want a user to be able to e-mail or instant message state data with a URL.

2. Server – Side State Management


a. Application State - Application State information is available to all pages, regardless of which user
requests a page.

b. Session State – Session State information is available to all pages opened by a user during a single
visit.

Both application state and session state information is lost when the application restarts. To persist user
data between application restarts, you can store it using profile properties.

Abstract Class:

Abstract class is a class which cannot be instantiated. Class should have “Abstract” key word with the
name. In any one of the method of class having abstract method with in it, then it should be define as
abstract class. The class which derived the abstract class should have definition of the abstract method.
These classes which derived the abstract class and implement the abstract methods call concrete class.

Abstract class may have the definition of function or may not. Below is the simple example of an abstract
class

public abstract class AbstractStudent


{
String Roll
{
get;
set;
}

String FirstName
{
get;
set;
}

String LastName
{
get;
set;
}

Public String GetStudentDetails()


{

// Implementation of Method
}

public String SaveStudentDetails ()


{
// Implementation of Method
}

public abstract String CalculateWage();

}
So, the class having one abstract method so we need to mention the class as "abstract" .

Difference between Abstract Class and Interface?

Abstract class is a class which cannot be instantiated and which can have methods with definition as well

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 5/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
as declaration also. This can be inherited.

As for Example:

public abstract class AbstractStudent


{
String Roll
{
get;
set;
}

String FirstName
{
get;
set;
}

String LastName
{
get;
set;
}

Public String GetStudentDetails()


{
// Implementation of Method
}

public String SaveStudentDetails ()


{
// Implementation of Method
}

public abstract String CalculateWage();

Interface can only contain the methods declaration and can be implemented in the class.

As for Example:

Public interface IStudnet


{
String Roll
{
get;
set;
}

String FirstName
{
get;
set;
}

String LastName
{
get;
set;
}

String GetStudentDetails();
String SaveStudentDetails ();
}

Below are the few main difference between Abstract Class and Interface

a. In abstract class method can have definition as well as declaration also. But Interface should have
only declarations.
b. All the Methods are Public as default and don’t have any access Modifier Controls in interface,
whereas for abstract class we can have access modifier for methods.
c. Abstract class can have constructor or destructor, whereas interface not.
d. Abstract class can’t be part of multiple inheritance and we can implement multiple interface.

What do you mean by String objects are immutable?

String objects are immutable as its state cannot be modified once created. Every time when we perform
any operation like add, copy, replace, and case conversion or when we pass a string object as a
parameter to a method a new object will be created.

Example:

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 6/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
String str = "ABC";

str.Replace("A","X");

Here Replace() method will not change data that "str" contains, instead a new string object is created to
hold data "XBC" and the reference to this object is returned by Replace() method.

So in order to point str to this object we need to write below line.


str = str.Replace("A","X");
Now the new object is assigned to the variable str. earlier object that was assigned to str will take care
by garbage collector as this one is no longer in used.

What is dll hell problem in .NET and how it will solve?

Ans: Dll hell, is kind of conflict that occurred previously, due to the lack of version supportability of dll for
(within) an application
.NET Framework provides operating system with a global assembly cache. This cache is a repository for all
the .net components that are shared globally on a particular machine. When a .net component installed
onto the machine, the global assembly cache looks at its version, its public key and its language
information and creates a strong name for the component. The component is then registered in the
repository and indexed by its strong name, so there is no confusion between the different versions of
same component, or DLL

What is a Partial class?

Ans: Instead of defining an entire class, you can split the definition into multiple classes by using partial
class keyword. When the application compiled, c# compiler will group all the partial classes together and
treat them as a single class. There are a couple of good reasons to use partial classes. Programmers can
work on different parts of classes without needing to share same physical file
Ex:
Public partial class employee
{
Public void somefunction()
{
}
}
Public partial class employee
{
Public void function ()
{
}
}

Quantitative Aptitude for … A Modern Approach to …


Rs. 368.00 Rs. 644.00
(details + delivery) (details + delivery)

What is difference between constants, read-only and, static?

Constants: The value can’t be changed


Read-only: The value will be initialized only once from the constructor of the class.
Static: Value can be initialized once.

What is the cross page post backing?

Asp.Net 2.0 fixed this with built-in features that allowed us to easily send information from one page to
another.

Button control has property PostBackUrl that can be set to URL of any page in our ASP.Net WebSite
where we want to transfer all form values to.
Along with that Asp.Net 2.0 Page class has a property PreviousPage that allows us to get reference to
the Page object that initiated the postback (in other words to get the actual reference to the Page
object of the aspx page on which user clicked the Submit button on a HTML form).

So for example lets create two sample pages in our Web Application:
SourcePage.aspx
DestinationPage.aspx

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 7/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
In SoucePage in Html form we will put two TextBox controls (one for First Name and one for Last Name)
and one Button component and set its PostBackUrl property to "~/DestinationPage.aspx".

SourcePage.aspx:
<form id="form1" runat="server">
<div>
First Name:&nbsp;<asp:TextBox ID="FirstName" runat="server"></asp:TextBox><br />
Last Name:&nbsp;<asp:TextBox ID="LastName" runat="server"></asp:TextBox><br /><br />
<asp:Button ID="Button1" runat="server" Text="Submit To Destination Page"
PostBackUrl="~/CrossPagePostbacks/DestinationPage.aspx" />
</div>
</form>

When our user clicks the Submit button, all the values from the HTML Form on SourcePage.aspx will be
transfered to the DestinationPage.aspx and we will also be able to get reference to the SourcePage.aspx
in our DestinationPage with the PreviousPage property like this:

So in our DestinationPage.aspx.cs code-behind we can easily access two TextBox controls on


SourcePage.aspx and show them in two label controls like this:
protected void Page_Load(object sender, EventArgs e)
{
// first check if we had a cross page postback
if ( (PreviousPage != null) && (PreviousPage.IsCrossPagePostBack) )
{
Page previousPage = PreviousPage;
TextBox firstName = (TextBox)previousPage.FindControl("FirstName");
TextBox lastName = (TextBox)previousPage.FindControl("LastName");
// we can now use the values from TextBoxes and display them in two Label controls..
labelFirstName.Text = firstName.Text;
labelLastName.Text = lastName.Text;
}
}

You probably noticed that we first checked if PreviousPage property of current page
(DestinationPage.aspx) is NOT NULL, this is done to avoid running our code in case that user opens our
DestinationPage.aspx directly, without running a cross page postback.

Also here we checked the another PreviousPage property called IsCrossPagePostBack to see if we
really had a CrossPagePostback.
(If Server.Transfer is used to redirect to this page, IsCrossPagePostBack property will be set to FALSE.

TIP: We can be completely sure that we have a real CrossPagePostback ONLY IF:
1. Page.PreviousPage is NOT NULL,
2. PreviousPage.IsCrossPagePostback is true

This important to check to avoid errors in code.

Now this is very useful and i'm sure you are eager to use this in your next project. But wait, we are not
over yet!

Finding the controls on PreviousPage with FindControl method and type-casting them from object to their
real type is a little messy.
It feels like there must be a better solution for this!

And here it is: We can use the <%@ PreviousPageType %> directive in the header of our
DestinationPage.aspx like this
<%@ PreviousPageType VirtualPath="~/SourcePage.aspx" %>

to declare our previous page type, and then we can access Public properties of the PreviousPage without
typecasting.
Now all we need to do is to create some public properties on our SourcePage.aspx.cs to expose
data/Controls we want to the destionation page:
public partial class SourcePage : System.Web.UI.Page
{
public string FormFirstName
{
get { return FirstName.Text; }
}

public string FormLastName


{
get { return LastName.Text; }
}
}

And then we can change the Page_Load code in our DestinationPage.aspx to much cleaner code like this:
protected void Page_Load(object sender, EventArgs e)
{
// first check if we had a cross page postback
if ( (PreviousPage != null) && (PreviousPage.IsCrossPagePostBack) )
{
SourcePage prevPage = PreviousPage;

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 8/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
// we can now use the values from textboxes and display them in two Label controls..
labelFirstName.Text = prevPage.FormFirstName;
labelLastName.Text = prevPage.FormLastName;
}
}

SourcePage type used in the code is offcourse name of the partial class defined is SourcePage.aspx.cs
that inherits System.Web.UI.Page that is automatically created for us when we created new WebForm
in VisualStudio.

This code is much cleaner and easier to follow, there is no ugly typecasting, just simple property values to
use to retrieve the data from previous page.

When should you use Abstract Class vs Interface while programming?

Ans: When we want that sub class must implement all the methods of base class. In such a situation we
will implement the interface. In the other hand when we want only some method of base class in our sub
class then use base class as abstract class.

What is the difference between application exception and system exception?

Ans: The difference between application exception and system exception is that system exceptions are
thrown by CLR and application exceptions are thrown by applications.

What is the difference between authorization and authentication?

Ans: Authorization is a process of allowing or denying resources to particular user or record

Declaration of authorization is

<authorization>
<allow users=”Suresh, Sanjay”/>
<deny users=”Ramana, Rakesh”>
</authorization>
Sometimes authorization allows the unauthorized persons at that time we will use
<deny users=”?”/>

Authentication means

Authentication is a process where we identify the credentials of user i.e. username, password and create
an identity to mention user as an authenticated.

What is the use of n-tier architecture and 3-tier architecture?

Check this article for 3-tier architecture 3 tier architecture example in asp.net

How to get the version of the assembly?

Ans: lbltxt.text=Assembly. GetExecutingAssembly().GetName().Version.ToString();

What is the location of Global Assembly Cache on the system?

Ans: c:\Windows\assembly

What is the serialization?

Ans: Serialization is a process of converting object into a stream of bites.

What is synchronization?

Ans: The mechanism needed to block one thread access to the data. If the data is being accessed by
another thread.
Synchronization can be accessed by using system.monitor class
A monitor class methods are enter, exit, pulse for this lock statement is also used
Suppose if we need to synchronize some data at that time we need to place that data in this block
Lock
{
}
Whatever the data has been placed into the lock block that data has been blocked

What are the thread priority levels?

Ans: Thread priority levels are five types


0 - Zero level
1 - Below Normal
2 - Normal
3 - Above Normal

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 9/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
4 - Highest
By Default priority level is 2

What is the difference between .tostring(), Convert.tostring()?

Ans: The basic difference between them is “Convert” function handles NULLS while
“.ToString()” does not it will throw a NULL reference exception error. So as a good coding
practice using “convert” is always safe.

What is Collation?

Ans: Collation refers to a set of rules that determine how the data is sorted and compared.

What is the difference between Primary key and unique key?

Ans: Primary key does not allow the null values but unique key allows one null value.
Primary key will create clustered index on column but unique key will create non-clustered index by
default.

How many web.config files are there in 1 project?

Ans: There might be multiple web.config files for a single project depending on the hierarchy of folders
inside the root folder of the project, so for each folder we can use one web.config file

What is the difference between throw and throw ex?


What is the difference between view state and hidden field?

Ans: viewstate is secured hidden field is insecure


Viewstate will store large amount of data but hidden filed will store small amount of data.

What is the difference between binary serialization and xml serialization?


What is the Difference between read only and constant variables?

Ans: Read only can assign the values at runtime only.


Constant will assign the values at compile time only.
We cannot modify the both variable values.

What is static keyword in .Net?

Ans: Static is same as constant variable but we can change the value of static variable and we can
access the variables without creating any instances

What is the use of business logic layer in 3-tier architecture in .net?

Ans: Though a web site could talk to the data access layer directly, it usually goes through another layer
called the business layer. The business layer is vital in that it validates the input conditions before calling
a method from the data layer. This ensures the data input is correct before proceeding, and can often
ensure that the outputs are correct as well. This validation of input is called business rules, meaning the
rules that the business layer uses to make “judgments” about the data.

However, business rules don’t only apply to data validation; these rules apply to any calculations or any
other action that takes place in the business layer. Normally, it’s best to put as much logic as possible in
the business layer, which makes this logic reusable across applications.

One of the best reasons for reusing logic is that applications that start off small usually grow in
functionality. For instance, a company begins to develop a web site, and as they realize their business
needs, they later decide to add a smart client application and windows service to supplement the web
site. The business layer helps move logic to a central layer for “maximum reusability.”

Check this post introduction to 3-tier Architecture

What happens when I enter a URL in my browser and click enter?

You type in the URL and hit go. The browser needs to translate that URL www.somesite.com into an IP
address so it knows what computer on the internet to connect to (That URL is just there to make it easier
for us humans - kinda like speed-dial for phone numbers I guess). So your browser will see if it already has
the appropriate IP address cached away from previous visits to the site. If not, it will make a DNS query
to your DNS server (might be your router or your ISP's DNS server) - see
http://en.wikipedia.org/wiki/Domain_name… for more on DNS. Once your browser knows what IP to use, it
will connect to the appropriate webserver and ask for the page. The webserver then returns the
requested page and your browser renders it to the screen.

The firewall will control connections to & from your computer. For the most part it will just be controlling
who can connect to your computer and on what ports. For web browsing your firewall generally won't be
doing a whole lot.

Your router (see http://en.wikipedia.org/wiki/Router ) essentially guides your request through the
network, helping the packets get from computer to computer and potentially doing some NAT (see
http://en.wikipedia.org/wiki/Network_add… ) to translate IP addresses along the way (so your internat
LAN request can be transitioned onto the wider internet and back).

IP Addresses (see http://en.wikipedia.org/wiki/IP_address ) are unique addresses for computers that


basically allow computers to find each other. Think of the IP address as a computer's well address or

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 10/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
phone number, you've got to know someone's phone number before you can call them and you've got to
Aspdotnetsuresh
know a computer's IP address before you can connect to it. Going back to the start - that's what those
URLS and DNS make possible, you don't know John Doe's phone number so you look 16k likes
in the phone book;
likewise your computer doesn't know yahoo.com's IP address so it looks in DNS.

Tw eet Like Page

If you enjoyed this post, please support the blog below. It's FREE!
149 Be the first of your friends to like this

Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our
Facebook, Twitter, RSS feed, or by email.
18
Like 16k 149
Share Subscribe by RSS Subscribe by Email

StumbleUpon
Follow @aspdotnetsuresh 6,421 follow ers

You might enjoy reading:

Asp.Net Get Create Installer Asp.net Core Create Installer


(Access) Session File for Windows MVC Web Api (Setup) File for
Values in Application Tutorial with Asp.net...
JavaScript using Visual Examples - ...
(Client Side)... Studio...
ENGAGEYA

345 comments :

Anonymous said... 1 – 200 of 345 Newer› Newest»


1
Yes these are very ver nice questions thanks for your post

May 21, 2010 at 12:12 AM

Akash said...
2
Wats dat qqqqq?

May 22, 2010 at 12:11 AM

Anonymous said...
3
good one sir

March 21, 2011 at 2:58 AM

Anonymous said...
4
dude you are genius

April 10, 2011 at 11:54 PM

Anonymous said...
5
good yaar nice for me as fresher to quick snap before interview

May 21, 2011 at 9:35 AM

venkat said...
6
Nice Question. Thanks for Sharing Information.

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 11/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Bvenkat Jeewesh

May 27, 2011 at 5:59 AM

.net developer said...


7
nice collection of question.... love to read them again... when i got new interview call :)

June 9, 2011 at 2:14 AM

Suresh Dasari said...


8
thanks keep visiting

June 9, 2011 at 2:56 AM

maddy said...
9
This comment has b een removed b y a b log administrator.

June 10, 2011 at 4:31 AM

raja said...
10
we are easily gain from your hardest work...please keep serving people who are all want to develop their
knowledge including me.Thanks bro.

June 17, 2011 at 4:41 AM

Darshan said...
11
Great Example all !
Thanks

Please Put some Api example on the site

July 8, 2011 at 6:19 AM

Suresh Dasari said...


12
@Raja

Thanks

@Darshan

Thanks

Keep visit the site and help me to share with your friends

July 10, 2011 at 3:02 AM

Anonymous said...
13
Than k u Master

September 6, 2011 at 1:28 PM

Anonymous said...
14
Thanks for sharing the common Freq asked Interview Qs

September 16, 2011 at 4:13 AM

Deepika Chowdary said...


15
Thanks for shareing its very useful.

September 22, 2011 at 2:37 AM

ANANDAN said...
16

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 12/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
THANK U SIR ITS HELPFUL FOR .NET CANDIATES

September 22, 2011 at 5:48 AM

Anonymous said...
17
Thanks for your hard work and sharing with us

September 24, 2011 at 4:20 AM

Raj said...
18
thank you for sharing....

September 26, 2011 at 2:55 AM

Anonymous said...
19
please post grid view fixed header and footer when scrolling both vertical and horizontal.............
please help me

September 26, 2011 at 7:29 PM

Anonymous said...
20
Thanks
nice Questions

September 27, 2011 at 11:51 PM

sowjanya said...
21
thanx it is helping me a lot. plz add some more questions suresh... if u can

October 5, 2011 at 3:52 AM

Varun R Pillai said...


22
Primary Key are used for referential integrity (pair with FK)
Unique Key are used for data consistency and validation

October 24, 2011 at 8:28 AM

nithya said...
23
thanks most useful

January 20, 2012 at 9:46 PM

nithya said...
24
i need more
Please update

January 20, 2012 at 10:15 PM

Anonymous said...
25
Superb,nice article.....

February 29, 2012 at 12:45 AM

Roja Samala said...


26
This comment has b een removed b y the author.

April 10, 2012 at 10:52 PM

Roja Samala said...


27
Good one Suresh.
Thank U for writing good articles for us.
i appreciate your hard work...
Keep posting .......

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 13/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

April 10, 2012 at 11:24 PM

Anonymous said...
28
Superb and very helpful ..Thanks brother...

June 7, 2012 at 4:01 AM

kapil said...
29
sir, plz give me information of mvc with examples

June 11, 2012 at 2:36 AM

Anonymous said...
30
Thankyou so much for this post....

June 19, 2012 at 4:54 AM

dasthagiri said...
31
Thank you so much....It is very usefull to us.. keep posting....

June 30, 2012 at 9:21 PM

ANJYR said...
32
Thanks Suresh Sir.......for your valuable information

July 12, 2012 at 9:13 PM

Anonymous said...
33
absolutely stunning...

July 20, 2012 at 3:40 AM

Mohd Tahir said...


34
tohfa kabul kero sir g ....kamal k hai

August 15, 2012 at 6:44 PM

Bhaumik Patel said...


35
Amazing article suresh..

August 23, 2012 at 10:55 AM

google plus 1 said...


36
What is the difference between primary key and unique key with not null?
Ans: There is no difference between primary key and unique key with not null.

The answer is wrong. there are 3 differences


1. primary key wont allow null value but unique key will do
2. in a table there must but only one Primary Key column but in unique key there may be any number of column
3. Unique Key is Clustered index but primary key is non-clustered.

If any doubt in this let me I can tell you in detail as well!

August 24, 2012 at 4:45 AM

A Santhosh Reddy said...


37
This comment has b een removed b y the author.

August 30, 2012 at 11:46 PM

A Santhosh Reddy said...


38
Very Much Interested to read your Articles.

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 14/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
All the posts are very useful

August 31, 2012 at 4:03 AM

Anonymous said...
39
great!!

September 18, 2012 at 9:46 PM

Huynh Pham Anh said...


40
please you can post an articles about socket in asp.net C#

September 19, 2012 at 5:09 AM

Krishan Gahlot said...


41
Nice one n really helpful

September 20, 2012 at 8:18 PM

Anonymous said...
42
Thank u. Suresh ji u r great.

September 29, 2012 at 9:21 AM

NaukriBox said...
43
Thanks for sharing
http://www.naukribox.com

October 11, 2012 at 12:46 PM

Manoj Sherje said...


44
sir i am read all your valuable post its help me
one question i am asking you related file up loader
i am using file up loader upload image in .aspx page after page post back image path has been clean any solution
for this. after page post back image address present there

October 12, 2012 at 7:27 PM

shekhar said...
45
well doing good job

October 13, 2012 at 11:11 AM

Bharat Gunjal said...


46
its fantastic....u r doing very good job

October 13, 2012 at 11:35 PM

Mohd Tahir said...


47
tum to chha gaye guru........very nice question...

October 13, 2012 at 11:53 PM

Karthik Roshan said...


48
Thank you so much suresh sir, need more updates for 1 year experienced

October 14, 2012 at 5:58 AM

Anonymous said...
49
khantastic post \m/
-Sagar Sharma

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 15/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
October 16, 2012 at 8:47 PM

Anonymous said...
50
Thanks dude forwonderfull article which is simple n easy to understand

October 19, 2012 at 1:20 AM

praveen said...
51
Thanks for posting those questions and its really usefull for everyone . these questions will in real time interview...

October 30, 2012 at 11:22 AM

Dev Anand Purohit said...


52
Thanks for help
I was looking for this type of document

Thanks a lot

November 7, 2012 at 9:24 PM

pradnya coolkarni said...


53
hii, it helps me lot for interview preparation.

November 13, 2012 at 10:47 PM

javeed said...
54
nice questions..... its help me while i am having interview........

November 14, 2012 at 6:07 AM

Anonymous said...
55
Really, it's very nice and helpful interview questions.

November 29, 2012 at 11:16 PM

shoeb said...
56
its really helpful thanx

December 7, 2012 at 9:23 AM

Pratik said...
57
Awesome, Nice, Helpful I cdont have any more good adjectives for this post

December 11, 2012 at 1:17 AM

raghava lingala said...


58
Sir i am following your updates daily. i am preparing for the interviews as of now can you send me more interview
question with answers for 3 years experience candidates.

December 16, 2012 at 6:20 PM

Shivaraj B said...
59
Super

December 16, 2012 at 10:57 PM

sumit gupta said...


60
Sir can u tell me how to host any website

December 19, 2012 at 11:54 PM

Suresh Dasari said...

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 16/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

61
@Sumit Gupta...
check this post to host any where http://www.aspdotnet-suresh.com/2012/04/aspnet-host-website-on-
local-machine.html

December 20, 2012 at 12:48 AM

Rajesh Frank said...


62
This comment has b een removed b y the author.

December 25, 2012 at 11:54 PM

Rajesh Frank said...


63
Mr.suresh sir this information is very useful for all fresher and for prepare to interview
by rajesh kumar
mail id is malligarajesh88@gmail.com

December 25, 2012 at 11:59 PM

Rajesh Frank said...


64
i have one doubt can u tell me.

I was created one login form (username and password Only) with set up file in my laptop. i did
installed this setup file in my labtop. It's working well (login button when i click true means login page could be sent
or false display check your name or password).

i was installed this (same)setup file in another computer,it's working well. But not working databases that
computer. one error display, when i login button click this error display

that error is sql databases not connected


so why this error display... Give me for to this error..
my mail id is malligarajesh88@gmail.com

December 26, 2012 at 12:29 AM

Rajesh Frank said...


65
Give me solution for to this error

December 26, 2012 at 12:31 AM

anu said...
66
its really helpful.can u please tell me how to create a crystal report in .net

December 26, 2012 at 10:15 PM

JP DEVENDIRAN said...
67
hi thanks

January 5, 2013 at 8:21 PM

Anonymous said...
68
Good Article

January 10, 2013 at 12:51 AM

Kavitha said...
69
very usefull keep going on All the very best.

January 24, 2013 at 12:36 AM

BHANUSRI VALIVETI said...


70
my searching is end here..:) thanks good article

January 25, 2013 at 5:49 AM

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 17/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
kannan said...
71
great job sir............. keep it up .......

January 26, 2013 at 1:52 AM

praveen kumar said...


72
These questions are basically an interviewer asked,

thanks sir, u done a great job

January 30, 2013 at 12:50 PM

Anonymous said...
73
thank u so much ......

February 6, 2013 at 12:17 AM

tarun kumar said...


74
I read this website Daily, I think this is my best site for gain knowledge.

February 6, 2013 at 10:14 PM

ashok said...
75
ur telling Interface cannot be inherited and it can be instantiated.. it is wrong.. pls correct

February 10, 2013 at 10:50 PM

kapil dev said...


76
its grate a lot of knowledge for interview.......
thanks for blog....

February 14, 2013 at 4:28 AM

Anonymous said...
77
Thanks for these questions sir,try to upload more and more interview questions here....

February 14, 2013 at 6:41 AM

Anonymous said...
78
:)

February 17, 2013 at 3:00 AM

Anonymous said...
79
This comment has b een removed b y a b log administrator.

February 19, 2013 at 7:23 PM

Raman Ghantiyala said...


80
Thank you .Net Master..all questions are Up to date and ask-able in While interview. and in good understandable
thanks a lot.

February 21, 2013 at 6:11 AM

Naren said...
81
Good to revise all these..,

Thanks Boss...

February 24, 2013 at 4:23 AM

Anonymous said...
82
http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 18/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Nice article . Thank you very much .

February 25, 2013 at 11:43 PM

Anonymous said...
83
great expertise.

February 28, 2013 at 4:46 AM

Anonymous said...
84
Thank u so much.
i appreciate you for posting like this articals.
Keep posting .......

March 3, 2013 at 7:56 PM

Lorena said...
85
Awesome, thanks! Have a look at the question on ABSTRACT CLASSES. They CAN be inherited.

Thanks again!

March 4, 2013 at 9:44 AM

Santosh said...
86
thanks Suresh...its very useful frequently asked question by interviewer.
Santosh Singh

March 9, 2013 at 11:52 AM

Jignesh Patel said...


87
IT helped me a lot
Thanks

March 10, 2013 at 10:58 PM

sasikumar said...
88
thank you very much thalaiva...

March 14, 2013 at 11:17 AM

Anonymous said...
89
Great.!!!!!!! it helped me a lot

March 15, 2013 at 2:57 AM

Anonymous said...
90
Suresh! You got appreciated greatly for your dedication.Really its an useful posting for lots of professionals like
me. It clears lots of my doubts.

Keep Posting

Suresh

March 16, 2013 at 6:18 AM

Murarisetty sudheer kumar said...


91
Thanks for share u r knowledge with me and it is more helpful

March 17, 2013 at 10:57 PM

Anonymous said...
92
Really Nice Article

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 19/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

March 18, 2013 at 12:17 AM

Anonymous said...
93
Thanks a lott!! really a nice article!!

March 22, 2013 at 8:42 AM

Mahesh Gunapaneni said...


94
Hi Suresh,
Really a very nice job. You seems have more patience & helping nature.
This article will helps to brush up the technology before going to interview.
Thanks a lot....

March 24, 2013 at 8:27 AM

Anonymous said...
95
Fantastic, ver useful questions sir. thanks a lot

March 25, 2013 at 11:34 PM

Iyan K said...
96
Nice article to recall for an Interview ... Thanks

March 26, 2013 at 12:19 AM

Anonymous said...
97
Are These All Question Asking by you only....if yes den its embrassing....

March 28, 2013 at 3:59 AM

Anonymous said...
98
Hi Suresh,

Thanks For posting nice question set

add one more question in it.

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

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.

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.

March 29, 2013 at 12:09 PM

saran palanisamy said...


99
Fantastic Article....

April 1, 2013 at 6:51 PM

Abhay Kumar said...


100
Thanx a ton it was really helpful.. :)

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 20/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
April 2, 2013 at 7:36 AM

Awais Ryyan said...


101
Good job Suresh

April 4, 2013 at 2:11 AM

manikya reddy said...


102
it is very useful to clear f2f interview

April 6, 2013 at 10:47 AM

Anonymous said...
103
Suresh nice job...

April 8, 2013 at 2:49 AM

Santhu Santhosh said...


104
send some more questions for 3+ years experience in .NET

April 12, 2013 at 5:14 AM

Sathya Narayana said...


105
hello suresh, i need exactly oops concepts(generics,delegates,overloading and ovrriding) where we can used in
project and which scenario we used explain????

April 12, 2013 at 9:33 PM

Nilesh Kshetre said...


106
very nice.

April 13, 2013 at 12:02 AM

Sibasish Pal said...


107
good one My dear friend

April 15, 2013 at 3:17 AM

Anonymous said...
108
good

April 15, 2013 at 4:14 AM

Anonymous said...
109
good

April 15, 2013 at 9:55 PM

samir kumar Jena said...


110
What is the Query to select records in sql server 2008 like this blow

After select Table


----------
id pname qunt unt price stockdt
------------------------------------------------------
1 patato 1 kg 10.00 10/4/13
2 tamato 1 kg 12.00 10/4/13
3 brinjal 1 kg 22.00 8/4/13
4 Milk 1 Ltr 24.00 9/4/2013

from stock in table as below

table

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 21/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
----------
id pname qunt unt price stockdt
-------------------------------
1 patato 1 kg 8.00 8/4/13
2 tamato 1 kg 10.00 8/4/13
3 brinjal 1 kg 22.00 8.4.13
4 milk 1 Ltr 23.00 8/4/2013
5 patato 1 kg 9.00 9/4/13
6 milk 1 Ltr 24.00 9/4/2013
7 patato 1 kg 10.00 10/4/13
8 tamato 1 kg 12.00 10/4/13

April 15, 2013 at 11:54 PM

OM said...
111
thnx a lot sir.......
i never visited a blog like.
it is too helpful and encouraging..
i heartly appreciating u....

April 18, 2013 at 12:12 AM

Ganesh Ingle said...


112
nice thx

April 18, 2013 at 3:15 AM

Anonymous said...
113
I want you to upload more videos of asp.net

April 18, 2013 at 5:01 AM

Deepthi M said...
114
Sir,Pls give me some idea about asp.net mvc

April 18, 2013 at 7:24 AM

Anonymous said...
115
Thanku...

April 19, 2013 at 7:57 AM

mohd faizan said...


116
these are very very nice questions thanks for your post.

mohd faizan

April 19, 2013 at 1:19 PM

Unknown said...
117
Interface vs Abstract: Abstract cannot be instantiated but we can inherit. Interface it cannot be inherit it can be
instantiate --> This answer is wrong, I dont think interface can be instantiate and cannot be inherit? pls explain

April 21, 2013 at 10:35 AM

Nilesh Dhande said...


118
http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 22/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
these are very nice question for f2f interview.

April 22, 2013 at 5:44 AM

Lary john said...


119
Thanks

April 23, 2013 at 10:26 AM

Sagar Pawar said...


120
Nice help for Freshers if you can add more i would like to give questions which i faced.If you can just post them
with answers

April 24, 2013 at 4:16 AM

Sagar Pawar said...


121
1.What is GAC ??
2.What is Assembly?
3.How to place DLL in GAC??
4.What is pobm with DLL??
5.What is appSettings ??in webconfig>
6.What is tag in webconfig?
7.Property?.when Master page loads in Which Event?User Control and custom control ??

8.Why interface??
9.what is ajax?how it works with example
10.validate textbox with email using jquery
11.what is Delegate???why ??example.realtime
12.Diffrence between datareader and dataset??
13.which function for execution of query?in .net
14.how many tables can be in Dataset?
15.Main class in dot net ?which contains all clasees.
16 In Ajax will page redirect ??will it go to server for procees?

17.What is ViewState???Why >>>??real time Scenario?>


18.what is exception?object is not with the refrence?
19.If UserControl is used in web page then if 1 button in usercontrol if we click then that value in textbox of user
control should go to web page text box.and Vice a versa.??
20.what are Validators??if they are client side then if i disable the javascript in my browser and in page there are
100 text box with validations then if i forgot to fill one textbox what will happen page will redirect or not??
21.if not then which function we can use on server side to check all boxes are valid ??
22.How to put Checkbox in Gridview??by button and code?
23.stored Procedure ??if there are two statements in Procedure then how can we take both result set in
datareader?
Please try to understand them.Thank you.

April 24, 2013 at 4:18 AM

Bharti said...
122
This comment has b een removed b y a b log administrator.

April 26, 2013 at 4:44 AM

vishvajeet pawar said...


123
Nice Question for Preparing Interview.?

April 27, 2013 at 12:35 AM

dhanalakshmi said...
124
hi suresh send me 2years experience interview questions. .

May 8, 2013 at 8:23 PM

venkat said...
125
Thank's for sharing valuable information,it is helpful to me...........

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 23/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
May 9, 2013 at 7:19 PM

Anonymous said...
126
Nice Good Job

May 11, 2013 at 2:51 AM

Prabha Karan said...


127
thak u .. but i con't understand

May 13, 2013 at 10:00 PM

Girish Babu said...


128
Great Work.. Thanks for the page..

May 15, 2013 at 1:47 AM

Girish Babu said...


129
I think first answer is wrong in the following question.

What are the differences between Abstract and interface?

Ans:
1) Abstract cannot be instantiated but we can inherit. Interface it cannot be inherit it can be instantiate
2) Interface contain only declarations no definitions. Abstract contain declarations and definitions.
3) The class which contains only abstract methods is interface class. A class which contains abstract method is
called abstract class
4) Public is default access specifier for interface we don’t have a chance to declare other specifiers. In abstract we
have chance to declare with any access specifier

May 15, 2013 at 1:58 AM

sony c said...
130
hi suresh
you ara given best info
give more on practicle exp questions

pls send me code for wpf dml operations using datagrid control

May 17, 2013 at 7:58 AM

Arvind Kumar said...


131
Nice Post

May 21, 2013 at 12:30 PM

Ananth Darshan said...


132
Very Very Useful in interviews.Thank you Very Much.

May 21, 2013 at 9:02 PM

Vishu_Sukhdev said...
133
Good one. I faced same questions on my interview but now i know the answer.
Thank You!

May 21, 2013 at 9:27 PM

Anuja Kansal said...


134
nice question,,really fantastic...

May 28, 2013 at 11:46 PM

Guntreddi Hariprasad said...


135
thanq very much sir really fentastic q&a

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 24/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

May 29, 2013 at 6:51 AM

Gokul Sasidharan said...


136
Good one

May 31, 2013 at 6:53 AM

Arvind Pandey said...


137
ARE GREAT MAN..................I LIKE IT..

May 31, 2013 at 9:16 PM

Bhagwat Prasad Sharma said...


138
really nice .net interview question collection by you...

June 3, 2013 at 5:26 AM

Unknown said...
139
Superb and very helpful for freshers Thank u Sir

June 7, 2013 at 11:52 AM

geethanjali k said...
140
Very nice questions..please send me 2 years experience interview questions.

June 9, 2013 at 10:07 PM

dhruv said...
141
Thanks.

June 12, 2013 at 2:48 AM

Anonymous said...
142
very good collection

June 13, 2013 at 2:37 AM

Vijay Injulkar said...


143
Thanks a lot.......

June 17, 2013 at 12:59 AM

Anonymous said...
144
very useful document.. great suresh

June 17, 2013 at 3:38 AM

Anonymous said...
145
hi suresh send me MVC project code

June 17, 2013 at 10:17 AM

Harish h.a said...


146
Awesome sir really it will help to many students

June 17, 2013 at 10:05 PM

Ambily Ravi said...


147
thank you....helpful....

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 25/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
June 19, 2013 at 2:33 AM

arjunan said...
148
Hi Suresh,

you made a mistake here.


In abstract class method can have definition as well as declaration also. But Interface should have only definition.

Interface should hold only the declarations..not definitions

June 21, 2013 at 8:40 PM

john said...
149
These are the best questions available on the internet,thanks a ton
Mostly all question were from this list in one of the company I gave interview and written test. :)

June 23, 2013 at 4:02 AM

Jyoti Soni said...


150
This is a good post
but i want to knoew ans of my que:
how to handle exception "connection doesnot access" when it is logged in log file.

how can we troubleshoot this?

June 24, 2013 at 5:39 AM

RADHIKA said...
151
Thank you for the information. Can u include some questions regarding delegates, threading and ADO.NET as
well?

June 28, 2013 at 3:30 AM

Narsimhareddy venna said...


152
Thank You very much suresh we Are learning new things from you

July 2, 2013 at 11:44 PM

rajesh said...
153
Primary Key:

i) Can be only one in a table

ii) It never allows null values

iii) Primary Key is unique key identifier and can not be null and must be unique.

Unique Key:

i) Can be more than one unique key in one table.

ii) Unique key can have null values

iii) It can’t be candidate key

iv) Unique key can be null and may not be unique.


why put wrong ans. if you don't know so don't put wrong ans.

July 4, 2013 at 3:22 AM

rajesh said...
154
yes you can change primary key index.

July 4, 2013 at 3:31 AM

mala.....totally Positive said...


155
toooo good...gr8 help for the people like me looking for a change....keep the good work

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 26/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
:)

July 6, 2013 at 11:22 AM

Anonymous said...
156
thanks sir ...ji
but please also post jquiery Javascript and ajax interview questions answered please please

July 6, 2013 at 11:57 PM

Abhejeet Singh said...


157
dude we want please write some thing practical on windows azure.

July 8, 2013 at 11:23 PM

Boo Pathy said...


158
good job

July 9, 2013 at 3:04 AM

Anonymous said...
159
all your notes are very good,this one also.........

July 9, 2013 at 11:06 PM

mathan.jithu said...
160
This comment has b een removed b y a b log administrator.

July 13, 2013 at 11:46 PM

Anonymous said...
161
helpful very good.........

July 21, 2013 at 11:42 PM

Anonymous said...
162
very helpful........
thank you for sharing

July 22, 2013 at 4:46 AM

Anonymous said...
163
Excellent...keep posting.

July 23, 2013 at 6:58 PM

Anonymous said...
164
Thanku For ur valuable information.. can u plz some more C# questions and sql question and answers..!!!

July 24, 2013 at 12:09 AM

Anonymous said...
165
This is really nice document. Thank you so much for posting this document

July 29, 2013 at 7:32 AM

Shravan said...
166
Thanking You Suresh for shraing such imporatant Questions

August 1, 2013 at 9:30 PM

Anonymous said...

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 27/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview

167
Contents are wrong. I found some wrong statements on this article.
Please have correct information so that users gets the right information .(eg. review what is written for interface)

August 5, 2013 at 12:48 AM

Anonymous said...
168
This is Venu

very nice work,keep continue

August 8, 2013 at 8:46 PM

Anonymous said...
169
Thank You ..its very much helpful...

August 14, 2013 at 12:51 AM

.Net Training in Chennai said...


170
Vey Informative.

August 14, 2013 at 8:18 AM

Anonymous said...
171
execellent que and ans....

very nice information..

August 17, 2013 at 12:56 PM

Anonymous said...
172
Thanku its very helpful for me..

August 18, 2013 at 11:46 PM

Dattatri Kashiwale said...


173
Thanks a lot sir..... very very thanku bro.....

August 20, 2013 at 8:02 AM

Prathip john said...


174
Thanks Very nice and very help for beginners

August 20, 2013 at 11:45 PM

Dhiraj said...
175
very very helpful,thanks a lot....

August 22, 2013 at 11:19 AM

Anonymous said...
176
super

August 25, 2013 at 2:11 AM

Allan said...
177
very helpful.

August 25, 2013 at 10:09 PM

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 28/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Anonymous said...
178
Thankyou bro

August 26, 2013 at 4:47 AM

DURGESH OJHA said...


179
When should you use Abstract Class vs Interface while programming?

Ans: When we want that sub class must implement all the methods of base class. In such a situation we will
implement the interface. In the other hand when we want only some method of base class in our sub class then
use base class as abstract class.

Sir ,is this ans is right.......


If yes then what is this

Abstract Class:

-While inheriting abstract class all abstract methods must be override


-

August 27, 2013 at 9:37 AM

Mrkraju From Velagadurru said...


180
Thank you Suresh for helping many people like me..

August 29, 2013 at 11:12 AM

Ganesh said...
181
Help me lot

August 29, 2013 at 12:06 PM

LAXMINARAYANA said...
182
Thank you

August 30, 2013 at 7:17 PM

ketan parab said...


183
Thank you sir , it's very helpful for all .net beginner

September 2, 2013 at 12:30 AM

Monika Dubey said...


184
very very nice... i have gone through all quesion and hav build a confidence to face tha interviewer now... LIKE (y)

September 6, 2013 at 8:01 PM

Anonymous said...
185
Nive Post.. Thank you sir

September 9, 2013 at 6:52 PM

Anonymous said...
186
Very nice and cover most of basic topics

September 11, 2013 at 6:25 AM

Anonymous said...
187
sir, can you please help me with datalist and repeater paging with first,last,previous,next buttons using stored
procedure. my email is miakayuki2011@gmail.com

September 12, 2013 at 12:11 AM

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 29/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
manoj kumar said...
188
thanks for this sharing

September 12, 2013 at 10:35 PM

sasi kala said...


189
you are genius suresh great.....

September 19, 2013 at 12:04 AM

Anonymous said...
190
really you are doing good job. I had never entered comments for any page. but i cant stop doing it here. Think from
this how best you are. Thank you for giving such a wonderful post day by day. i am very big fan of you. We need your
support in upcoming days too.

September 19, 2013 at 12:17 AM

chandana said...
191
really you are doing good job. I had never entered comments for any page. but i cant stop doing it here. Think from
this how best you are. Thank you for giving such a wonderful post day by day. i am very big fan of you. We need your
support in upcoming days too.

September 19, 2013 at 12:19 AM

Anonymous said...
192
Thanx for posting this interview question that we must know as fresher or developer

September 19, 2013 at 6:47 AM

Anonymous said...
193
Perhaps you are all superb software developers but your English skills need improvement.

September 26, 2013 at 7:29 AM

Mohit Dhingra said...


194
Thank You Sir....... These questions are very helpful for .Net Beginners.

September 26, 2013 at 1:50 PM

Anonymous said...
195
Today only i have seen this website. Its very useful for all .net beginners. Me too .net beginner, i need more
explained examples from starting level.

I have one doubt. I am facing this problem when i am installing


Error 1311. Source file not found:
D:\vs\_17962_RTL_x86_enu_VCTools_Spyxx_Utility.cab.
Verify that the file exists and that you can access it.

Kindly tell me the solution for this.

September 29, 2013 at 5:59 AM

Anonymous said...
196
superb <3

October 2, 2013 at 2:20 PM

Anonymous said...
197
Thanks Dude

October 10, 2013 at 7:49 PM

Indrasen Singh said...


198
http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 30/31
6/19/2017 Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework - ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview
Thanks a lot..this one is a really great pool of questions.

October 13, 2013 at 10:58 AM

Anonymous said...
199
nice post

October 17, 2013 at 12:20 AM

Anonymous said...
200
awesomeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

October 19, 2013 at 5:34 AM

1 – 200 of 345 Newer› Newest»


Give your Valuable Comments

Enter your comment...

Comment as: Abirami S (Google) Sign out

Publish Preview Notify me

Newer Post Home Older Post

Subscribe to: Post Comments ( Atom )

Other Related Posts

Interview Questions in ASP.NET,C#.NET,SQL Server,.NET Framework

Asp.net insert, Edit, update, delete data in gridview

Simple login form example in asp.net Check Username and Password availability in database

3 tier architecture example in asp.net with C#

Introduction to Object Oriented Programming Concepts (OOPS) in C#.net

Best Login Page Design in HTM L, CSS with Source Code

C# - Constructors in C# with Example, Types of Constructor in C# with Example

Introduction to WCF - WCF tutorial | WCF Tutorial - Windows Communication Foundation | WCF Example |
WCF Sample code in asp.net 3.5 | Basic WCF Tutorial for Beginners

how to insert images into database and how to retrieve and bind images to gridview using asp.net (or)
save and retrieve images from database using asp.net

jQuery 360 Degrees Image Display Plugins Examples with Tutorial

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.


The content is copyrighted to Suresh Dasari and may not be reproduced on other w ebsites w ithout permission from the ow ner.

http://www.aspdotnet-suresh.com/2010/05/interview-questions-in-aspnetcnetsql.html 31/31

You might also like