JS

JavaScript Fundamentals 3 - Review

Review

Discover your progress and identify completed questions and those awaiting your input. Dive back into any unanswered quizzes, refine your knowledge, and keep track of your learning journey with ease!

No.QuestionStatus
Q1Which of the following are basic data types in JavaScript?
Q2Which method can be used to convert a string to uppercase in JavaScript?
Q3Which of the following data types in JavaScript can have a value of either true or false?
Q4Which of the following is a valid boolean value in JavaScript?
Q5What is the value of a variable that has been declared but not assigned a value?
Q6What is the data type of a variable with a value of undefined?
Q7Which of the following statements about comments in JavaScript is true?
Q8What is the correct syntax for an if statement in JavaScript?
Q9Which of the following statements about variable declaration and assignment in JavaScript is tr...
Q10What is the result of the following expression: `5 + 3 * 2 - 6 / 3`?
Q11What is the value of the expression: `20 / 4 + 5 - 3 * 2`?
Q12What is the result of the following expression: `10 + 5 * 2`?
Q13Which operator is used to assign a value to a variable in JavaScript?
Q14What is the result of the assignment expression `x = y = 5`?
Q15What is the purpose of an assignment expression in JavaScript?
Q16Which operator can be used to concatenate a string and a number in JavaScript?
Q17Which of the following is a comparison operator in JavaScript?
Q18Which of the following comparison operators in JavaScript checks if two values are not equal an...
Q19Which are logical operators in JavaScript?
Q20What is the result of the expression `(true && false)`?
Q21Which of the following is the correct syntax for defining a function with parameters in JavaScr...
Q22What is the difference between function parameters and arguments in JavaScript?
Q23Which of the following is true about function parameters and arguments in JavaScript?
Q24Which of the following string methods can be used to find the position of a substring within a ...
Q25Which of the following methods is used to find the length of a string in JavaScript?
Q26What is the purpose of the JavaScript Math.round() function?
Q27What is the output of the following code? ```javascript console.log(Math.floor(4.7)); ```
Q28Which of the following functions allows you to round a number to the nearest whole number in Ja...
Q29What is the purpose of the Math.max() function in JavaScript?
Q30Which keyword is used to define a function in JavaScript?
Q31Which of the following correctly declares and initializes an array in JavaScript?
Q32Which method returns the current date and time?