.NET Interview Questions
11: .NET Windows services development questions
Explain Windows service. You often need programs that run
continuously in the background. For example, an email server is
expected to listen continuously on a network port for incoming email
messages,
12: COM/COM+ services and components in .NET
Explain transaction atomicity. We must ensure that the entire transaction is either committed or rolled back.
Explain consistency. We must ensure that the system is always left at the correct state in
13: .NET and COM interop questions
# Describe the advantages of writing a managed code application instead of unmanaged one. What’s involved in certain piece of code being managed? The advantages include automatic garbage collection,
14: ASP.NET questions
# Whats an assembly? Assemblies are the building blocks of .NET Framework applications; they form the fundamental unit of deployment, version control, reuse, activation scoping, and security permissi
15: .NET deployment questions
1. What do you know about .NET assemblies? Assemblies are the smallest units of versioning and deployment in the .NET application. Assemblies are also the building blocks for programs such as Web ser
16: ASP.NET DataGrid questions
# What is datagrid? The DataGrid Web server control is a powerful tool for displaying information from a data source. It is easy to use; you can display editable data in a professional-looking grid b
17: C# developer interview questions
1) The C# keyword ‘int’ maps to which .NET type?
System.Int16
System.Int32
System.Int64
System.Int128
2) Which of these string definitions will prevent escaping on backslashes in C#?
string s =
18: C# .NET interview questions
1. Are private class-level variables inherited? - Yes, but they are not accessible, so looking at it you can honestly say that they are not inherited. But they are. &nbs
19: Interview questions for C# developers
Is it possible to inline assembly or IL in C# code? - No. Is it possible to have different access modifiers on the get/set methods of a property?
- No. The access modifier on a property applies to
20: MS SQL Server interview question
1. What is normalization? - Well a relational database is basically composed of tables that contain related data. So the Process of organizing this data into tables is actually referred
Page 2 of 4
[1] [2] [3] [4]