DirectoryBusinessBlog Details for "Job Interview Questions and Answers"

Job Interview Questions and Answers

Job Interview Questions and Answers
This blog contains most common interview questions from different fields,.net framework, ABAP interview Questions,ASP,ASP.net,ASP.net interview questions, C interview Questions, C language, C interview questions, employer interview questions, Intervi
Articles: 1, 2, 3, 4

Articles

SQL Admin Interview Questions
2008-01-20 15:46:00
1. Explain the architecture of SQL Server? ** 2. Different types of Backups? o A full database backup is a full copy of the database. o A transaction log backup copies only the transaction log. o A differential backup copies only the database pages modified after the last full database backup. o A file or filegroup restore allows the recovery of just the portion of a
More About: Questions , Interview , Admin
SQL Tools Interview Questions
2008-01-20 15:44:00
1. Have you ever used DBCC command? Give an example for it. The Transact-SQL programming language provides DBCC statements that act as Database Console Commands for Microsoft® SQL Serve 2000. These statements check the physical and logical consistency of a database. Many DBCC statements can fix detected problems. Database Console Command statements are grouped into these categories.
More About: Tools , Questions , Interview
SQL Transaction Interview Questions
2008-01-20 15:41:00
1. What is Transaction? A transaction is a sequence of operations performed as a single logical unit of work. A logical unit of work must exhibit four properties, called the ACID (Atomicity, Consistency, Isolation, and Durability) properties, to qualify as a transaction: o Atomicity - A transaction must be an atomic unit of work; either all of its data modifications are performed or none of
More About: Questions , Interview
Trigger and View Interview Questions
2008-01-20 15:37:00
1. What is Trigger? What is its use? What are the types of Triggers? What are the new kinds of triggers in sql 2000? Triggers are a special class of stored procedure defined to execute automatically when an UPDATE, INSERT, or DELETE statement is issued against a table or view. Triggers are powerful tools that sites can use to enforce their business rules automatically when data is modified.
More About: Questions , Interview , View
SQL Server Stored Procedures
2008-01-20 15:35:00
1. What is Stored procedure? A stored procedure is a set of Structured Query Language (SQL) statements that you assign a name to and store in a database in compiled form so that you can share it between a number of programs. o They allow modular programming. o They allow faster execution. o They can reduce network traffic. o They can be used as a security mechanism. 2. What
More About: Server
SQL Indexes
2008-01-20 15:33:00
1. What is Index? It’s purpose? Indexes in databases are similar to indexes in books. In a database, an index allows the database program to find data in a table without scanning the entire table. An index in a database is a list of values in a table with the storage locations of rows in the table that contain each value. Indexes can be created on either a single column or a combination of
SQL Optimization
2008-01-20 15:31:00
T-SQL Optimization Tips • Use views and stored procedures instead of heavy-duty queries. This can reduce network traffic, because your client will send to server only stored procedure or view name (perhaps with some parameters) instead of large heavy-duty queries text. This can be used to facilitate permission management also, because you can restrict user access to table columns they should
IIS Interview Questions
2008-01-20 15:27:00
1. In which process does IIS runs (was asking about the EXE file) inetinfo.exe is the Microsoft IIS server running, handling ASP.NET requests among other things. When an ASP.NET request is received (usually a file with .aspx extension), the ISAPI filter aspnet_isapi.dll takes care of it by passing the request to the actual worker process aspnet_wp.exe. 2. Where are the IIS log files
More About: Questions , Interview
XML Interview Questions
2008-01-20 15:24:00
1. Explain the concept of data island? 2. How to use XML DOM model on client side using JavaScript. 3. What are the ways to create a tree view control using XML, XSL & JavaScript? 4. Questions on XPathNavigator, and the other classes in System.XML Namespace? 5. What is Use of Template in XSL? 6. What is “Well Formed XML” and “Valid XML” 7. How you will do SubString in XSL
More About: Interview
COM interview Questions
2008-01-20 15:23:00
1. Interop Services? The common language runtime provides two mechanisms for interoperating with unmanaged code: • Platform invoke, which enables managed code to call functions exported from an unmanaged library. • COM interop, which enables managed code to interact with COM objects through interfaces. Both platform invoke and COM interop use interop marshaling to accurately move method
More About: Questions , Interview
Webservices and Remoting
2008-01-20 15:20:00
WEBSERVICES AND REMOTING What is a WebService and what is the underlying protocol used in it?Why Web Services? Web Services are applications delivered as a service on the Web. Web services allow for programmatic access of business logic over the Web. Web services typically rely on XML-based protocols, messages, and interface descriptions for communication and access
ASP.net Interview Questions
2008-01-20 15:14:00
1. Asp.net and asp – differences? Code Render Block Code Declaration Block Compiled Request/Response Event Driven Object Oriented - Constructors/Destructors, Inheritance, overloading.. Exception Handling - Try, Catch, Finally Down-level Support Cultures User Controls In-built client side validation Session - weren't transferable across servers It
More About: Questions , Interview
ADO.net Interview Questions
2008-01-20 15:13:00
ADO.NET 1. Advantage of ADO.Net? o ADO.NET Does Not Depend On Continuously Live Connections o Database Interactions Are Performed Using Data Commands o Data Can Be Cached in Datasets o Datasets Are Independent of Data Sources o Data Is Persisted as XML o Schemas Define Data Structures 2. How would u connect to database using .NET? SqlConnection nwindConn = new
More About: Questions , Interview
.net Constructors Interview Questions
2008-01-20 15:11:00
CONSTRUCTORS 1. Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use? (Class constructor method is also known as type constructor or type initializer) Instance constructor is executed when a new instance of type is created and the class constructor is executed after the type is loaded and before any one of the type
More About: Questions , Interview
.net Framework OOPS
2008-01-20 15:08:00
1. What are the OOPS concepts? 1) Encapsulation: It is the mechanism that binds together code and data in manipulates, and keeps both safe from outside interference and misuse. In short it isolates a particular code and data from all other codes and data. A well-defined interface controls the access to that particular code and data. 2) Inheritance: It is the process by which one object
More About: Framework
.net Framework Interview Questions
2008-01-20 15:03:00
1. What is .NET Framework ? The .NET Framework has two main components: the common language runtime and the .NET Framework class library. You can think of the runtime as an agent that manages code at execution time, providing core services such as memory management, thread management, and remoting, while also enforcing strict type safety and other forms of code accuracy that ensure security
More About: Questions , Interview
Sharepoint Portal Interview Questions
2008-01-20 14:33:00
what is SharePoint? Portal Collaboration Software. what is the difference between SharePoint Portal Server and Windows SharePoint Services? SharePoint Portal Server is the global portal offering features like global navigation and searching. Windows SharePoint Services is more content management based with document libraries and lists. You apply information to certain areas within your portal
More About: Questions , Interview , Sharepoint
Java Interview Questions
2008-01-20 13:48:00
Question: What if the main method is declared as private? Question: What if the static modifier is removed from the signature of the main method? Question: What if I write static public void instead of public static void? Q:Question: What if I do not provide the String array as the argument to the method? Question: What is the first argument of the String array in main
More About: Questions , Java , Interview
RDBMS Interview Questions
2008-01-20 13:25:00
1. What is database? A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world and which is designed, built and populated with data for a specific purpose.2. What is DBMS? It is a collection of programs that enables user to create and maintain a database. In other words it is general-purpose software that provides the
More About: Questions , Interview
Technical Interview QuestionsI
2008-01-20 13:19:00
1. A 2MB PCM(pulse code modulation) has a) 32 channels b) 30 voice channels & 1 signalling channel. c) 31 voice channels & 1 signalling channel. d) 32 channels out of which 30 voice channels, 1 signalling channel, & 1 Synchronizatio channel. Ans: (c) 2. Time taken for 1 satellite hop in voice communication is a) 1/2 second b) 1 seconds c) 4 seconds d) 2 seconds Ans: (a) 3. Max number of
More About: Technical , Interview , Technic
PHP Interview Questions - Part 3
2007-11-21 10:01:00
<!--[if !supportLists]--> I. How can we send mail using JavaScript?<!--[endif]--> <!--[if !supportLists]--> II. How can we repair a MySQL table?<!--[endif]--> <!--[if !supportLists]--> III. What are the advantages of stored procedures, triggers, indexes? <!--[endif]--> <!--[if !supportLists]--> IV. What is the maximum length of a table
More About: Questions , Interview , Part , Part 3
Dot Net Interview Questions - Part 15
2007-11-15 18:22:00
19. Can I write my own .NET host? Yes. For an example of how to do this, take a look at the source for the dm.net moniker developed by Jason Whittington and Don Box (http://staff.develop.com/jasonw/clr/read me.htm ). There is also a code sample in the .NET SDK called CorHost. 20. What is garbage collection? Garbage collection is a system whereby a run-time component takes responsibility
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 14
2007-11-15 18:17:00
1. What is .NET? That's difficult to sum up in a sentence. According to Microsoft, .NET is a "revolutionary new platform, built on open Internet protocols and standards, with tools and services that meld computing and communications in new ways".A more practical definition would be that .NET is a new environment for developing and running software applications, featuring ease of development of
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 13
2007-11-15 18:09:00
How to implement DataGrid in .NET? How would u make a combo-box appear in one column of a DataGrid? What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why? How can we create Tree control in asp.net?
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 12
2007-11-15 18:03:00
Can we do sorting in XSL ? how do you deal sorting columns dynamically in XML. What is “Async” property of XML Means ? What is XPath Query ? Difference Between Element and Node. What is CDATA Section. DOM & SAX parsers explanation and difference What is GetElementbyname method will do? What is selectnode method will give? What is valid xml document? What a well
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 11
2007-11-15 17:58:00
How you will protect / secure a web service? For the most part, things that you do to secure a Web site can be used to secure a Web Service. If you need to encrypt the data exchange, you use Secure Sockets Layer (SSL) or a Virtual Private Network to keep the bits secure. For authentication, use HTTP Basic or Digest authentication with Microsoft® Windows®
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 10
2007-11-15 17:48:00
What are the different modes for the sessionstates in the web.config file? Off Indicates that session state is not enabled. Inproc Indicates that session state is stored locally. StateServer Indicates that session state is stored on a remote server. SQLServer Indicates that session state is stored on the
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 9
2007-11-14 17:55:00
How do you implement postback with a text box? What is postback and usestate? Make AutoPostBack property to true How can you debug an ASP page, without touching the code? What is SQL injection? An SQL injection attack "injects" or manipulates SQL code by adding unexpected SQL to a query. Many web pages take parameters from web user, and make SQL query to
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 8
2007-11-14 17:49:00
Which ASP.NET configuration options are supported in the ASP.NET implementation on the shared web hosting platform? A: Many of the ASP.NET configuration options are not configurable at the site, application or subdirectory level on the shared hosting platform. Certain options can affect the security, performance and stability of the server and, therefore cannot
More About: Questions , Interview , Part
Dot Net Interview Questions - Part 7
2007-11-14 17:47:00
How do u implement locking concept for dataset? <!--[if !supportLineBreakNewLine]--> <!--[endif]-->Asp.net and asp – differences? Code Render Block Code Declaration Block Compiled Request/Response Event Driven Object Oriented - Constructors/Destructors, Inheritance, overloading..
More About: Questions , Interview , Part
More articles from this author:
1, 2, 3, 4
53944 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2009 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker