What are the features of ASP.Net 4.0?
Explain what is data manipulation?
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.
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
If a browser is used to call a web service directly from .Aspx page without calling a proxy, what is returned?
The browser will give the wsdl i.e webservices description what the mehtods it contains and what parameters required
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
Design a conventional iterative algorithm to traverse a binary tree represented in two dimensional array in preorder.
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
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.
What is difference between a 3-tiered application and a 3-layered application?
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?
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.
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
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?
HT - Hyper Threading - It enables a CPU have multiple executional units so that computations happens faster.
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.
COM = Component Object Model.
DCOM = Distributed Component Object Model
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...
What is the name of activedirectory file
NTDS.dit
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?
data is stored in XML format
The data will be stored in XML format.
Why do you think Microsoft has emerged as a GLobal leader in software industry?
microsoft develop most useful and user friendly softwares
Because they have launched most robust products and most selling, popular products all over the world. Thats why they are global leaders.
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?
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...
What is an ide ?What are different types ?In dot net and in Javahow do you configure to cvs repository?
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.
What is assembly in .Net and what do you mean by protected class always present in the same assembly?
What is project flow and architecture for any .Net project ?
What do you understand by mom?
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.
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...
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 ...
In Microsoft project. Why the qty allocation must be done. What is the interlink between msp & cema.
Architecture Interview Questions
Microsoft.NET Interview Questions
Microsoft Basics Interview Questions
Reporting Services Interview Questions
Visual Basic Interview Questions