Which piece of pseudocode represent the checking the loop


1. Analyze the following pseudocode. Whats the ansr's final value ?

Num = 8 ansr =0 if num > 5 then if num < 20 then ansr =1 else ansr = 2 endif endif .

A) 0

B) 1

C) 2

D) 7

2. Which piece of pseudocode represent the checking the loop condition

A) rep = 1

(B) rep=rep +1

(C) while (rep< 5)

(D) print " warning "

3.In a control break routine, how do you know when the last category has finished being processed ?

A) at the end of the file

B) when every category is the same

C) when the value of the category is the same as the vale of the control break field

D) there is no way to tell

4.Which of the following is another name for an array?

A) group

B) sequence

C) matrix

D) subscript

5) What piece of pseudocode represents incrementing the loop control variable.

A) rep = 1

B) rep=rep + 1

C) while (rep<5)

D) print "warning "

6) Which of the following is a nontrivial true example of the greater than or equal to operator ?

A) 1> 5

B) 1> = 5

C) Time =3

D) Time > = 4

8) In order to have the most efficient program, which question should be asked first when working with an AND decision.

A) the one that is less likely to be true

B) the one that is more likely to be true

C) the one that involves fewer comparisons

D) the one with the lower valve

9) When listing employees who make more that $10 and less than $12 per hour, you are making a decision bases on a:

A) Range

(B) row

(C) variable

(D) value

10) When a loop control variable is not altered during loop execution, a(n) __________ loop may result.

A) decrement

B) infinite

C) indeterminate

D) default

11)In the following pseudocode sample which will be printed if the value of empDept is 11?

If empDept >=8 the
superviorName = "Fontana
else
if empDept > = 4 then
supervisorName = "Escher "
else
supervisorName + "Dillion"
endif
endif
print supervisorName

A) Fontana

B) Escher

C) Dillion

D) Nothing

11)Which of the following is true of a structured loop

A) the loop can exit from any point

B) the loop body must execute at least one

C) the loop condition represent the only exit from the loop

D) the loop can repeat an infinite number of times

12)When creating a grand total by adding up several subtotals you are

A) rolling up the totals

B) grouping the totals.

C) grabbing the totals

D)grand totaling.

13) What is the term for each part of an array

A) variable

B) element

C) subscript

D) superscripts

14)Array subscript are always

A) large numbers

(B) characters

(C) negative values 3

(D) integers

15)What do array elements all have in common

A) pointer

B) memory location

C)data type

D) default value

Question 15-17

X =1
FoundIt ="N" then
While x< 7
If custItemNo = validItem[x] then
foundIt = "Y"
endif
x =x+1
endwhile
if foundIt ="N" then
print "No such item"
endif

15) In the above code which of the following is a flag variable

A) foundIt

B) x

C) custItemNo

D) validItem

16) In the above code which of the following is an array variable

A) foundIt

B) x

C) custItemNo

D) validItem

17) In the above code , which of the following is the variable being searched for.

A) foundIt

B) x

C) custItemNo

D) validItem

18) If the array list has 4 elements then the statement, then the statement list [5] is:

A) valid

B) out of bounds

C) out of range

D) equal to zero

19) In a for loop, a(n) _____ value is used to control how the loop control variable is incremented.

A) step

(B) group

(C) flag

(D) sentinel

20) A while loop has a(n) _____ condition.

A) posttest

B) pretest

C) infinite

D) incremental

21)Array subscripts must be :

A) negative

B) greater than zero

C) sequential

D) with decimal places

Attachment:- programming essentials(help 2).zip

Solution Preview :

Prepared by a verified Expert
C/C++ Programming: Which piece of pseudocode represent the checking the loop
Reference No:- TGS01249016

Now Priced at $20 (50% Discount)

Recommended (94%)

Rated (4.6/5)