Friday, May 25, 2007

Windows Forms (.NET) Interview Questions


  1. Write a simple Windows Forms MessageBox statement.

Answer:

System.Windows.Forms.MessageBox.Show("Hello, Windows Forms");

  1. Can you write a class without specifying namespace? Which namespace does it belong to by default??

Answer: Yes, you can, then the class belongs to global namespace which has no name. For commercial products, naturally, you wouldn’t want global namespace.

  1. You are designing a GUI application with a window and several widgets on it. The user then resizes the app window and sees a lot of grey space, while the widgets stay in place. What’s the problem?

Answer: One should use anchoring for correct resizing. Otherwise the default property of a widget on a form is top-left, so it stays at the same location when resized.

  1. How can you save the desired properties of Windows Forms application?

Answer: .config files in .NET are supported through the API to allow storing and retrieving information. They are nothing more than simple XML files, sort of like what .ini files were before for Win32 apps.

  1. So how do you retrieve the customized properties of a .NET application from XML .config file?

Answer: Initialize an instance of AppSettingsReader class. Call the GetValue method of AppSettingsReader class, passing in the name of the property and the type expected. Assign the result to the appropriate variable.

  1. Can you automate this process?

Answer: In Visual Studio yes, use Dynamic Properties for automatic .config creation, storage and retrieval.

  1. My progress bar freezes up and dialog window shows blank, when an intensive background process takes over.

Answer: Yes, you should’ve multi-threaded your GUI, with taskbar and main form being one thread, and the background process being the other.

  1. What’s the safest way to deploy a Windows Forms app?

Answer: Web deployment: the user always downloads the latest version of the code; the program runs within security sandbox, properly written app will not require additional security privileges.

  1. Why is it not a good idea to insert code into InitializeComponent method when working with Visual Studio?

Answer: The designer will likely throw it away; most of the code inside InitializeComponent is auto-generated.

  1. What’s the difference between WindowsDefaultLocation and WindowsDefaultBounds?

Answer: WindowsDefaultLocation tells the form to start up at a location selected by OS, but with internally specified size. WindowsDefaultBounds delegates both size and starting position choices to the OS.

  1. What’s the difference between Move and LocationChanged? Resize and SizeChanged?

Answer: Both methods do the same, Move and Resize are the names adopted from VB to ease migration to C#.

  1. How would you create a non-rectangular window, let’s say an ellipse?

Answer: Create a rectangular form, set the TransparencyKey property to the same value as BackColor, which will effectively make the background of the form transparent. Then set the FormBorderStyle to FormBorderStyle.None, which will remove the contour and contents of the form.

  1. How do you create a separator in the Menu Designer?

Answer: A hyphen ‘-’ would do it. Also, an ampersand ‘&’ would underline the next letter.

  1. How’s anchoring different from docking?

Answer: Anchoring treats the component as having the absolute size and adjusts its location relative to the parent form. Docking treats the component location as absolute and disregards the component size. So if a status bar must always be at the bottom no matter what, use docking. If a button should be on the top right, but change its position with the form being resized, use anchoring.


Visual Studio 2005 Interview Questions


  1. What is Visual Studio .NET 2005?

The release of Visual Studio 2005 and the .NET Framework 2.0 will make strides in all dimensions of application development. First, Visual Studio 2005 will set a new bar for developer productivity by tailoring the software development experience to the needs of the individual developer. This "personalized productivity" will deliver features across the development environment and .NET Framework class libraries to help developers overcome their most pressing challenges in minimal time. Second, Visual Studio 2005 will enable developers to apply existing skills across a broader range of application development scenarios through improved integration with the Microsoft Office System and SQL Server 2005. Finally, Visual Studio 2005 will deliver a new set of tools and functionality that will help satisfy the application development needs of today's large-scale enterprises.

  1. What are the Basic of Visual Studio .NET 2005?

    • Edit and Continue:

Visual Basic has always been about Rapid Application Development (RAD). One key feature is the ability to fix runtime errors on the fly. With Visual Basic .NET 1.0 and Visual Basic .NET 1.1, this powerful feature wasn't included. This feature is on-board for Whidbey. If you run into an exception at runtime, you get an exception helper that provides tips for fixing common errors, but more importantly, you can edit the code, select F5, and it continues right where you left off. Edit and Continue is VB .NET only feature

    • ClickOnce Deployment

ClickOnce make it easy to install applications and provide ongoing updates (Self-Updating), rather than forcing to distribute new versions of application, can just deploy the portion of the application which has changed. In the .NET Framework 1.0 and 1.1, href-exes were not able to solve many deployment issues. Href-exes are also known as no-touch deployment, or zero impact deployment. Essentially, with versions 1.0/1.1, you can deploy an application to a Web server, allowing users to browse to the URL for the exe. When the user clicks the link, the application downloads to their Internet files cache and runs. To keep this from being a huge security hole, the application permissions are restricted based on the URL (Intranet applications get different permissions than Internet applications, for example), or other factors. This means that some applications no longer need to be deployed in the traditional sense; no more setup.exe or MSI

    • SmartTags

This provides access to information and common tasks without forcing you to constantly navigate away from your work area

    • Code Snippets

With code snippets, you can insert generic "template" code that requires only that you fill in the blanks. You can access code snippets by right-clicking in the code editor and navigating in the context menu to Insert Snippets.

  1. What is Refactoring?

Making changes to your code like, "pulling a large stretch of inline code into its own method" or "converting a field to be a property." The Refactoring support makes this easy to do The key tenet of Extreme Programming created by Kent Beck is constant Refactoring. Under this programming model, you are developing code rapidly and iteratively, but to keep your code from becoming a jumbled mess, you must constantly Refactor. Refactoring is a C# only feature

    • Extract Method

This is to split a method into many fine grained methods which are reusable.

    • Rename

This is used to rename an identifier i.e. field, variable, method etc

    • Encapsulate Fields

Creating a property to encapsulate a field

    • Extract Interfaces

Creating an interface which is implemented by current class.

    • Add Using Unbound Types

Automatic inclusion of namespace for an unbound type.

  1. What are Visual studio 2005 Solution and Project related Features?

    • Test Projects

This option is very useful for experimenting etc. User can just create a temporary project and start coding without saving it.

    • Simplified Build

This option provides build option similar to Visual Basic 6.0. This is a useful option for VB programmers.

    • Stand-alone projects

This is applicable for solution which has only one project. User will not see the solution in the Solution Explorer as well as the commands that act on solutions. However the solution files are still created.

    • Project Properties

This is the central location for all project properties and settings. This provides improved access to resources and strong-name signing within the IDE.

    • Visual Studio Conversion Wizard

Using this option, developers can convert their projects in Visual Studio .NET 2002 or Visual Studio .NET 2003 to Visual Studio 2005. While converting, this provides an option to create a backup of the solution or project.

    • Projects and Solutions options

This feature contains separate pages for General and Build and Run options.

    • Custom Project and Project Item Templates

This feature allows creation or modification of custom template for projects or project items. These custom templates appear in the New Project dialog box and Add New Item dialog box. These templates contain a project file, code files and an XML file containing metadata for the template, which is used by Visual Studio to define how to display and create the project in the development environment. These files are compressed in a .zip file so that it can easily be shared with others.

  1. What are Visual Studio Project Building Features?

    • Building

VS 2005 introduces a new xml based transparent build system for all managed client application called MS.Net Build Engine (MSBuild). Developers can specify the as what to build and how to build under different platforms and configurations in the XML file associated with the build engine. Also they can author re-usable rules to achieve consistent builds across projects. The MSBuild build process is defined by atomic units of build operation (tasks) which can be re-authored by the developers in any .Net languages. However MSBuild cannot be used to build Web projects, deployment projects, and Visual C++ projects.

  1. What are Visual Studio Debugging Features?

    • Edit and Continue

This feature is only supported in VB.Net. This allows the developer to edit the code while debugging the application (Like in Visual Basic).

    • Visualizers

This is a very useful feature. It can be launched from a Watch window or from the new enhanced DataTips and enables viewing of data in an intuitive and natural format i.e. now a string can be viewed as an HTML or an XML document. Also developers can write their own visualizers.

    • Tracepoints and Improved Breakpoint UI

Tracepoints are a new way of using breakpoints to perform a custom action i.e. displaying a messagebox or executing a Visual Studio automation macro to determine whether to break or continue when it hits a tracepoint. The user interface is also enhanced to set these breakpoints easier and faster.

    • Better Tools for Multiprocess Debugging

Now developers can see all processes attached to for debugging in the Processes window. Breakpoint can be attached to a specified processes, threads, and machines. Attach to Process dialog box is simplified and attached processes information is moved from the dialog box to the Processes window.

.NET Remoting Interview Questions


  1. What’s a Windows process?

Answer: It’s an application that’s running and had been allocated memory.

  1. What’s typical about a Windows process in regards to memory allocation?

Answer: Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down.

  1. Why do you call it a process? What’s different between process and application in .NET, not common computer usage, terminology?

Answer: A process is an instance of a running application. An application is an executable on the hard drive or network. There can be numerous processes launched of the same application (5 copies of Word running), but 1 process can run just 1 application.

  1. What distributed process frameworks outside .NET do you know?

Answer: Distributed Computing Environment/Remote Procedure Calls (DEC/RPC), Microsoft Distributed Component Object Model (DCOM), Common Object Request Broker Architecture (CORBA), and Java Remote Method Invocation (RMI).

  1. What are possible implementations of distributed applications in .NET?

Answer:.NET Remoting and ASP.NET Web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.Remoting and System.Web.Services.

  1. When would you use .NET Remoting and when Web services?

Answer: Use remoting for more efficient exchange of information when you control both ends of the application. Use Web services for open-protocol-based information exchange when you are just a client or a server with the other end belonging to someone else.

  1. What’s a proxy of the server object in .NET Remoting?

Answer: It’s a fake copy of the server object that resides on the client side and behaves as if it was the server. It handles the communication between real server object and the client object. This process is also known as marshaling.

  1. What are remotable objects in .NET Remoting?

Answer: Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an existing object is passed.

  1. What are channels in .NET Remoting?

Answer: Channels represent the objects that transfer the other serialized objects from one application domain to another and from one computer to another, as well as one process to another on the same box. A channel must exist before an object can be transferred.

  1. What security measures exist for .NET Remoting in System.Runtime.Remoting?

Answer: None. Security should be taken care of at the application level. Cryptography and other security techniques can be applied at application or server level.

  1. What is a formatter?

Answer: A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.

  1. Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?

Answer: Binary over TCP is the most effiecient, SOAP over HTTP is the most interoperable.

  1. What’s SingleCall activation mode used for?

Answer: If the server object is instantiated for responding to just one single request, the request should be made in SingleCall mode.

  1. What’s Singleton activation mode?

Answer: A single object is instantiated regardless of the number of clients accessing it. Lifetime of this object is determined by lifetime lease.

  1. How do you define the lease of the object?

Answer: By implementing ILease interface when writing the class code.

  1. Can you configure a .NET Remoting object via XML file?

Answer: Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config.

  1. How can you automatically generate interface for the remotable object in .NET with Microsoft tools?

Answer: Use the Soapsuds tool.

C# Interview Questions


  1. What’s the implicit name of the parameter that gets passed into the class’ set method?

Answer: Value, and its datatype depends on whatever variable we’re changing.

  1. How do you inherit from a class in C#?

Answer: Place a colon and then the name of the base class. Notice that it’s double colon in C++.

  1. Does C# support multiple inheritance?

Answer: No, use interfaces instead.

  1. When you inherit a protected class-level variable, who is it available to?

Answer: Classes in the same namespace.

  1. Are private class-level variables inherited?

Answer: Yes, but they are not accessible, so looking at it you can honestly say that they are not inherited. But they are.

  1. Describe the accessibility modifier protected internal.

Answer: It’s available to derived classes and classes within the same Assembly (and naturally from the base class it’s declared in).

  1. C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but want to keep the no parameter one. How many constructors should I write?

Answer: Two. Once you write at least one constructor, C# cancels the freebie constructor, and now you have to write one yourself, even if there’s no implementation in it.

  1. What’s the top .NET class that everything is derived from?

Answer: System.Object.

  1. How’s method overriding different from overloading?

Answer: When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class.

  1. What does the keyword virtual mean in the method definition?

Answer: The method can be over-ridden.

  1. Can you declare the override method static while the original method is non-static?

Answer: No, you can’t, the signature of the virtual method must remain the same, only the keyword virtual is changed to keyword override.

  1. Can you override private virtual methods?

Answer: No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access.

  1. Can you prevent your class from being inherited and becoming a base class for some other classes?

Answer: Yes, that’s what keyword sealed in the class definition is for. The developer trying to derive from your class will get a message: cannot inherit from Sealed class WhateverBaseClassName. It’s the same concept as final class in Java.

  1. Can you allow class to be inherited, but prevent the method from being over-ridden?

Answer: Yes, just leave the class public and make the method sealed.

  1. What’s an abstract class?

Answer: A class that cannot be instantiated. A concept in C++ known as pure virtual method. A class that must be inherited and have the methods over-ridden. Essentially, it’s a blueprint for a class without any implementation.

  1. When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?

Answer: When at least one of the methods in the class is abstract. When the class itself is inherited from an abstract class, but not all base abstract methods have been over-ridden.

  1. What’s an interface class?

Answer: It’s an abstract class with public abstract methods all of which must be implemented in the inherited classes.

  1. Why can’t you specify the accessibility modifier for methods inside the interface?

Answer: They all must be public. Therefore, to prevent you from getting the false impression that you have any freedom of choice, you are not allowed to specify any accessibility, it’s public by default.

  1. Can you inherit multiple interfaces?

Answer: Yes, why not.

  1. And if they have conflicting method names?

Answer: It’s up to you to implement the method inside your own class, so implementation is left entirely up to you. This might cause a problem on a higher-level scale if similarly named methods from different interfaces expect different data, but as far as compiler cares you’re okay.

  1. What’s the difference between an interface and abstract class?

Answer: In the interface all methods must be abstract; in the abstract class some methods can be concrete. In the interface no accessibility modifiers are allowed, which is ok in abstract classes.

  1. How can you overload a method?

Answer: Different parameter data types, different number of parameters, different order of parameters.

  1. If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?

Answer: Yes, just place a colon, and then keyword base (parameter list to invoke the appropriate constructor) in the overloaded constructor definition inside the inherited class.

  1. What’s the difference between System.String and System.StringBuilder classes?

Answer: System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.

  1. What’s the advantage of using System.Text.StringBuilder over System.String?

Answer: StringBuilder is more efficient in the cases, where a lot of manipulation is done to the text. Strings are immutable, so each time it’s being operated on, a new instance is created.

  1. Can you store multiple data types in System.Array? No.

  2. What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?

Answer: The first one performs a deep copy of the array, the second one is shallow.

  1. How can you sort the elements of the array in descending order?

Answer: By calling Sort() and then Reverse() methods.

  1. What’s the .NET datatype that allows the retrieval of data by a unique key?

Answer: HashTable.

  1. What’s class SortedList underneath?

Answer: A sorted HashTable.

  1. Will finally block get executed if the exception had not occurred?

Answer: Yes.

  1. What’s the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception?

Answer: A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this case and just write catch {}.

  1. Can multiple catch blocks be executed?

Answer: No, once the proper catch code fires off, the control is transferred to the finally block (if there are any), and then whatever follows the finally block.

  1. Why is it a bad idea to throw your own exceptions?

Answer: Well, if at that point you know that an error has occurred, then why not write the proper code to handle that error instead of passing a new Exception object to the catch block? Throwing your own exceptions signifies some design flaws in the project.

  1. What’s a delegate?

Answer: A delegate object encapsulates a reference to a method. In C++ they were referred to as function pointers.

  1. What’s a multicast delegate?

Answer: It’s a delegate that points to and eventually fires off several methods.

  1. How’s the DLL Hell problem solved in .NET?

Answer: Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly.

  1. What are the ways to deploy an assembly?

Answer: An MSI installer, a CAB archive, and XCOPY command.

  1. What’s a satellite assembly?

Answer: When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.

  1. What namespaces are necessary to create a localized application?

Answer: System.Globalization, System.Resources.

  1. What’s the difference between // comments, /* */ comments and /// comments?

Answer: Single-line, multi-line and XML documentation comments.

  1. How do you generate documentation from the C# file commented properly with a command-line compiler?

Answer: Compile it with a /doc switch.

  1. What’s the difference between <c> and <code> XML documentation tag?

Answer: Single line code example and multiple-line code example.

  1. Is XML case-sensitive?

Answer: Yes, so <Student> and <student> are different elements.

  1. What debugging tools come with the .NET SDK?

Answer: CorDBG – command-line debugger, and DbgCLR – graphic debugger. Visual Studio .NET uses the DbgCLR. To use CorDbg, you must compile the original C# file using the /debug switch.

  1. What does the This window show in the debugger?

Answer: It points to the object that’s pointed to by this reference. Object’s instance data is shown.

  1. What does assert() do?

Answer: In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is false. The program proceeds without any interruption if the condition is true.

  1. What’s the difference between the Debug class and Trace class? Documentation looks the same.

Answer: Use Debug class for debug builds, use Trace class for both debug and release builds.

  1. Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

Answer: The tracing dumps can be quite verbose and for some applications that are constantly running you run the risk of overloading the machine and the hard drive there. Five levels range from None to Verbose, allowing to fine-tune the tracing activities.

  1. Where is the output of TextWriterTraceListener redirected?

Answer: To the Console or a text file depending on the parameter passed to the constructor.

  1. How do you debug an ASP.NET Web application?

Answer: Attach the aspnet_wp.exe process to the DbgClr debugger.

  1. What are three test cases you should go through in unit testing?

Answer: Positive test cases (correct data, correct output), negative test cases (broken or missing data, proper handling), exception test cases (exceptions are thrown and caught properly).

  1. Can you change the value of a variable while debugging a C# application?

Answer: Yes, if you are debugging via Visual Studio.NET, just go to Immediate window.

  1. Explain the three services model (three-tier application).

Answer: Presentation (UI), business (logic and underlying code) and data (from storage or other sources).

  1. What are advantages and disadvantages of Microsoft-provided data provider classes in ADO.NET?

Answer: SQLServer.NET data provider is high-speed and robust, but requires SQL Server license purchased from Microsoft. OLE-DB.NET is universal for accessing other sources, like Oracle, DB2, Microsoft Access and Informix, but it’s a .NET layer on top of OLE layer, so not the fastest thing in the world. ODBC.NET is a deprecated layer provided for backward compatibility to ODBC engines.

  1. What’s the role of the DataReader class in ADO.NET connections?

Answer: It returns a read-only dataset from the data source when the command is executed.

  1. What is the wildcard character in SQL? Let’s say you want to query database with LIKE for all employees whose name starts with La.

Answer: The wildcard character is %, the proper query with LIKE would involve ‘La%’.

  1. Explain ACID rule of thumb for transactions.

Answer: Transaction must be Atomic (it is one unit of work and does not dependent on previous and following transactions), Consistent (data is either committed or roll back, no “in-between” case where something has been updated and something hasn’t), Isolated (no transaction sees the intermediate results of the current transaction), Durable (the values persist if the data had been committed even if the system crashes right after).

  1. What connections does Microsoft SQL Server support?

Answer: Windows Authentication (via Active Directory) and SQL Server authentication (via Microsoft SQL Server username and passwords).

  1. Which one is trusted and which one is un-trusted?

Answer: Windows Authentication is trusted because the username and password are checked with the Active Directory, the SQL Server authentication is untrusted, since SQL Server is the only verifier participating in the transaction.

  1. Why would you use un-trusted verification?

Answer: Web Services might use it, as well as non-Windows applications.

  1. What does the parameter Initial Catalog define inside Connection String?

Answer: The database name to connect to.

  1. What’s the data provider name to connect to Access database?

Answer: Microsoft.Access.

  1. What does Dispose method do with the connection object?

Answer: Deletes it from the memory.

  1. What is a pre-requisite for connection pooling?

Answer: Multiple processes must agree that they will share the same connection, where every parameter is the same, including the security settings.

More interview questions – there could be some overlap:


General Questions

1. Does C# support multiple-inheritance?
No, use interfaces instead.

2. When you inherit a protected class-level variable, who is it available to?
Classes in the same namespace.

3. Are private class-level variables inherited?
Yes, but they are not accessible. Although they are not visible or accessible via the class interface, they are inherited.

4. Describe the accessibility modifier “protected internal”.
It is available to derived classes and classes within the same Assembly (and naturally from the base class it’s declared in).

1. To do: Confirm the “within the same assembly” portion.

5. C# provides a default class constructor for me. I decide to write a constructor that takes a string as a parameter, but want to keep the constructor that has no parameter. How many constructors should I write?
Two. Once you write at least one constructor, C# cancels the freebie constructor, and now you have to write one yourself, even if there’s no implementation in it.

6. What’s the top .NET class that everything is derived from?
System.Object.

7. What does the term immutable mean?

1. answer the question.

8. What’s the difference between System.String and System.StringBuilder classes?
System.String is immutable. System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.

9. What’s the advantage of using System.Text.StringBuilder over System.String?
StringBuilder is more efficient in cases where there is a large amount of string manipulation. Strings are immutable, so each time it’s being operated on, a new instance is created.

10. Can you store multiple data types in System.Array?
No.

11. What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
The first one performs a deep copy of the array, the second one is shallow.

1. To do: improve the answer.

12. How can you sort the elements of the array in descending order?
By calling Sort() and then Reverse() methods.

13. What’s the .NET class that allows the retrieval of a data element using a unique key?
HashTable.

14. What class is underneath the SortedList class?
A sorted HashTable.

15. Will the finally block get executed if an exception has not occurred?­
Yes.

16. What’s the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception?
A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this case and just write catch {}.

1. To do: Bad question. Re-word.

17. Can multiple catch blocks be executed?
No. Once the proper catch code fires off, the control is transferred to the finally block (if there are any), and then whatever follows the finally block.

18. Explain the three services model commonly know as a three-tier application.
Presentation (UI), business (logic and underlying code) and data (from storage or other sources).

19. What is the role of the DataReader class in ADO.NET connections?
It returns a read-only dataset from the data source when the command is executed.

1. To do: Improve the answer.

Class Questions

20. How do you inherit from a class in C#?
Place a colon and then the name of the base class.

21. Can you prevent your class from being inherited by another class?
Yes. The keyword “sealed” will prevent the class from being inherited.

22. Can you allow a class to be inherited, but prevent the method from being over-ridden?
Yes. Just leave the class public and make the method sealed.

23. What’s an abstract class?
A class that cannot be instantiated. An abstract class is a class that must be inherited and have the methods overridden. An abstract class is essentially a blueprint for a class without any implementation.

24. When do you absolutely have to declare a class as abstract?

1. When at least one of the methods in the class is abstract.

2. When the class itself is inherited from an abstract class, but not all base abstract methods have been overridden.

25. What’s an interface class?
It’s an abstract class with public abstract methods all of which must be implemented in the inherited classes.

26. Why can’t you specify the accessibility modifier for methods inside the interface?
They all must be public. Therefore, to prevent you from getting the false impression that you have any freedom of choice, you are not allowed to specify any accessibility, it’s public by default.

1. To do: Clean up this answer.

27. Can you inherit multiple interfaces?
Yes, why not.

1. To do: Need a better answer.

28. And if they have conflicting method names?
It’s up to you to implement the method inside your own class, so implementation is left entirely up to you. This might cause a problem on a higher-level scale if similarly named methods from different interfaces expect different data, but as far as compiler cares you’re okay.

29. What’s the difference between an interface and abstract class?
In an interface class, all methods must be abstract. In an abstract class some methods can be concrete. In an interface class, no accessibility modifiers are allowed, which is ok in an abstract class.

30. What is the difference between a Struct and a Class?
Structs are value-type variables and are thus saved on the stack -> additional overhead but faster retrieval. Another difference is that structs CANNOT inherit. (questions courtesy of Eyal)

Method and Property Questions

31. What’s the implicit name of the parameter that gets passed into the set method/property of a class?
value. The data type of the value parameter is defined by whatever data type the property is declared as.

32. What does the keyword “virtual” declare for a method or property?
The method or property can be overridden.

33. How is method overriding different from method overloading?
When overriding a method, you change the behavior of the method for the derived class. Overloading a method simply involves having another method with the same name within the class.

34. Can you declare an override method to be static if the original method is non-static?
No. The signature of the virtual method must remain the same, only the keyword virtual is changed to keyword override.

1. To do: Re-word the answer for better clarity.

35. Can you override private virtual methods?
No. Private methods are not accessible outside the class.

1. Original answer: No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access.

2. To do: Can a private method even be declared a virtual?

36. What are the different ways a method can be overloaded?
Different parameter data types, different number of parameters, different order of parameters.

37. If a base class has a number of overloaded constructors, and an inherited class has a number of overloaded constructors; can you enforce a call from an inherited constructor to a specific base constructor?
Yes, just place a colon, and then keyword base (parameter list to invoke the appropriate constructor) in the overloaded constructor definition inside the inherited class.

1. To do: question is to complex. It can be stated better.

38. Why is it a bad idea to throw your own exceptions?
Well, if at that point you know that an error has occurred, then why not write the proper code to handle that error instead of passing a new Exception object to the catch block?
Throwing your own exceptions signifies some design flaws in the project.

39. What’s a delegate?
A delegate object encapsulates a reference to a method.

40. What’s a multicast delegate?
It’s a delegate that points to and eventually fires off several methods.

1. To do: Need a better answer.

Assembly Questions

41. How is the DLL Hell problem solved in .NET?
Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly.

42. What are the ways to deploy an assembly?
An MSI installer, a CAB archive, and XCOPY command.

43. What is a satellite assembly?
When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.

44. What namespaces are necessary to create a localized application?
System.Globalization and System.Resources.

XML Documentation Questions

45. What’s the difference between // comments, /* */ comments and /// comments?
Single-line comments, multi-line comments, and XML documentation comments.

46. How do you generate documentation from the C# file commented properly with a command-line compiler?
Compile it with the /doc switch.

47.What is the difference between and XML documentation tag?
Single line code example and multiple-line code example.

1. To do: Bad question

48. Is XML case-sensitive?
Yes.

Debugging and Testing Questions

49. What debugging tools come with the .NET SDK?

1. CorDBG – command-line debugger. To use CorDbg, you must compile the original C# file using the /debug switch.

2. DbgCLR – graphic debugger. Visual Studio .NET uses the DbgCLR.

50. What does the “This” window show in the debugger?
It points to the object that’s pointed to by this reference. Object’s instance data is shown.

1. To do: Need a better answer.

51. What does assert() method do?
In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is false. The program proceeds without any interruption if the condition is true.

52. What’s the difference between the Debug class and Trace class?
Documentation looks the same. Use Debug class for debug builds, use Trace class for both debug and release builds.

53. Why are there five tracing levels in System.Diagnostics.TraceSwitcher?
The tracing dumps can be quite verbose. For applications that are constantly running you run the risk of overloading the machine and the hard drive. Five levels range from None to Verbose, allowing you to fine-tune the tracing activities.

54. Where is the output of TextWriterTraceListener redirected?
To the Console or a text file depending on the parameter passed to the constructor.

55. How do you debug an ASP.NET Web application?
Attach the aspnet_wp.exe process to the DbgClr debugger.

56. What are three test cases you should go through in unit testing?

1. Positive test cases (correct data, correct output).

2. Negative test cases (broken or missing data, proper handling).

3. Exception test cases (exceptions are thrown and caught properly).

57. Can you change the value of a variable while debugging a C# application?
Yes. If you are debugging via Visual Studio.NET, just go to Immediate window.

ADO.NET and Database Questions

58. What are advantages and disadvantages of Microsoft-provided data provider classes in ADO.NET?
SQLServer.NET data provider is high-speed and robust, but requires SQL Server license purchased from Microsoft. OLE-DB.NET is universal for accessing other sources, like Oracle, DB2, Microsoft Access and Informix. OLE-DB.NET is a .NET layer on top of the OLE layer, so it’s not as fastest and efficient as SqlServer.NET.

59. What is the wildcard character in SQL?
Let’s say you want to query database with LIKE for all employees whose name starts with La. The wildcard character is %, the proper query with LIKE would involve ‘La%’.

60. Explain ACID rule of thumb for transactions.
A transaction must be:

1. Atomic - it is one unit of work and does not dependent on previous and following transactions.

2. Consistent - data is either committed or roll back, no “in-between” case where something has been updated and something hasn’t.

3. Isolated - no transaction sees the intermediate results of the current transaction).

4. Durable - the values persist if the data had been committed even if the system crashes right after.

61. What connections does Microsoft SQL Server support?
Windows Authentication (via Active Directory) and SQL Server authentication (via Microsoft SQL Server username and password).

62. Which one is trusted and which one is untrusted?
Windows Authentication is trusted because the username and password are checked with the Active Directory, the SQL Server authentication is untrusted, since SQL Server is the only verifier participating in the transaction.

1. To do: ask the question better.

63. Why would you use untrusted verificaion?
Web Services might use it, as well as non-Windows applications.

1. To do: answer better.

64. What does the Initial Catalog parameter define in the connection string?
The database name to connect to.

65. What is the data provider name to connect to an Access database?
Microsoft.Access.

66. What does the Dispose method do with the connection object?
Deletes it from the memory.

1. To do: answer better. The current answer is not entirely correct.

67. What is a pre-requisite for connection pooling?
Multiple processes must agree that they will share the same connection, where every parameter is the same, including the security settings. The connection string must be identical.