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
     x/y
  2. A.
    0.1666667 0.2857143 0.4444444
    B.
    0.1666667 0.2857143 0.3750000 0.4444444
    C.
    0.2857143 0.3750000 0.4444444
    D.
    All of the mentioned

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Logical operations return a logical vector of TRUE and FALSE.


Be The First To Comment