Home / C# Programming / Control Instructions - c# :: General Questions

C# Programming :: Control Instructions - c#

  1. 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 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 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.

     

  2. A.

    1, 3

    B.

    2, 5

    C.

    1, 4, 5

    D.

    3, 4, 5

    E.

    None of these

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. 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.

  4. A.
    1, 2
    B.
    2, 3
    C.
    3, 5
    D.
    4, 5
    E.
    None of these

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Which of the following statements is correct about the C#.NET code snippet given below?

     switch (id)
     {   
       case 6:       
          grp = "Grp B";      
          break;       
       
        case 13:      
          grp = "Grp D";   
          break;        
       
         case 1:     
          grp = "Grp A";     
          break;          
    
         case ls > 20:       
           grp = "Grp E";        
           break ;        
    
          case Else:     
            grp = "Grp F";     
            break; 
    }
    

  6. A.

    Compiler will report an error in case ls > 20 as well as in case Else.

    B.

    There is no error in this switch case statement.

    C.

    Compiler will report an error only in case Else.

    D.

    Compiler will report an error as there is no default case.

    E.

    The order of the first three cases should be case 1, case 6, case 13 (ascending).

    View Answer

    Workspace

    Discuss Discuss in Forum


  7.  

    Which of the following is another way to rewrite the code snippet given below?

    int a = 1, b = 2, c = 0;
     if (a 

     

  8. A.
    int a = 1, b = 2, c = 0; 
    c = a 0;
    B.
     int a = 1, b = 2, c = 0;
     a 0;
    C.
     int a = 1, b = 2, c = 0;
     a 0 ? 0 : 0;
    D.
     int a = 1, b = 2, c = 0;
     a return (c): return (0);
    E.
     int a = 1, b = 2,c = 0;
     c = a 0;

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Which of the following statements are correct?

    1. The switch statement is a control statement that handles multiple selections and enumerations by passing control to one of the case statements within its body.
    2. The goto statement passes control to the next iteration of the enclosing iteration statement in which it appears.
    3. Branching is performed using jump statements which cause an immediate transfer of the program control.
    4. A common use of continue is to transfer control to a specific switch-case label or the default label in a switch statement.
    5. The do statement executes a statement or a block of statements enclosed in {} repeatedly until a specified expression evaluates to false.

  10. A.
    1, 2, 4
    B.
    1, 3, 5
    C.
    2, 3, 4
    D.
    3, 4, 5
    E.
    None of these

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. 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 will get evaluated only if age > 18 evaluates to False.
    2. The condition no will get evaluated if age > 18 evaluates to True.
    3. The statement a = 25 will get evaluated if any one one of the two conditions is True.
    4. || is known as a short circuiting logical operator.
    5. The statement a = 25 will get evaluated only if both the conditions are True.

     

  12. A.

    1, 4, 5

    B.

    2, 4

    C.

    1, 3, 4

    D.

    2, 3, 5

    E.

    None of these

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. What will be the output of the code snippet given below?

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

  14. 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

    View Answer

    Workspace

    Discuss Discuss in Forum


  15. Which of the following loop correctly prints the elements of the array?

    char[ ] arr = new char[ ] {'k', 'i','C', 'i','t'} ;

     

  16. A.
     do
     {   
           Console.WriteLine((char) i);  
     } 
      while (int i = 0; i 
    B.
    foreach (int i in arr) 
    {  
       Console.WriteLine((char) i); 
    }
    C.
     for (int i = 0; i char) i); 
     }

     

    D.
     while (int i = 0; i char) i); 
     }
    
    E.
     do
     {   
         Console.WriteLine((char) i);  
     }  
     until (int i = 0; i 

    View Answer

    Workspace

    Discuss Discuss in Forum


  17. 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;
     }
    

  18. 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.

    View Answer

    Workspace

    Discuss Discuss in Forum