Test Status
      CSHARPRANDOMTEST
      (A) enum Day{Sunday= 01,Monday= 02,Tuesday= 03,Wednesday=04,Thursday= 05,Friday= 06,Saturday=07}
      (B) Day{Sunday= 01,Monday= 02,Tuesday= 03,Wednesday=04,Thursday= 05,Friday= 06,Saturday=07}
      (C) enumeration Day{Sunday= 01,Monday= 02,Tuesday= 03,Wednesday=04,Thursday= 05,Friday= 06,Saturday=07}
      (D) Day enum{Sunday= 01,Monday= 02,Tuesday= 03,Wednesday=04,Thursday= 05,Friday= 06,Saturday=07}
      (A) only one
      (B) more than one
      (C) only two
      (D) upto 10
      (A) using System;
      (B) using System.Collections.Generic;
      (C) using System.Windows.Forms;
      (D) All of the above are used
      (A) int[][] myArray;
      (B) int[,] myArray;
      (C) System.Array[2] myArray;
      (D) int[2] myArray;
      (A) HasCollision
      (B) HasErrorConflict
      (C) HasError
      (D) HasDataError
      (A) A reference to an object in a different process.
      (B) A strongly typed function pointer.
      (C) An inter-process message channel.
      (D) A light weight thread or process that can call a single method.
      (A) string strPath="c:\\abc.txt";
      (B) string strPath=@"c:\abc.txt";
      (C) string strPath="c:/abc.txt";
      (D) All 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) web.config
      (B) global.asax
      (C) webapplication.vsdisco
      (D) assemblyinfo.cs
      (A) The runtime checks to see that only one version of an assembly is on the machine at any one time.
      (B) The compiler offers compile time checking for backward compatibility.
      (C) .NET allows assemblies to specify the name AND the version of any assemblies they need to run.
      (D) It doesn.t.
      (A) Single-Dimensional
      (B) Multidimensional
      (C) Jazzed arrays
      (D) Jagged arrays
      (A) The nestedif statement
      (B) The #endif statement
      (C) The switch case statement
      (D) None of these
      (A) Both are Same
      (B) Convert.ToInt32 Can't Handle Null Values ,it will throws rgumentNullException error.
      (C) Int.Parse Can't Handle Null values , It will throws ArgumentNullException Error.
      (D) Both can Handle Null Values
      (A) It defines a class that inherits the public methods of A only.
      (B) It defines a class that inherits all the methods of A but the private members cannot be accessed.
      (C) Errors
      (D) a and b