Algorithms and Pseudo code Exam with
Questions and Correct Answers 2025
GRADED A+
array ,- ,CORRECT ,ANSWER-a ,collection ,of ,items ,stored ,at ,contiguous ,memory
,locations; ,each ,item ,can ,be ,accessed ,using ,an ,index
binary ,search ,- ,CORRECT ,ANSWER-a ,search ,algorithm ,that ,finds ,the ,position
,of ,a ,target ,value ,within ,a ,sorted ,array ,by ,repeatedly ,dividing ,the ,search
,interval ,in ,half
bubble ,sort ,- ,CORRECT ,ANSWER-a ,simple ,sorting ,algorithm ,that ,repeatedly
,steps ,through ,a ,list, ,compares ,adjacent ,elements, ,and ,swaps ,them ,if ,they ,are
,in ,the ,wrong ,order
concrete ,step ,- ,CORRECT ,ANSWER-a ,detailed ,action ,in ,an ,algorithm ,that
,specifies ,exactly ,how ,to ,perform ,a ,task
count-controlled ,loop ,- ,CORRECT ,ANSWER-a ,loop ,that ,repeats ,a ,specific
,number ,of ,times; ,controlled ,by ,a ,counter ,variable ,(e.g., ,"for" ,loop)
desk ,checking ,- ,CORRECT ,ANSWER-a ,manual ,method ,of ,reviewing ,the ,logic ,of
,a ,program ,or ,algorithm ,using ,a ,pencil ,and ,paper ,instead ,of ,a ,computer
event-controlled ,loop ,- ,CORRECT ,ANSWER-a ,loop ,that ,continues ,to ,execute
,until ,a ,specific ,condition ,or ,event ,occurs, ,such ,as ,user ,input ,or ,a ,sensor
,reading
heterogeneous ,- ,CORRECT ,ANSWER-a ,term ,describing ,a ,collection ,of ,items
,that ,are ,of ,different ,types