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

Answer & Solution

Answer: Option B
Solution:
The continue; statement is used to skip the current iteration in a loop and continue to the next iteration. When encountered, it immediately stops the current iteration and jumps to the next iteration in the loop block.
Related Questions on Average

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

A). Function declaration statement

B). Conditional statement (if statement)

C). Assignment statement

D). Looping statement (do-while loop)

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

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 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: for (let i = 0; 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 will be the output of the following JavaScript code? Code: let x = 7; if (x % 2 === 0) { console.log('Even'); } else { console.log('Odd'); }

A). Even

B). Odd

C). 7

D). None of the above

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

A). 10 8 6 4 2 0

B). 10 8 6 4 2

C). 8 6 4 2 0

D). 9 7 5 3 1 -1

Which of the following JavaScript statements is used to execute a block of code repeatedly while a condition remains true?

A). Function invocation statement

B). Conditional statement (if statement)

C). Assignment statement

D). Looping statement (while loop)

What does the following JavaScript code snippet do? Code: let result = x > 0 ? 'Positive' : (x < 0 ? 'Negative' : 'Zero');

A). Assigns 'Positive' to result if x is greater than 0, 'Negative' if x is less than 0, otherwise 'Zero'

B). Checks if x is greater than 0 and assigns 'Positive', otherwise checks if x is less than 0 and assigns 'Negative', otherwise assigns 'Zero'

C). Assigns 'Positive' to result if x is less than 0, 'Negative' if x is greater than 0, otherwise 'Zero'

D). None of the above

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'