Vidyalelo
R Programming · Q114

Introduction to R Programming

Programming · R Programming · question 114

Q114

What will be the output of the following R function? d <- diag(5, nrow=2, ncol=2) d

A.
5     1
0     5
B.
5     0
5     5
C.
5     0
15     5
D.
5     0
0     5
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board