Home / C# Programming / Control Instructions - c# :: Discussion

Discussion :: Control Instructions - c#

  1. Which of the following statements is correct?

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

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment