___________ 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); }
Answer:-while (z >10) { z--; }