Menu

Arrays Questions

MCQ
121.
What is the order of a matrix?
forum Discussion
MCQ
122.
Which of the following property does not hold for matrix multiplication?
forum Discussion
MCQ
123.
How do you allocate a matrix using a single pointer in C?(r and c are the number of rows and columns respectively)
forum Discussion
MCQ
124.
Select the code snippet which performs matrix multiplication.(a and b are the two given matrices, resultant marix is c)
forum Discussion
MCQ
125.
If row-major order is used, how is the following matrix stored in memory?

abc
def
ghi
forum Discussion
MCQ
126.
If column-major order is used, how is the following matrix stored in memory?

abc
def
ghi
forum Discussion
MCQ
127.
Which of the following are the uses of matrices?
forum Discussion
MCQ
128.
What is the disadvantage of matrices?
forum Discussion
MCQ
129.
Matrix A when multiplied with Matrix C gives the Identity matrix I, what is C?
forum Discussion
MCQ
130.
Which of the following is not a disadvantage to the usage of array?
forum Discussion