logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Enumerations See What Others Are Saying!
  • Question
  • Which of the following statements are correct about the C#.NET code snippet given below?

    namespace CuriousTabConsoleApplication
    ( 
    class Sample
    { 
        private enum color : int
        { 
            red, 
            green, 
            blue
        }
        public void fun()
        {
            Console.WriteLine(color.red); 
        }
    }
    class Program
    { 
        static void Main(string[ ] args)
        { 
            // Use enum color here
        } 
    } 
    }
    1. To define a variable of type enum color in Main(), we should use the statement, color c; .
    2. enum color being private it cannot be used in Main().
    3. We must declare enum color as public to be able to use it outside the class Sample.
    4. To define a variable of type enum color in Main(), we should use the statement, Sample.color c; .
    5. We must declare private enum color outside the class to be able to use it in Main().


  • Options
  • A. 1, 2, 3
  • B. 2, 3, 4
  • C. 3, 4
  • D. 4, 5

  • Correct Answer
  • 2, 3, 4 


  • More questions

    • 1. All code inside finally block is guaranteed to execute irrespective of whether an exception occurs in the protected block or not.

    • Options
    • A. True
    • B. False
    • Discuss
    • 2. Which of the following ways to create an object of the Sample class given below will work correctly?

      class Sample
      {
          int i;
          Single j;
          double k;
          public Sample (int ii, Single jj, double kk)
          {
              i = ii;
              j = jj;
              k = kk;
          } 
      }

    • Options
    • A. Sample s1 = new Sample();
    • B. Sample s1 = new Sample(10);
    • C. Sample s2 = new Sample(10, 1.2f);
    • D. Sample s3 = new Sample(10, 1.2f, 2.4);
    • E. Sample s1 = new Sample(, , 2.5);
    • Discuss
    • 3. Which of the following will be the correct output for the C#.NET program given below?

      namespace CuriousTabConsoleApplication
      { 
          class SampleProgram
          {
              static void Main(string[] args)
              { 
                  int num = 1;
                  funcv(num); 
                  Console.Write(num + ", "); 
                  funcr(ref num); 
                  Console.Write(num + ", ");
              }
              static void funcv(int num)
              { 
                  num = num + 10; Console.Write(num + ", ");
              }
              static void funcr (ref int num)
              { 
                  num = num + 10; Console.Write(num + ", ");
              } 
          } 
      }

    • Options
    • A. 1, 1, 1, 1,
    • B. 11, 1, 11, 11,
    • C. 11, 11, 11, 11,
    • D. 11, 11, 21, 11,
    • E. 11, 11, 21, 21,
    • Discuss
    • 4. Which of the following operators cannot be overloaded?

      1. true
      2. false
      3. new
      4. ~
      5. sizeof

    • Options
    • A. 1, 3
    • B. 2, 4
    • C. 3, 5
    • D. All of the above
    • Discuss
    • 5. Which of the following is the correct output for the C#.NET program given below?

      int i = 20 ;
      for( ; ; )
      {
          Console.Write(i + " "); 
          if (i >= -10)
              i -= 4; 
          else 
              break;
      }

    • Options
    • A. 20 16 12 84 0 -4 -8
    • B. 20 16 12 8 4 0
    • C. 20 16 12 8 4 0 -4 -8 -12
    • D. 16 12 8 4 0
    • E. 16 8 0 -8
    • Discuss
    • 6. In an inheritance chain which of the following members of base class are accessible to the derived class members?

      1. static
      2. protected
      3. private
      4. shared
      5. public

    • Options
    • A. 1, 3
    • B. 2, 5
    • C. 3, 4
    • D. 4, 5
    • Discuss
    • 7. Which of the following are value types?

      1. Integer
      2. Array
      3. Single
      4. String
      5. Long

    • Options
    • A. 1, 2, 5
    • B. 1, 3, 5
    • C. 2, 4
    • D. 3, 5
    • Discuss
    • 8. Which of the following CANNOT occur multiple number of times in a program?

    • Options
    • A. namespace
    • B. Entrypoint
    • C. Class
    • D. Function
    • E. Subroutine
    • Discuss
    • 9. Which of the following statement correctly assigns a value 33 to a variable c?

      byte a = 11, b = 22, c;


    • Options
    • A. c = (byte) (a + b);
    • B. c = (byte) a + (byte) b;
    • C. c = (int) a + (int) b;
    • D. c = (int)(a + b);
    • E. c = a + b;
    • Discuss
    • 10. An enum can be declared inside a class, struct, namespace or interface.

    • Options
    • A. True
    • B. False
    • Discuss


    Comments

    There are no comments.

Enter a new Comment