Question: 10. Sequential search is also known as: a) Consecutive search b) Straight search c) Serial search d) Open search 11. What is the right way

10. Sequential search is also known as: a) Consecutive search b) Straight search c) Serial search d) Open search 11. What is the right way to initialize an array: a) int num[6] = { 2, 4, 12, 5, 45, 5 }; b) int n{} = { 2, 4, 12, 5, 45, 5 }; c) int n{6} = { 2, 4, 12 }; d) int n(6) = {2,1,4,6,2,7}; 12. For finding an object in an array starting from beginning and inspecting each element one after other, until object is found is called as: a) Binary searching b) Primary Search c) Linear Search d) Open search 13. Array that are declared static are initialized when a) Program is loaded in memory b) At end of program This study source was downloaded by 100000826339702 from CourseHero.com on 05-26-2021 05:54:42 GMT -05:00 https://www.coursehero.com/file/31177071/Quiz-3docx/ This study resource was shared via CourseHero.com c) During program execution d) At runtime 14. Objects of an array are also called as: a) Memory of array b) Indexes of array c) Functions of array d) Elements of array 15. Which of the following accesses the seventh element stored in array? a) array[6]; b) array(7); c) array[7]; d) array(6)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!