In a sorted array, the kth smallest item is given by ______.

a) anArray[k-1]
b) anArray[k]
c) anArray[SIZE-k]
d) anArray[SIZE+k]

a.

Computer Science & Information Technology

You might also like to view...

Which of the following protocols does not share a similar frame format?

a. HDLC b. SDLC c. PPP d. BSC

Computer Science & Information Technology

Which of the following statements correctly returns the variable intValue from a method?

a) return int intValue; b) return void intValue; c) intValue return; d) return intValue;

Computer Science & Information Technology