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? 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
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 = 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 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
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 will be the output of the following JavaScript code? Code: let i = 1; do { console.log(i); i++; } while (i < 3);
A). 1 2 3
B). 1 2 3 4
C). 2 3 4
D). Infinite loop
What is the purpose of the following JavaScript statement? return result;
A). Exits the current loop or switch statement
B). Skips the current iteration in a loop
C). Exits the current function and returns a value
D). Continues to the next iteration in a loop
What will be the output of the following JavaScript code? Code: let nums = [1, 2, 3, 4, 5]; for (let n of nums) { if (n % 2 === 0) { console.log(n); } }
A). 1 3 5
B). 2 4 6
C). 1 2 3 4 5
D). 2 4
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)