Home / CSE MCQs / R Programming MCQs :: Discussion

Discussion :: R Programming MCQs

  1. What would be the output of the following code ?

    x - 1:4
     y - 6:9
     z - x + y
     z
  2. A.
    7 9 11 13
    B.
    7 9 11 13 14
    C.
    9 7 11 13
    D.
    NULL

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    This is simplest example of adding two vectors together.


Be The First To Comment