logo

CuriousTab

CuriousTab

Discussion


Home C# Programming Control Instructions Comments

  • Question
  • Which of the following statements is correct?


  • Options
  • A. It is not possible to extend the if statement to handle multiple conditions using the else-if arrangement.
  • B. The switch statement can include any number of case instances with two case statements having the same value.
  • C. A jump statement such as a break is required after each case block excluding the last block if it is a default statement.
  • D. The if statement selects a statement for execution based on the value of a Boolean expression.
  • E. C# always supports an implicit fall through from one case label to another.

  • Correct Answer
  • The if statement selects a statement for execution based on the value of a Boolean expression. 


  • Control Instructions problems


    Search Results


    • 1. What will be the output of the C#.NET code snippet given below?

      int val;
      for (val = -5; val <= 5; val++)
      {
          switch (val)
          {
              case 0:
                  Console.Write ("India"); 
                  break;
          }
          
          if (val > 0)
              Console.Write ("B"); 
          else if (val < 0)
              Console.Write ("X");
      }

    • Options
    • A. XXXXXIndia
    • B. IndiaBBBBB
    • C. XXXXXIndiaBBBBB
    • D. BBBBBIndiaXXXXX
    • E. Zero
    • Discuss
    • 2. Which of the following statements are correct?

      1. A switch statement can act on numerical as well as Boolean types.
      2. A switch statement can act on characters, strings and enumerations types.
      3. We cannot declare variables within a case statement if it is not enclosed by { }.
      4. The foreach statement is used to iterate through the collection to get the desired information and should be used to change the contents of the collection to avoid unpredictable side effects.
      5. All of the expressions of the for statement are not optional.

    • Options
    • A. 1, 2
    • B. 2, 3
    • C. 3, 5
    • D. 4, 5
    • E. None of these
    • Discuss
    • 3. Which of the following can be used to terminate a while loop and transfer control outside the loop?

      1. exit while
      2. continue
      3. exit statement
      4. break
      5. goto

    • Options
    • A. 1, 3
    • B. 2, 4
    • C. 3, 5
    • D. 4, 5
    • E. None of these
    • Discuss
    • 4. Which of the following statements are correct about a .NET Assembly?

      1. It is the smallest deployable unit.
      2. Each assembly has only one entry point - Main(), WinMain() or DLLMain().
      3. An assembly can be a Shared assembly or a Private assembly.
      4. An assembly can contain only code and data.
      5. An assembly is always in the form of an EXE file.

    • Options
    • A. 1, 2, 3
    • B. 2, 4, 5
    • C. 1, 3, 5
    • D. 1, 2
    • Discuss
    • 5. Code that targets the Common Language Runtime is known as

    • Options
    • A. Unmanaged
    • B. Distributed
    • C. Legacy
    • D. Managed Code
    • E. Native Code
    • Discuss
    • 6. What will be the output of the code snippet given below?

      int i;
      for(i = 0; i<=10; i++)
      {
          if(i == 4)
          {
              Console.Write(i + " "); continue;
          }
          else if (i != 4)
              Console.Write(i + " "); else
          break;
      }

    • Options
    • A. 1 2 3 4 5 6 7 8 9 10
    • B. 1 2 3 4
    • C. 0 1 2 3 4 5 6 7 8 9 10
    • D. 4 5 6 7 8 9 10
    • E. 4
    • Discuss
    • 7. Which of the following statements are correct about the C#.NET code snippet given below?

      if (age > 18 && no < 11)
          a = 25;
      1. The condition no < 11 will be evaluated only if age > 18 evaluates to True.
      2. The statement a = 25 will get executed if any one condition is True.
      3. The condition no < 11 will be evaluated only if age > 18 evaluates to False.
      4. The statement a = 25 will get executed if both the conditions are True.
      5. && is known as a short circuiting logical operator.

    • Options
    • A. 1, 3
    • B. 2, 5
    • C. 1, 4, 5
    • D. 3, 4, 5
    • E. None of these
    • Discuss
    • 8. What will be the output of the C#.NET code snippet given below?

      int i = 2, j = i;
      if (Convert.ToBoolean((i | j & 5) & (j - 25 * 1)))
          Console.WriteLine(1); 
      else
          Console.WriteLine(0);

    • Options
    • A. 0
    • B. 1
    • C. Compile Error
    • D. Run time Error
    • Discuss
    • 9. What will be the output of the C#.NET code snippet given below?

      char ch = Convert.ToChar ('a' | 'b' | 'c'); 
      switch (ch)
      {
          case 'A': 
          case 'a':
          Console.WriteLine ("case A | case a");
          break;
          
          case 'B': 
          case 'b':
          Console.WriteLine ("case B | case b");
          break;
          
          case 'C':
          case 'c':
          case 'D':
          case 'd':
          Console.WriteLine ("case D | case d");
          break;
      }

    • Options
    • A. case A | case a
    • B. case B | case b
    • C. case D | case d
    • D. Compile Error
    • E. No output
    • Discuss
    • 10. Which of the following statements is correct about the C#.NET code snippet given below?

      int i, j, id = 0; switch (id)
      { 
          case i:
              Console.WriteLine("I am in Case i");
              break; 
          
          case j:
              Console.WriteLine("I am in Case j");
              break;
      }

    • Options
    • A. The compiler will report case i and case j as errors since variables cannot be used in cases.
    • B. Compiler will report an error since there is no default case in the switch case statement.
    • C. The code snippet prints the result as "I am in Case i"".
    • D. The code snippet prints the result as "I am in Case j".
    • E. There is no error in the code snippet.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment