GeekInterview.com
Series: Subject: Topic:

Microsoft Interview Questions

 
Sub Categories (+ View)
Subject Name
Questions
Answers
Last updated
59
372
May
5th,
2012
147
346
Apr
16th,
2012
344
1145
May
24th,
2012
457
1444
May
1st,
2012
169
522
May
25th,
2012
66
206
Feb
6th,
2012
Showing Questions 1 - 20 of 34 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

Data manipulation

Asked By: jay_cage | Asked On: Jan 5th, 2009

Explain what is data manipulation?

Answered by: ramanpreet ghai on: May 2nd, 2012

Data manipulation is a process of handling the problems regarding with the data,such as ->
1.insertion
2.deletion
3.sorting
4.updating
5.searching,etc.

Answered by: psingla on: Mar 29th, 2010

Dealing with the data is known as data manuplation.
It includes:
insertion of data
deletion of data
updation of data
selecting/fetching data

data manuplation language in SQl includes:
Insert
delete
update
select

Calling web service via browser

Asked By: madhu_2125 | Asked On: Oct 14th, 2008

If a browser is used to call a web service directly from .Aspx page without calling a proxy, what is returned?

Answered by: arun.12 on: May 1st, 2012

The browser will give the wsdl i.e webservices description what the mehtods it contains and what parameters required

Answered by: jsubha2009 on: Nov 28th, 2009

The Browser gives a trial to check the methods inside the Webservice and of the possible parameters to be used for the methods and it returns the  result in the form of XML Document. It runs the se...

Pre order binary tree traverse

Asked By: Dheerendra_juli | Asked On: Jul 22nd, 2009

Design a conventional iterative algorithm to traverse a binary tree represented in two dimensional array in preorder.

Answered by: puzzlu on: Sep 21st, 2010

Binary tree in 2 dimensional array?
Here is the solution for binary tree in link list as node


{
int info;
node *left;
node *right;
};

preOreder(node * Tree)
{
push(tree);

while(stack is not empty)
{
myNode= pop();
print myNode->info;
push(node->right);
push(node->left);
}
}

What is difference between internaldtdand externaldtd

Asked By: sridevi | Asked On: Oct 20th, 2006

Answered by: jsubha2009 on: Nov 28th, 2009

When the Document Type Definition of XML file or document is specified directly in the xml file it is internal DTD. If however it is stored separately in a file with the rules for the xml file it is external DTD. We use the extension .dtd for external DTD. This DTD is like the XML Schema.

3-tier 3-layer application

Asked By: gunjan.kumar | Asked On: Oct 19th, 2008

What is difference between a 3-tiered application and a 3-layered application?

Answered by: raja63229 on: Oct 21st, 2009

This is very common question asked by couple of companies and I noticed developers usually gets confused about the difference.When we talk about multi-layer, we usually mean an application broken down...

What is difference between shared assembly and web service?

Asked By: nileshpatil1884 | Asked On: Feb 7th, 2008

Answered by: albu77 on: Jun 1st, 2009

The shared assembly is intended to allow several app on one machine, where the shared assembly is located in the GAC.
When we speak about WebService there is a notion of distributed architecture, you can use method or service which could be located on your machine or somewhere else.

Answered by: smohan on: Mar 25th, 2008

Eventhough both are giving reusability, they differ in accessibility.
Web service is accessible from any system from any part of the world thru internet but shared assembly is accessible only within the same system

Tier 3 Microsoft support engineer interview

Asked By: puzzled | Asked On: Mar 4th, 2009

I just got out of a panel interview at Microsoft. There were three interviewers and me the interviewee. Two of the individuals asked the bulk of the questions and the other took notes. I noticed a distinctive style to each interviewers roles for the interview. One person asked fairly easy straight-forward...

What is meant by ht in p-iv ht system?

Asked By: umesh2006 | Asked On: Dec 19th, 2005

Answered by: ramaprasanna on: Feb 3rd, 2009

HT - Hyper Threading - It enables a CPU have multiple executional units so that computations happens faster.

Answered by: Sudhan on: Oct 4th, 2007

This technology states that it can accept multiple thread at one shot which it not possible in normal P4 structure, so the speed increase in HT Proccesor.

What is com and dcom?

Asked By: visitor | Asked On: Oct 3rd, 2005

Answered by: ramaprasanna on: Feb 3rd, 2009

COM = Component Object Model.
DCOM = Distributed Component Object Model

Answered by: Chaitanya Sagar on: Jul 19th, 2007

COM( component object model) is a specification/ guide line document for creating the reusable components.By Com we can achive Language Independent (by implementing Dual interfaces IDispatch for Nonpo...

Active directory

Asked By: Subratag | Asked On: Jan 28th, 2008

What is the name of activedirectory file

Answered by: ramaprasanna on: Feb 3rd, 2009

NTDS.dit

Answered by: rob86 on: Dec 19th, 2008

There are five files in AD
ebd.chk
ebd.log
ntds.dit
reg1.log
reg2.log

In which form dose the dataset store data in it?

Asked By: Ahmar Ibrar | Asked On: May 24th, 2006

Answered by: sbalaji407 on: Dec 13th, 2008

data is stored in XML format

Answered by: Sudhakar on: Oct 23rd, 2007

The data will be stored in XML format.

Why do you think Microsoft has emerged as a GLobal leader in software industry?

Asked By: ganesh | Asked On: Aug 2nd, 2007

Answered by: rahul_j287 on: Nov 12th, 2008

microsoft develop most useful and user friendly softwares

Answered by: Diptikanta on: Apr 3rd, 2008

Because they have launched most robust products and most selling, popular products all over the world. Thats why they are global leaders.

Exchange information store

Asked By: dscastroii | Asked On: Mar 28th, 2008

You are a systems administrator and discover the exchange information store is down. What could be the problem, and what steps would you perform to bring it back up again?

Answered by: mukeshch.srivastava on: Nov 2nd, 2008

Which version of the Exchange we are talking about..?On the stores, check the option do not mount the stores at startup (for mailbox as well as )Now try starting the service, if it starts..means probl...

Ide

Asked By: vineela0283 | Asked On: Jul 21st, 2008

What is an ide ?What are different types ?In dot net and in Javahow do you configure to cvs repository?

Answered by: praneethreddyp on: Sep 30th, 2008

IDE stands for Integrated Developemnt  Environment. It is used for integrating to develop a product. Every technology/language needs to have IDE to develop a programme. In .Net IDE we use CLR as its heart.

Protected class in assembly

Asked By: surendra_sahu786 | Asked On: Aug 27th, 2008

What is assembly in .Net and what do you mean by protected class always present in the same assembly?

Project flow and architecture

Asked By: alikhan | Asked On: Jul 24th, 2008

What is project flow and architecture for any .Net project ?

What do you understand by mom?

Asked By: Krishna | Asked On: May 25th, 2007

Answered by: sateeshts on: Jul 5th, 2008

Mom is used to proactively monitor and manage the servers.it is the management tool like tivoli,Hp open view.By using MOm we can manage windows servers as well as many different other platform servers,cisco routers and hardware equips by using management packs and connectors.

Answered by: enqueued on: Jan 11th, 2008

MOM stands for Microsoft Operations Manager. It is an application used for monitoring health of servers. MOM can monitor lot of things in a server. Such as event viewer entries, performance counters e...

What are the differences between .Net 1.1 and .Net 2.0 in terms of changes in language (c#/vb.Net) and framework? please do not include the differences between visual studio 2003 and 2005.

Asked By: prakash | Asked On: Jul 9th, 2007

Answered by: shilpamasineni on: May 19th, 2008

This are new features included as compared to older version(2003)Vb.Net 8.01.Support for Operator Overloading2.Supports Generics3.Extra keywords included - Continue,My,using,isnot4.Nullable Types are ...

Quantity allocation

Asked By: friends star | Asked On: May 17th, 2008

In Microsoft project. Why the qty allocation must be done. What is the interlink between msp & cema.

First | Prev | | Next | Last Page

 

 

Connect

twitter fb Linkedin GPlus RSS

Ads

Question Categories

ADO.NET Interview Questions

Architecture Interview Questions

ASP Interview Questions

ASP.NET Interview Questions

C# Interview Questions

DataGrid Interview Questions

DotNet Interview Questions

Microsoft.NET Interview Questions

Microsoft Basics Interview Questions

Reporting Services Interview Questions

VB.NET Interview Questions

Visual Basic Interview Questions

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us:
 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, click "Subscribe".