Adsnese

Ad

Showing posts with label c# technical interview.. Show all posts
Showing posts with label c# technical interview.. Show all posts

Tuesday, May 6, 2008

Wednesday, December 5, 2007

C# Interview Questions -7

General Questions

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 model 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.

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 .

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.

3. What’s the implicit name of the parameter that gets passed into the class’ set method?
Value, and it’s datatype depends on whatever variable we’re changing.

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

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

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

7. 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.

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

9. 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?
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.

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

11. How’s method overriding different from overloading?
When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class.

12. What does the keyword virtual mean in the method definition?
The method can be over-ridden.

13. Can you declare the override method static while the original method is non-static?
No, you can’t, the signature of the virtual method must remain the same, only the keyword virtual is changed to keyword override.

14. Can you override private virtual methods?
No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access.

15. Can you prevent your class from being inherited and becoming a base class for some other classes?
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.

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

17. What’s an abstract class?
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.

18. When do you absolutely have to declare a class as abstract (as opposed to free-willed educated choice or decision based on UML diagram)?
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.

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

20. 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.

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

22. 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.

23. What’s the difference between an interface and abstract class?
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.

24. How can you overload a method?
Different parameter data types, different number of parameters, different order of parameters.

25. 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?
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.

26. 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.

27. Is it namespace class or class namespace?
The .NET class library is organized into namespaces. Each namespace contains a functionally related group of classes so natural namespace comes first.


C# Interview Questions-8

The Questions\Tasks:

  1. Name 10 C# keywords.
  2. What is public accessibility?
  3. What is protected accessibility?
  4. What is internal accessibility?
  5. What is protected internal accessibility?
  6. What is private accessibility?
  7. What is the default accessibility for a class?
  8. What is the default accessibility for members of an interface?
  9. What is the default accessibility for members of a struct?
  10. Can the members of an interface be private?
  11. Methods must declare a return type, what is the keyword used when nothing is returned from the method?
  12. Class methods to should be marked with what keyword?
  13. Write some code using interfaces, virtual methods, and an abstract class.
  14. A class can have many mains, how does this work?
  15. Does an object need to be made to run main?
  16. Write a hello world console application.
  17. What are the two return types for main?
  18. What is a reference parameter?
  19. What is an out parameter?
  20. Write code to show how a method can accept a varying number of parameters.
  21. What is an overloaded method?
  22. What is recursion?
  23. What is a constructor?
  24. If I have a constructor with a parameter, do I need to explicitly create a default constructor?
  25. What is a destructor?
  26. Can you use access modifiers with destructors?
  27. What is a delegate?
  28. Write some code to use a delegate.
  29. What is a delegate useful for?
  30. What is an event?
  31. Are events synchronous of asynchronous?
  32. Events use a publisher/subscriber model. What is that?
  33. Can a subscriber subscribe to more than one publisher?
  34. What is a value type and a reference type?
  35. Name 5 built in types.
  36. string is an alias for what?
  37. Is string Unicode, ASCII, or something else?
  38. Strings are immutable, what does this mean?
  39. Name a few string properties.
  40. What is boxing and unboxing?
  41. Write some code to box and unbox a value type.
  42. What is a heap and a stack?
  43. What is a pointer?
  44. What does new do in terms of objects?
  45. How do you dereference an object?
  46. In terms of references, how do == and != (not overridden) work?
  47. What is a struct?
  48. Describe 5 numeric value types ranges.
  49. What is the default value for a bool?
  50. Write code for an enumeration.
  51. Write code for a case statement.
  52. Is a struct stored on the heap or stack?
  53. Can a struct have methods?
  54. What is checked { } and unchecked { }?
  55. Can C# have global overflow checking?
  56. What is explicit vs. implicit conversion?
  57. Give examples of both of the above.
  58. Can assignment operators be overloaded directly?
  59. What do operators is and as do?
  60. What is the difference between the new operator and modifier?
  61. Explain sizeof and typeof.
  62. What does the stackalloc operator do?
  63. Contrast ++count vs. count++.
  64. What are the names of the three types of operators?
  65. An operator declaration must include a public and static modifier, can it have other modifiers?
  66. Can operator parameters be reference parameters?
  67. 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
    Type information
    Overflow exception control
    Indirection and Address
  68. What does operator order of precedence mean?
  69. What is special about the declaration of relational operators?
  70. Write some code to overload an operator.
  71. What operators cannot be overloaded?
  72. What is an exception?
  73. Can C# have multiple catch blocks?
  74. Can break exit a finally block?
  75. Can continue exit a finally block?
  76. Write some try…catch…finally code.
  77. What are expression and declaration statements?
  78. A block contains a statement list {s1;s2;} what is an empty statement list?
  79. Write some if… else if… code.
  80. What is a dangling else?
  81. Is switch case sensitive?
  82. Write some code for a for loop.
  83. Can you have multiple control variables in a for loop?
  84. Write some code for a while loop.
  85. Write some code for do… while.
  86. Write some code that declares an array on ints, assigns the values: 0,1,2 to that array and use a foreach to do something with those values.
  87. Write some code for a collection class.
  88. Describe Jump statements: break, continue, and goto.
  89. How do you declare a constant?
  90. What is the default index of an array?
  91. What is array rank?
  92. Can you resize an array at runtime?
  93. Does the size of an array need to be defined at compile time.
  94. Write some code to implement a multidimensional array.
  95. Write some code to implement a jagged array.
  96. What is an ArrayList?
  97. Can an ArrayList be ReadOnly?
  98. Write some code that uses an ArrayList.
  99. Write some code to implement an indexer.
  100. Can properties have an access modifier?
  101. Can properties hide base class members of the same name?
  102. What happens if you make a property static?
  103. Can a property be a ref or out parameter?
  104. Write some code to declare and use properties.
  105. What is an accessor?
  106. Can an interface have properties?
  107. What is early and late binding?
  108. What is polymorphism
  109. What is a nested class?
  110. What is a namespace?
  111. Can nested classes use any of the 5 types of accessibility?
  112. Can base constructors can be private?
  113. object is an alias for what?
  114. What is reflection?
  115. What namespace would you use for reflection?
  116. What does this do? Public Foo() : this(12, 0, 0)
  117. Do local values get garbage collected?
  118. Is object destruction deterministic?
  119. Describe garbage collection (in simple terms).
  120. What is the using statement for?
  121. How do you refer to a member in the base class?
  122. Can you derive from a struct?
  123. Does C# supports multiple inheritance?
  124. All classes derive from what?
  125. Is constructor or destructor inheritance explicit or implicit? What does this mean?
  126. Can different assemblies share internal access?
  127. Does C# have “friendship”?
  128. Can you inherit from multiple interfaces?
  129. In terms of constructors, what is the difference between: public MyDerived() : base() an public MyDerived() in a child class?
  130. Can abstract methods override virtual methods?
  131. What keyword would you use for scope name clashes?
  132. Can you have nested namespaces?
  133. What are attributes?
  134. Name 3 categories of predefined attributes.
  135. What are the 2 global attributes.
  136. Why would you mark something as Serializable?
  137. Write code to define and use your own custom attribute.
  138. List some custom attribute scopes and possible targets.
  139. List compiler directives?
  140. What is a thread?
  141. Do you spin off or spawn a thread?
  142. What is the volatile keyword used for?
  143. Write code to use threading and the lock keyword.
  144. What is Monitor?
  145. What is a semaphore?
  146. What mechanisms does C# have for the readers, writers problem?
  147. What is Mutex?
  148. What is an assembly?
  149. What is a DLL?
  150. What is an assembly identity?
  151. What does the assembly manifest contain?
  152. What is IDLASM used for?
  153. Where are private assemblies stored?
  154. Where are shared assemblies stored?
  155. What is DLL hell?
  156. In terms of assemblies, what is side-by-side execution?
  157. Name and describe 5 different documentation tags.
  158. What is unsafe code?
  159. What does the fixed statement do?
  160. How would you read and write using the console?
  161. Give examples of hex, currency, and fixed point console formatting.
  162. Given part of a stack trace: aspnet.debugging.BadForm.Page_Load(Object sender, EventArgs e) +34. What does the +34 mean?
  163. Are value types are slower to pass as method parameters?
  164. How can you implement a mutable string?
  165. What is a thread pool?
  166. Describe the CLR security model.
  167. What’s the difference between camel and pascal casing?
  168. What does marshalling mean?
  169. What is inlining?
  170. List the differences in C# 2.0.
  171. What are design patterns?
  172. Describe some common design patterns.
  173. What are the different diagrams in UML? What are they used for?


Thursday, September 27, 2007

C# Interview Questions -6

Question 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.

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

Question 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.
Question 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.

Question What is the wildcard character in SQL?
Answer: 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%’.

Question 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).

Question What connections does Microsoft SQL Server support?

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

Question Which one is trusted and which one is untrusted?
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.

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

Question What does the parameter Initial Catalog define inside Connection String? The database name to connect to.

Question What’s the data provider name to connect to Access database?
Answer: Microsoft.Access.

Question What does Dispose method do with the connection object?
Answer: Deletes it from the memory.

Question 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.


C# Interview Questions -5

Question What’s the difference between and XML documentation tag?
Answer: Single line code example and multiple-line code example.

Question Is XML case-sensitive?
Answer: Yes, so and are different elements.

Question 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.

Question 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.

Question 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.

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

Question 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.

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

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

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

Question 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).


C# Interview Questions -4

Question 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 {}.

Question 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.

Question 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.

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

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

Question 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.

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



Question 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.

Question What namespaces are necessary to create a localized application?
Answer: System.Globalization, System.Resources.

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

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


C# Interview Questions -3

Question 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.

Question How can you overload a method?
Answer: Different parameter data types, different number of parameters, different order of parameters.

Question 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.

Question 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.

Question 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.

Question Can you store multiple data types in System.Array?
Answer: No.

Question 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.

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

Question What’s the .NET datatype that allows the retrieval of data by a unique key?
Answer: HashTable.

Question What’s class SortedList underneath?
Answer: A sorted HashTable.

Question Will finally block get executed if the exception had not occurred?
Answer: Yes.


C# Interview Questions -2

Question 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.

Question 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.

Question 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.

Question 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.

Question 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.

Question 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.

Question 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.

Question Can you inherit multiple interfaces?
Answer: Yes, why not.



Question 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.


C# Interview Questions -1

Question: 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.

Question: 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++.

Question: Does C# support multiple inheritance?
Answer No, use interfaces instead.

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

Question 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.

Question 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).

Question 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.

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

Question 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.

Question What does the keyword virtual mean in the method definition?
Answer: The method can be over-ridden.

Question 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.

My Ad

.