

InterviewSolution
Saved Bookmarks
1. |
Point out the correct statement.(a) An array with a large number of elements will incur greater indexing costs on insertion(b) An array with a large number of elements will incur smaller indexing costs on updates(c) An array with a small number of elements will incur greater indexing costs on insertion(d) None of the mentioned |
Answer» Correct answer is (a) An array with a large number of elements will incur greater indexing costs on insertion The best I can explain: An array with a large number of elements, such as one with several hundred or thousands of keywords will incur greater indexing costs on insertion. |
|