Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. if (a == 1||b == 2){} can be written as:
  2. A.
    if (a == 1)

         if (b == 2){}

    B.
    if (a == 1){}

         if (b == 2){}

    C.
    if (a == 1){}

         else if (b == 2){}

    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    none


Be The First To Comment