C# Interview Questions 5

Average rating
(0 votes)
  1. What is the difference between shadow and override
  2. You have an event handler called MyEvent and you want to link the click event of control, MyButton, to use MyEvent, what is the code that will like them together?
  3. Which debugging window allows you to see the methods called in the order they were called?
  4. Which debugging window allows you to see all the name and values of all the variables in scope?
  5. What is wrapper class?is it available in c#?
  6. What is protected internal class in C#
  7. Which keyword is used of specify a class that cannot inherit by other class
  8. Can you create the instance for abstract classes
  9. Can we use Friend Classes or functions in Cthe way we use it in C++
  10. How we can use inheritance and polymorphisms in cprogramming?
  11. How to find exceptions in database
  12. How can objects be late bound in .NET?
  13. Where we can use DLL made in C#.Net
  14. What Datatypes does the RangeValidator Control support?
  15. Constructor is the method which is implicitly created when ever a class is instantiated. Why?
  16. Why multiple Inheritance is not possible in C#?
  17. Why strings are immutable?
  18. This is a Regular expression built for parsing string in vb.net and passed to Regex class. Dim are As Regex = New Regex(”,(?=([^””]*””[^””]*””)*(?![^””]*””))”) What is Cequivalent for this regular expression.
  19. How to convert ocx into DLL
  20. What is the main difference between pointer and delegate with examples?
  21. What is object pooling
  22. How do I read the information from web.config file?
  23. What is the default Function arguments?
  24. What is XML Schema?
  25. How can I check whether a dataset is empty or not in C#.net
  26. Is it possible to inherit a class that has only private constructor?
  27. How do you choose 1 entry point when Cproject has more Main( ) method?
  28. The compiler throws an error if XML comments is not well formed
  29. Which of the following is not a Creserved keyword
  30. By declaring a base class function as virtual we allow the function to be overridden in subclasses
  31. Which of the following can not be declared as virtual
  32. Sealed class can be inherited
  33. Which of the following statements is not true for interfaces
  34. It is not permitted to declare modifier on the members in an interface definition
  35. Interface members can not be declared as
  36. Which method is implicitly called when an object is created
  37. Which of the following statement is invalid with regards to constructor
  38. Constructors can not be static
  39. It is perfectly legitimate to throw exceptions from catch and finally blocks
  40. It is not possible for a delegate to wrap more than 1 methos
  41. In Cevents are actually a special form of delegates
  42. Which preprocessor directive are used to mark that contain block of code is to be treated as a single block
  43. How are the attributes specified in C#
  44. For performing repeated modification on string which class is preferred
  45. In order to use stringbuilder in our class we need to refer
  46. Which of the following is not a member of stringbuilder
  47. Which method is actually called ultimately when Console.WriteLine( ) is invoked
  48. What happens when you create an arraylist as ArrayList Arr=new ArrayList()
  49. What is the output of Vectors.RemoveAt(1)
  50. GetEnumerator( ) of Ienumerable interface returns
  51. How do you add objects to hashtable
  52. If A.equals(B) is true then A.getHashcode & B.getHashCode must always return same hash code
  53. The assembly class is defined in
  54. What is the first step to do anything with assembly
  55. How do you load assembly to running process
  56. Assemblies cannot be loaded side by side
  57. Application Isolation is assured using
  58. Where does the version dependencies recorded
  59. How do you refer parent classes in C#
  60. Which attribute you generally find on top of main method
  61. How do you make a class not instantiable
  62. In a multilevel hierarchy how are the constructors are called
  63. Which utility is used to create resource file
  64. What is the extension of a resource file
  65. A shared assembly must have a strong name to uniquely identify the assembly
  66. Public policy applies to
  67. Stream object can not be initialized
  68. Which of the following has stream as the base class
  69. Which class use to Read/Write data to memory
  70. To Configure .Net for JIT activation what do you do
  71. Which method is used by COM+ to ascertain whether class can be pooled
  72. How do you import Activex component in to .NET
  73. Net Remoting doesn’t allow creating stateless & stateful Remote objects
  74. Windows services created by Capp run only
  75. The Ckeyword int maps to which .NET type
  76. What is an indexer in C#
  77. In the following cases which is not function overloading
  78. How to implement multiple inheritence in C#
  79. In Ca technique used to stream the data is known as
  80. Can static methods be overridable?
  81. What is the use of fixed statement
  82. What is the order of destructors called in a polymorphism hierarchy
  83. How can you sort the elements of the array in descending order
  84. Is it possible to Override Private Virtual methods
  85. What does the volatile modifier do
  86. What is the Cequivalent of System.Single
  87. A single line comments are implemented by
  88. Code running under the control of CLR is often referred as
  89. Platform specific code is obtained when
  90. Intermediate Language also facilitates language interoperability
  91. Which are the important features of IL
  92. NET interfaces are not derived from IUnknown & they do not have associated GUID’s
  93. Code written in C cannot used in which of the languages
  94. It is not possible to debug the classes written in other .Net languages in a Cproject.
  95. Which of the following is not a subclass of Value Type class
  96. Which of the following is not a subclass of reference type
  97. Which is .NET s answer to Memory Management
  98. .NET run time relies on the object reference counts to manage memory
  99. What are Namespaces
  100. Which of the following keyword is used along with Main function in C#

=================================================================================================

 

  • what is the main difference between delegate and an event in c#?
  • How to use HASH TABLE,ARRAYLIST in c# explain with example?
  • Assemblies are of the following types:
  • What is the difference between shadow and override
  • What is the top .NET class that everything is derived from?
  • 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?
  • When you inherit a protected class-level variable, who is it available to?
  • Does C# support multiple inheritance?
  • How do you inherit from a class in C#?
  • What is an abstract class?
  • What does the keyword virtual mean in the method definition?
  • How’s method overriding different from overloading?
  • What’s the top .NET class that everything is derived from?
  • Describe the accessibility modifier protected internal.
  • Are private class-level variables inherited?
  • When you inherit a protected class-level variable, who is it available to?
  • Does C# support multiple inheritance?
  • How do you inherit from a class in C#?
  • What’s the implicit name of the parameter that gets passed into the class’ set method?
  • Is it mandatory to implement all the methods which are there in abstract class if we inherit that abstract class..?

=============================================================================================================

 

  1. Does C# support multiple-inheritance?
    No.
     
  2. Who is a protected class-level variable available to?
    It is available to any sub-class (a class inheriting this class).
     
  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 classes that are within the same assembly and derived from the specified base class. 
     
  5. What’s the top .NET class that everything is derived from?
    System.Object. 
     
  6. What does the term immutable mean?
    The data value may not be changed.  Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory.
     
     
  7. What’s the difference between System.String and System.Text.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. 
     
  8. 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 a string is changed, a new instance in memory is created.
     
  9. Can you store multiple data types in System.Array?
    No. 
     
  10. What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
    The Clone() method returns a new array (a shallow copy) object containing all the elements in the original array.  The CopyTo() method copies the elements into another existing array.  Both perform a shallow copy.  A shallow copy means the contents (each array element) contains references to the same object as the elements in the original array.  A deep copy (which neither of these methods performs) would create a new instance of each element’s object, resulting in a different, yet identacle object.
     
  11. How can you sort the elements of the array in descending order?
    By calling Sort() and then Reverse() methods. 
     
  12. What’s the .NET collection class that allows an element to be accessed using a unique key?
    HashTable. 
     
  13. What class is underneath the SortedList class?
    A sorted HashTable. 
     
  14. Will the finally block get executed if an exception has not occurred?­
    Yes.
     
  15. What’s the C# syntax to catch 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 {}. 
     
  16. Can multiple catch blocks be executed for a single try statement?
    No.  Once the proper catch block processed, control is transferred to the finally block (if there are any). 
     
  17. Explain the three services commonly know as a three-tier application.
    Presentation (UI), Business (logic and underlying code) and Data (from storage or other sources). 
     

Class Questions

  1. What is the syntax to inherit from a class in C#?
    Place a colon and then the name of the base class.
    Example: class MyNewClass : MyBaseClass 
     
  2. Can you prevent your class from being inherited by another class?
    Yes.  The keyword “sealed” will prevent the class from being inherited. 
     
  3. 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. 
     
  4. 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. 
     
  5. When do you absolutely have to declare a class as abstract?
    1. When the class itself is inherited from an abstract class, but not all base abstract methods have been overridden.
    2. 
    When at least one of the methods in the class is abstract. 
     
  6. What is an interface class?
    Interfaces, like classes, define a set of properties, methods, and events. But unlike classes, interfaces do not provide implementation. They are implemented by classes, and defined as separate entities from classes. 
     
  7. Why can’t you specify the accessibility modifier for methods inside the interface?
    They all must be public, and are therefore public by default. 
     
  8. Can you inherit multiple interfaces?
    Yes.  .NET does support multiple interfaces. 
     
  9. What happens if you inherit multiple interfaces and 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.
    To Do: Investigate 
     
  10. What’s the difference between an interface and abstract class?
    In an interface class, all methods are abstract - there is no implementation.  In an abstract class some methods can be concrete.  In an interface class, no accessibility modifiers are allowed.  An abstract class may have accessibility modifiers. 
     
  11. 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. 
     

Method and Property Questions

  1. 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. 
     
  2. What does the keyword “virtual” declare for a method or property?
    The method or property can be overridden. 
     
  3. 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. 
     
  4. Can you declare an override method to be static if the original method is not static?
    No.  The signature of the virtual method must remain the same.  (Note: Only the keyword virtual is changed to keyword override) 
     
  5. What are the different ways a method can be overloaded?
    Different parameter data types, different number of parameters, different order of parameters. 
     
  6. If a base class has a number of overloaded constructors, and an inheriting 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.
     

Events and Delegates

  1. What’s a delegate?
    A delegate object encapsulates a reference to a method. 
     
  2. What’s a multicast delegate?
    A delegate that has multiple handlers assigned to it.  Each assigned handler (method) is called.
     

=========================================================================================================  1.Does C# support multiple-inheritance?
No. But you can use Interfaces.
2.Where is a protected class-level variable available?
It is available to any sub-class derived from base class

3.Are private class-level variables inherited?
Yes, but they are not accessible.

4.Describe the accessibility modifier “protected internal”.
It is available to classes that are within the same assembly and derived from the specified base class.

6.Which class is at the top of .NET class hierarchy?
System.Object.

7.What does the term immutable mean?
The data value may not be changed.
Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory.

8.What’s the difference between System.String and System.Text.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 a string is changed, a new instance in memory 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 Clone() method returns a new array (a shallow copy) object containing all the elements in the original array. The CopyTo() method copies the elements into another existing array. Both perform a shallow copy. A shallow copy means the contents (each array element) contains references to the same object as the elements in the original array. A deep copy (which neither of these methods performs) would create a new instance of each element’s object, resulting in a different, yet identacle object.

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 collection class that allows an element to be accessed 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# syntax to catch 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 {}.

17.Can multiple catch blocks be executed for a single try statement?
No. Once the proper catch block processed, control is transferred to the finally block .

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

=============================================================================================================

  1. What’s the advantage of using System.Text.StringBuilder over System.String? 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.
  2. Can you store multiple data types in System.Array? No.
  3. 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.
  4. How can you sort the elements of the array in descending order? By calling Sort() and then Reverse() methods.
  5. What’s the .NET datatype that allows the retrieval of data by a unique key? HashTable.
  6. What’s class SortedList underneath? A sorted HashTable.
  7. Will finally block get executed if the exception had not occurred? Yes.
  8. 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 {}.
  9. 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.
  10. 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.
  11. What’s a delegate? A delegate object encapsulates a reference to a method. In C++ they were referred to as function pointers.
  12. What’s a multicast delegate? It’s a delegate that points to and eventually fires off several methods.
  13. How’s 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.
  14. What are the ways to deploy an assembly? An MSI installer, a CAB archive, and XCOPY command.
  15. What’s 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.
  16. What namespaces are necessary to create a localized application? System.Globalization, System.Resources.
  17. What’s the difference between // comments, /* */ comments and /// comments? Single-line, multi-line and XML documentation comments.
  18. How do you generate documentation from the C# file commented properly with a command-line compiler? Compile it with a /doc switch.
  19. What’s the difference between <c> and <code> XML documentation tag? Single line code example and multiple-line code example.
  20. Is XML case-sensitive? Yes, so <Student> and <student> are different elements.
  21. What debugging tools come with the .NET SDK? 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.
  22. 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.
  23. What does assert() 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.
  24. 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.
  25. Why are there five tracing levels in System.Diagnostics.TraceSwitcher? 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.
  26. Where is the output of TextWriterTraceListener redirected? To the Console or a text file depending on the parameter passed to the constructor.
  27. How do you debug an ASP.NET Web application? Attach the aspnet_wp.exe process to the DbgClr debugger.
  28. What are three test cases you should go through in unit testing? 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).
  29. 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.
  30. Explain the three services (three-tier application). Presentation (UI), business (logic and underlying code) and data (from storage or other sources).
  31. 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, 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.
  32. What’s 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.
  33. 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%’.
  34. Explain ACID rule of thumb for transactions. 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).
  35. What connections does Microsoft SQL Server support? Windows Authentication (via Active Directory) and SQL Server authentication (via Microsoft SQL Server username and passwords).
  36. 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.
  37. Why would you use untrusted verificaion? Web Services might use it, as well as non-Windows applications.
  38. What does the parameter Initial Catalog define inside Connection String? The database name to connect to.
  39. What’s the data provider name to connect to Access database? Microsoft.Access.
  40. What does Dispose method do with the connection object? Deletes it from the memory.
  41. 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.

============================================================================================================

Written by Riley Perry from Distributed Development

1.     Name 10 C# keywords. abstract, event, new, struct, explicit, null, base, extern, object, this2.     What is public accessibility? There are no access restrictions.3.     What is protected accessibility? Access is restricted to types derived from the containing class.4.     What is internal accessibility? A member marked internal is only accessible from files within the same assembly.5.     What is protected internal accessibility?Access is restricted to types derived from the containing class or from files within the same assembly.6.     What is private accessibility?Access is restricted to within the containing class.7.     What is the default accessibility for a class?internal for a top level class, private for a nested one.8.     What is the default accessibility for members of an interface?public 9.     What is the default accessibility for members of a struct?private10. Can the members of an interface be private?No.11. Methods must declare a return type, what is the keyword used when nothing is returned from the method?void12. Class methods to should be marked with what keyword?static21. What is an overloaded method?An overloaded method has multiple signatures that are different.22. What is recursion?Recursion is when a method calls itself.23. What is a constructor?A constructor performs initialisation for an object (including the struct type) or class.24. If I have a constructor with a parameter, do I need to explicitly create a default constructor?Yes25. What is a destructor?A C# destuctor is not like a C++ destructor. It is actually an override for Finalize(). This is called when the garbage collector discovers that the object is unreachable. Finalize() is called before any memory is reclaimed.26. Can you use access modifiers with destructors? No27. What is a delegate? A delegate in C# is like a function pointer in C or C++. A delegate is a variable that calls a method indirectly, without knowing its name. Delegates can point to static or/and member functions. It is also possible to use a multicast delegate to point to multiple functions.28. Write some code to use a delegate.

Member function with a parameter

34. What is a value type and a reference type? A reference type is known by a reference to a memory location on the heap. A value type is directly stored in a memory location on the stack. A reference type is essentially a pointer, dereferencing the pointer takes more time than directly accessing the direct memory location of a value type.35. Name 5 built in types. Bool, char, int, byte, double36. string is an alias for what? System.String37. Is string Unicode, ASCII, or something else? Unicode38. Strings are immutable, what does this mean? Any changes to that string are in fact copies.39. Name a few string properties. trim, tolower, toupper, concat, copy, insert, equals, compare.40. What is boxing and unboxing?Converting a value type (stack->heap) to a reference type (heap->stack), and vise-versa.41. Write some code to box and unbox a value type. 42. What is a heap and a stack?There are 2 kinds of heap – 1: a chunk of memory where data is stored and 2: a tree based data structure. When we talk about the heap and the stack we mean the first kind of heap.  The stack is a LIFO data structure that stores variables and flow control information. Typically each thread will have its own stack.43. What is a pointer?A pointer is a reference to a memory address.44. What does new do in terms of objects? Initializes an object.45. How do you dereference an object? Set it equal to null.46. In terms of references, how do == and != (not overridden) work?They check to see if the references both point to the same object.47. What is a struct?Unlike in C++ a struct is not a class – it is a value type with certain restrictions. It is usually best to use a struct to represent simple entities with a few variables. Like a Point for example which contains variables x and y.48. Describe 5 numeric value types ranges.sbyte -128 to 127, byte 0 – 255, short -32,768 to 32,767, int -2,147,483,648 to 2,147,483,647, ulong 0 to 18,446,744,073,709,551,61549. What is the default value for a bool? false50. Write code for an enumeration. public enum animals {Dog=1,Cat,Bear};52. Is a struct stored on the heap or stack? Stack53. Can a struct have methods?Yes54. What is checked { } and unchecked { }?55. Can C# have global overflow checking? Yes56. What is explicit vs. implicit conversion?When converting from a smaller numeric type into a larger one the cast is implicit. An example of when an explicit cast is needed is when a value may be truncated. 57. Give examples of both of the above.// Implicitshort shrt = 400;int intgr = shrt; // Explicitshrt = (short) intgr;58. Can assignment operators be overloaded directly?No59. What do operators is and as do? as acts is like a cast but returns a null on conversion failure.  Is comares an object to a type and returns a boolean.60. What is the difference between the new operator and modifier?The new operator creates an instance of a class whereas the new modifier is used to declare a method with the same name as a method in one of the parent classes.61. Explain sizeof and typeof.typeof  obtains the System.Type object for a type and sizeof obtains the size of a type.62. What doe the stackalloc operator do?Allocate a block of memory on the stack (used in unsafe mode).  63. Contrast ++count vs. count++.Some operators have temporal properties depending on their placement. E.g.double x;x = 2;Console.Write(++x);x = 2;Console.Write(x++);Console.Write(x);Returns 32364. What are the names of the three types of operators? Unary, binary, and conversion.65. An operator declaration must include a public and static modifier, can it have other modifiers?No66. Can operator parameters be reference parameters? No67. Describe an operator from each of these categories:
Arithmetic: +
Logical (boolean and bitwise): &
String concatenation: +
Increment, decrement: ++
Shift: >>
Relational: ==
Assignment: =
Member access: .
Indexing: []
Cast: ()
Conditional: ?:
Delegate concatenation and removal: +
Object creation: new
Type information: as
Overflow exception control: checked
Indirection and Address:
*68. What does operator order of precedence mean? Certain operators are evaluated before others. Brackets help to avoid confusion.69. What is special about the declaration of relational operators?Relational operators must be declared in pairs.140.       What is a thread? A thread is a the entity within a process that Windows schedules for . A thread has: 

  • The contents of a set of CPU registers representing the state of the processor.
  • 2 stacks, 1 for the thread to use in kernel mode, and 1 for user mode.
  • Private storage called Thread Local Storage for use by subsystems, run-time libraries, and DLLs.
  • A thread ID.

Threads sometimes have their own security context.141.       Do you spin off or spawn a thread? Spin off142.       What is the volatile keyword used for?It indicates a field can be modified by an external entity (thread, OS, etc.).144.       What is Monitor?Monitor is a class that has various functions for thread synchronization.145.       What is a semaphore? A resource management, synchronization, and locking tool.146.       What mechanisms does C# have for the readers, writers problem? System.Threading.ReaderWriterLock which has methods AcquireReaderLock, ReleaseReaderLock, AcquireWriterLock, and ReleaseWriterLock147.       What is Mutex?A Mutex object is used to guarantee only one thread can access a critical resource an any one time.148.       What is an assembly?Assemblies contain logical units of code in MSIL, metadata, and usually a manifest. Assemblies can be signed and the can dome in the form of a DLL or EXE.149.       What is a DLL? A set of callable functions, which can be dynamically loaded. 150.       What is an assembly identity?Assembly identity is name, version number, and optional culture, and optional public key to guarantee uniqueness.151.       What does the assembly manifest contain? Assembly manifest lists all names of public types and resources and their locations in the assembly.152.       What is IDLASM used for? Use IDLASM to see assembly internals. It disassembles into MSIL.153.       Where are private assemblies stored? Same folder as exe154.       Where are shared assemblies stored?The GAC 155.       What is DLL hell? DLLs, VBX or OCX files being unavailable or in the wrong versions. Applicatioins using say these older DLLs expect some behaviour which is not present.156.       In terms of assemblies, what is side-by-side ? An app can be configured to use different versions of an assembly simultaneously.158.       What is unsafe code?Unsafe code bypasses type safety and memory management. 159.       What does the fixed statement do? Prevents relocation of a variable by GC.160.       How would you read and write using the console?Console.Write, Console.WriteLine, Console.Readline 163.       Are value types are slower to pass as method parameters? Yes164.       How can you implement a mutable string? System.Text.StringBuilder165.       What is a thread pool? A thread pool is a means by which to control a number of threads simultaneously. Thread pools give us thread reuse, rather than creating a new thread every time.166.       Describe the CLR security .

From

http://msdn.microsoft.com/msdnmag/issues/02/09/SecurityinNET/default.aspxUnlike the old principal-based security, the CLR enforces security policy based on where code is coming from rather than who the user is. This , called code access security, makes sense in today’s environment because so much code is installed over the Internet and even a trusted user doesn’t know when that code is safe.”167.       What’s the difference between camel and pascal casing?PascalCasing, camelCasing168.       What does marshalling mean?

From

http://www.dictionary.net/marshalling“The process of packing one or more items of data into a message buffer, prior to transmitting that message buffer over a communication channel. The packing process not only collects together values which may be stored in non-consecutive memory locations but also converts data of different types into a standard representation agreed with the recipient of the message.”169.       What is inlining? From (Google web defintions)In-line expansion or inlining for short is a compiler optimization which “expands” a function call site into the actual implementation of the function which is called, rather than each call transferring control to a common piece of code. This reduces overhead associated with the function call, which is especially important for small and frequently called functions, and it helps call-site-specific compiler optimizations, especially constant propagation.”170.       List the differences in C# 2.0. ·        Generics·        Iterators·        Partial class definitions·        Nullable Types·        Anonymous methods·        :: operator·        Static classes static class members·        Extern keyword·        Accessor accessibility·        Covariance and Contravariance·        Fixed size buffers·        Fixed assemblies

·        #pragma warning