Test Status
      CSHARPRANDOMTEST
      (A) It is used to initialize variables
      (B) It is used to define constants
      (C) It is used to define variables
      (D) None
      (A) Classes within the same assembly, and classes derived from the declaring class.
      (B) Internal methods can be only be called using reflection.
      (C) Only methods that are in the same class as the method in question.
      (D) Classes that are both in the same assembly and derived from the declaring class.
      (A) TestFixtureAttribute
      (B) TestClassAttribute
      (C) TestAttribute
      (D) NUnitTestClassAttribute
      (A) A constructor can be used to set default values and limit instantiation.
      (B) Destructors are used with classes as well as structures.
      (C) A class can have more than one destructor.
      (D) C# provides a copy constructor.
      (A) ExecuteQuery
      (B) ExecuteUpdate
      (C) ExecuteNonQuery
      (D) ExecuteCommand
      (A) Single-Dimensional
      (B) Multidimensional
      (C) Jazzed arrays
      (D) Jagged arrays
      (A) datareader
      (B) dataset
      (C) datatabel
      (D) all
      (A) Private Assemblies
      (B) Shared Assemblies
      (C) Protected Assemblies
      (D) Friend Assemblies
      (A) a double type to interger
      (B) a interger type to double
      (C) a value type to a reference type
      (D) a reference type to a value type
      (A) .NET class libraries
      (B) Common Language Infrastructure
      (C) Common Language Runtime
      (D) Common Type System
      (A) string strPath="c:\\abc.txt";
      (B) string strPath=@"c:\abc.txt";
      (C) string strPath="c:/abc.txt";
      (D) All of these