Test Status
      CSHARPRANDOMTEST
      (A) The nestedif statement
      (B) The #endif statement
      (C) The switch case statement
      (D) None of these
      (A) Polymorphism means multiple forms and different name
      (B) Polymorphism means multiple forms but one name
      (C) Polymorphism means single forms and single name
      (D) All of the above are true
      (A) It must be declared within a method
      (B) It represent a class object
      (C) It can be used anywhere in the program
      (D) It must accept a class
      (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) Period (.)
      (B) Colon (:)
      (C) Semicolon (;)
      (D) Comma (,)
      (A) By reference.
      (B) By value.
      (C) By address.
      (D) By memory.
      (A) It is used to initialize variables
      (B) It is used to define constants
      (C) It is used to define variables
      (D) None
      (A) Private Assemblies
      (B) Shared Assemblies
      (C) Protected Assemblies
      (D) Friend Assemblies
      (A) Convert converts the value, Parse is for parsing
      (B) Convert allows null values, Parse cannot
      (C) Both are same
      (D) None of these
      (A) Overloading
      (B) Multiplexing
      (C) Duplexing
      (D) Loading
      (A) int[][] myArray;
      (B) int[,] myArray;
      (C) System.Array[2] myArray;
      (D) int[2] myArray;
      (A) Close the connection
      (B) Temporary dispose the connection
      (C) Deletes it from the memory
      (D) All of the above
      (A) Managed code is the code that runs on top of Windows.
      (B) Managed code is the code that is written to target the services of the CLR.
      (C) Managed code is the code where resources are Garbage Collected.
      (D) Managed code is the code that is compiled by the JIT compilers.