x 1 while x document write x x x 1 Here x is-01970
x = 1; <br>while (x < 6) { <br> document.write (x); <br> x = x + 1; <br>}<br>Here x is __________
This multiple choice question (MCQ) is related to the book/course vu cs101 Introduction to Computing. It can also be found in vu cs101 Lecture No.21 - Quiz No.2.
x = 1;
while (x < 6) {
document.write (x);
x = x + 1;
}
Here x is __________
while (x < 6) {
document.write (x);
x = x + 1;
}
Here x is __________
Objects
Variables
Properties
None of the given