Skip to main content

Xerox-Dot Net-Managerial Round

Xerox-Dot Net Interview Questions Managerial Round

Xerox-Dot Net Managerial Round



1,Tell about your educational as well as on the technological achievements
2,Explain the architecture of your application.
3,How do you rate yourself in c#,Asp.net,Sql server
4,In three tier application what is the need of middle layer
5,Have you used Interface in your application .What do think about placing an interface for decoupling.
6,When should we use abstract  keyword over virtual keyword when designing a class
7,What are the types of access modifiers in c#
8,Whether a method with protected access modifier be available in the nth multilevel inheritance of      the particular class
9,How to make a property read only in C#
10,When a user requests for a page by entering Url in broser, what all actions are performed in    background for returning the page in asp.net
11,What are the various asp.net page life cycle events
12,What is the last asp.net page life cycle event by which user can make change in a control
13,Have you worked with master pages.Is it possible to declare a master page dynamically in Asp.net
14,What is the difference between dataset and datatable
15,How to design a Query or Stored procedure in order to fill a dataset with multiple datatable
16,How to changes the .aspx shown in url of an asp .net web application
17,What is clustered as well as non-clustered index in Sql
18,What are the disadvantages of non-clustered index
19,Write an sql query to select second largest value from a table
20,Can we create clustered index for a non primary column in  a table
21,why do you want to work for xerox
22,What do you expect from working in xerox
23,What are the positive and negative thing you are having as  a developer
24,As part of a team whom do you give more importance your team, Company or Client
25,How you can manage a person with negative attitude who is part of your team
26,You have jumped 4 companies in 5 years, do you have got any reason for it and do you think that    moving from one company to other is good for your career

Comments

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...