Q
Which of the following JavaScript statements is used to execute a block of code repeatedly until a specified condition becomes false?

Answer & Solution

Answer: Option D
Solution:
The do-while loop in JavaScript is used to execute a block of code repeatedly until a specified condition becomes false. It is similar to the while loop, but it always executes the block of code at least once before checking the condition. If the condition is true, it continues to execute the block until the condition becomes false.
Related Questions on Average

What is the purpose of the following JavaScript statement? continue;

A). Exits the current loop or switch statement

B). Skips the current iteration in a loop

C). Assigns a value to a variable

D). Continues to the next iteration in a loop

What will be the output of the following JavaScript code? Code: let x = 15; if (x > 10) { console.log('x is greater than 10'); } else { console.log('x is not greater than 10'); }

A). x is greater than 10

B). x is not greater than 10

C). Undefined

D). Error

What will be the output of the following JavaScript code? Code: let i = 0; for (; i < 3; i++) { console.log(i); }

A). 0 1 2 3

B). 0 1 2

C). 1 2 3

D). 1 2 3 4

What does the following JavaScript code snippet do? Code: let num = 5; while (num > 0) { console.log(num); num--; }

A). Declares a variable and assigns a value to it

B). Executes a block of code repeatedly until a condition becomes false

C). Calculates the sum of numbers from 1 to 5

D). Checks if a number is positive or negative

What is the purpose of the following JavaScript statement? continue;

A). Exits the current loop or switch statement

B). Skips the current iteration in a loop

C). Assigns a value to a variable

D). Continues to the next iteration in a loop

What does the following JavaScript code snippet do? Code: let x = 10; if (x % 2 === 0) { console.log('Even'); } else { console.log('Odd'); }

A). Checks if x is even and prints 'Even'

B). Checks if x is odd and prints 'Odd'

C). Checks if x is greater than 0 and prints 'Positive'

D). Checks if x is less than 0 and prints 'Negative'

What does the following JavaScript code snippet do? Code: let x = 5; while (x > 0) { console.log(x); x -= 1; }

A). Prints even numbers from 5 to 1

B). Prints odd numbers from 5 to 1

C). Prints numbers from 5 to 0

D). Infinite loop

What is the purpose of the following JavaScript statement? let name = 'John';

A). Declare a function

B). Declare a variable

C). Print a message to the console

D). Loop through an array

What is the purpose of the following JavaScript statement? let result = x > 0 ? 'Positive' : 'Non-positive';

A). Assigns the value 'Positive' to result if x is greater than 0, otherwise assigns 'Non-positive'

B). Checks if x is greater than 0

C). Prints 'Positive' if x is greater than 0, otherwise prints 'Non-positive'

D). None of the above

What will be the output of the following JavaScript code? Code: let i = 3; do { console.log(i); i--; } while (i > 0);

A). 3 2 1

B). 2 1 0

C). 3 2 1 0

D). 1 2 3