in Technology by

___________ is a pretest loop that will execute until the value of z equals 10?
a)while (z >10) { z--; }
b)do { ++z; } while (z < 10);
c)for (var z= 1; z < 10; z++) { alert (z); }

 

Please log in or register to answer this question.

1 Answer

0 votes
by

Answer:-while (z >10) { z--; }

Related questions

...