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

Answer & Solution

Answer: Option A
Solution:
The code snippet uses a do...while loop to print numbers from 1 to 2. It starts with i being 1 and prints the value of i to the console in each iteration, then increments i by 1. This process continues until i is no longer less than 3, at which point the loop stops. Therefore, the output will be: 1 2
Related Questions on Average

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

A). Assigns a value to a variable

B). Exits the current loop or switch statement

C). Skips the current iteration in a loop

D). Continues to the next iteration in a loop

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 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 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 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 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 count = 0; do { console.log(count); count++; } while (count < 3);

A). 0 1 2 3

B). 0 1 2

C). 1 2 3

D). Infinite 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

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)