retagged by
1,055 views
0 votes
0 votes

retagged by

2 Answers

Best answer
1 votes
1 votes
while loop is saying if condition is true go inside the loop else exit loop

so P= level 1

      Q= level

is doing same thing.

Ans:B
selected by
0 votes
0 votes
P: Level1 Q: level

when if() statement is true it will goto P=Level1 and compute its value and again check for the next condition so Q=Level else end the loop and goto last.

Related questions

2 votes
2 votes
1 answer
1
Sambhrant Maurya asked Nov 1, 2018
4,411 views
The minimum number of variables required in 3 address code of the given expression are:______a * b * c + d - a + e * f - g + hOrder of precedence: * + - ; with * as lef...
0 votes
0 votes
1 answer
2
thor asked Nov 17, 2016
1,089 views
3 votes
3 votes
1 answer
3
sh!va asked Jun 23, 2016
15,039 views
Three address code invlovesexactly 3 addressesat most 3 addressesat least 3 addressesNo unary opeartors
1 votes
1 votes
1 answer
4
Xylene asked Aug 29, 2017
380 views
In 3 address code format can LHS be repeated ?For eg if we have expression a + b*c then t1 = a t2 = b*c t1 = t1 + t2 or t3 = t1 + t2 which one is correct?