Determine the value of the integer variable counter after execution of the follo
ID: 2970850 • Letter: D
Question
Determine the value of the integer variable counter after execution of the following program segment.
(Here i, j, k, l,Determine the value of the integer variable counter after execution of the following program segment.
(Here i, j, k, l, m, and n are integer variables.
The variables r, s, and t are also integer variables; their values where r> 1, s> 5, and t> 7 have been set prior to this segment.)
counter: = 10
fori:= 1 to 12 do
forj := 1 to r do
counter:= counter + 2
fork := 5 to s do
forl := 3 to k do
counter:= counter + 4
form:= 3 to 12 do
counter:= counter + 6
forn := t downto7 do
counter:= counter + 8
Explanation / Answer
line 1 : counter=10
line 4: counter= counter+2 = 10+2 = 12
line 7: counter= counter+4= 12+4 = 16
line 9: counter= counter+6= 16+6= 22
line 11: counter= counter + 8= 22 + 8 =30
therefore final value of counter = 30
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.