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); }

 

1 Answer

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

Related questions

0 votes
    ___________ is a pretest loop that will execute until the value of z equals 10 1. while (z >10) { z--; } 2. do { ++z; } while (z < ... 3. for (var z= 1; z < 10; z++) { alert (z); }...
asked Feb 24, 2021 in Technology by JackTerrance
0 votes
    10. The DO_LOOP UNTIL executes the loop at least ILAT I ptional. Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    10. The DO_LOOP UNTIL executes the loop at least ILAT I ptional. Select the correct answer from above options...
asked Dec 18, 2021 in Education by JackTerrance
0 votes
    A fair die is tossed repeatedly until a six is obtained Let X denote the number of tosses required The probability that ... D. 125 216 Select the correct answer from above options...
asked Nov 16, 2021 in Education by JackTerrance
0 votes
0 votes
0 votes
    Which of the following loops will execute the body of loop even when condition controlling the loop is ... questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
0 votes
0 votes
    I wrote javascript code to solve the following problem >>> Write a function exponentiate that accepts two ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 5, 2022 in Education by JackTerrance
...