MCQ
Q.
What is the functionality of the following piece of code?
{
if (row_index < 0 || col_index > N)
{
System.out.println("column index out of bounds");
return;
}
return (sparse_array[row_index].fetch(col_index));
}
Correct Answer: B
None.