Monthly Archives: August 2011

ASP.NET interview questions: – Tracing in ASP.NET?

Tracing: – Tracing is a way to monitor the execution of your ASP.NET application. You can record exception details and program flow in a way that doesn’t affect the program’s output. In simple words when you monitor your application during … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, .net training, ASP.net interview questions and answers, ASP.NET training, Csharp interview questions, programming interview questions, Tracing | Tagged , , , , , , | Leave a comment

SQL Server interview questions: – Describe ACID fundamental and what are transactions in SQL SERVER?

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: Atomicity • … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Acid fundamenta, Csharp interview questions, programming interview questions, SQL Server interview questions, transactions | Tagged , , , , , , | Leave a comment

SQL Server interview questions: – Name different types of replication supported by SQL SERVER?

There are three types of replication supported by SQL SERVER:- (a) Snapshot Replication. Snapshot Replication takes snapshot of one database and moves it to the other database. After initial load data can be refreshed periodically. The only disadvantage of this … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, .Net Interview Questions, Csharp interview questions, programming interview questions, Replication, SQL Server interview questions | Tagged , , , , , , | Leave a comment

C# and .Net Interview Question:- Demonstrate InnerClass and Write procedure to use them?

InnerClass: – A class which is declared inside the body of another class is called as InnerClass. Syntax: – class Outer { //having it’s own implementation. class inner { //having its own implementation } } Note:- 1. An inner class … Continue reading

Posted in .net, .NET and C# training, .NET interview questions and answers, Csharp interview questions, Inner class, programming interview questions | Tagged , , , , , , | Leave a comment

.Net Interview Question:-Declare Interfaces as private?

Sometimes I am surprised with some questions which come up during .NET interview and this one is one of them. I really do not understand why people ask such questions and how useful it is practically. Most of the developers … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, Interface, programming interview questions | Tagged , , , , , , | Leave a comment

.NET interview questions: – Explian the term Native Image Generator (Ngen.exe)?

The Native Image Generator utility (Ngen.exe) allows you to run the JIT compiler on your assembly’s MSIL and generate native machine code which is cached to disk. After the image is created .NET runtime will use the image to run … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, Native image generator, programming interview questions | Tagged , , , , , | Leave a comment

.Net Interview Question:- Ways of adding your window application icon to the task bar?

This is not one of the .NET typical interview question but as a developer you would be interested in knowing that how to add your windows application icon in to the task bar. Let’s demonstrate a simple example to see … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, programming interview questions, Task bar, Uncategorized, window application | Tagged , , , , , , | Leave a comment

C# and .NET interview question – Demonstrate implementation of interface with same method name in C#

This is one of the typical .Net interview questions and is also the favorable question of interviewers. Let’s first try to understand what exactly the question means. Suppose we have two interfaces namely I1, I2 and both the interface have … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, interfaces in C#, Methods, programming interview questions | Tagged , , , , , , , | Leave a comment

SQL Server interview questions: – Show practically using SQL employee’s age greater than 30?

This is one of the most typical questions asked in most of the interviews and is the favorable question of interviewers to check your skill on SQL. Many of the developer fail to query this question and because of that … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, Csharp interview questions, Employees age, programming interview questions, SQL Server interview questions | Tagged , , , , , , | Leave a comment

.NET interview questions: – Why is anonymous Types superior than Tuples?

Anonymous Type: – Anonymous Types help us to create an object without declaring its data type and also help us to create properties with good meaningful names. Since the name of the data type is not specified that the type … Continue reading

Posted in .net, .NET and C# interview questions and answers, .NET and C# training, .net training, anonymous Types, Csharp interview questions, programming interview questions, Tuples | Tagged , , , , , , | Leave a comment