Skip to main content

Xerox - Dot net Interview question

Xerox Dot Net interview questions

Xerox - Dot net Interview question 


1,When to use an abstract class in application
2,Difference between Abstract class and interface
3,What is static class and when is it used
4,Exception handling in c#
5,When to use finally statement in c#
6,What is the use of Ref and Out keyword and when it is used.
7,What checking are done if an exception is caught in catch block in c#
8,What are the types of authentication in asp.net application and how windows authentication is done.
9,Difference between view state and session
10,How to clear a session in asp
.net
11,What is caching.How a page is cached in an asp.net application
12,What is cookies,when it is used ,what is the difference between cookies and view state.
13,How test cases are prepared in your application.
14,Error handling in SQL server
15,Query optimisation techniques in SQL
16,What is cute in SQL
17,what is the difference between table variable ,CTE and temporary table.Which one is best to use.
18,On what basis indexing is set for a table and explain types of indexing
19,What is the difference between ee service and wcf service
20,What is the advantage of using a service other then directly calling function directly.
21,What are the techniques while designing a database.


Comments

  1. If you're looking for regular updates on programming tech, you could keep a watch on websites like http://www.dotnetbasic.com
    which will fetch you the latest updates from many programmers.

    ReplyDelete

Post a Comment

Popular posts from this blog

Gemini software Dot net interview question for experienced

Gemini Interview questions 4-8 year experienced Dot net professional Gemini Interview questions 4-8 year experienced Dot net professional 1,Asp .net mvc request life cycle. 2,How routing works 3,Where codes for routing are written 4,What is attribute based routing in aap.net Mvc 5,Is multiple routes possible on a single action method. 6,What is action filters. 7,what is authentication and authorization filters 8,What are the types of authentication 8,What is the use of data annotation 9,Can we fire data annotation in client side. 10,What is model binding 11,what are Html helpers

15 Essential jQuery Interview Questions

15 Essential jQuery Interview Questions 15 Essential jQuery Interview Questions 1,Explain what the following code will do: $( "div#first, div.first, ol#items > [name$='first']" ) Ans:This code performs a query to retrieve any element with the id first, plus all elements with the class first, plus all elements which are children of the element and whose name attribute ends with the string "first". This is an example of using multiple selectors at once. The function will return a jQuery object containing the results of the query. 2,What is wrong with this code, and how can it be fixed to work properly even with buttons that are added later dynamically? // define the click handler for all buttons $( "button" ).bind( "click", function() {     alert( "Button Clicked!" ) }); /* ... some time later ... */ // dynamically add another button to the page $( "html" ).append( " Click...

ASP .Net MVC

ASp .Net MVC 1. Explain MVC (Model-View-Controller) in general? MVC (Model-View-Controller) is an architectural software pattern that basically decouples various components of a web application. By using MVC pattern, we can develop applications that are more flexible to changes without affecting the other components of our application. §    “Model”, is basically domain data. §    “View”, is user interface to render domain data. §    “Controller”, translates user actions into appropriate operations performed on model. 2. What is ASP.NET MVC? ASP.NET MVC is a web development framework from Microsoft that is based on MVC (Model-View-Controller) architectural design pattern. Microsoft has streamlined the development of MVC based applications using ASP.NET MVC framework. 3. Difference between ASP.NET MVC and ASP.NET WebForms? ASP.NET Web Forms uses Page controller pattern approach for rendering layout, whereas ASP.NET MVC uses Front con...