Multiple Choice
Case-Based Critical Thinking Questions Case 9-1 Melissa, a computer science engineering student, is learning the basics of programming by exploring arrays. She learns about different array methods. She wishes to learn more on inserting and deleting array items. She creates monthName array to extract only the three spring months-March, April, and May-from a calendar. Melissa wants to remove spring months from the monthName array. Which of the following methods should Melissa use?
A) springMonths = monthName.slice(2, 5) ;
B) springMonths = monthName.splice(2, 3) ;
C) springMonths = monthName.slice(3, 5) ;
D) springMonths = monthName.splice(5, 3) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q14: What is the output of the following
Q15: Identify the general structure for accessing each
Q17: Identify the general structure of a for
Q19: Identify the structure of an if statement<br>A)
Q22: Identify the letter of the choice that
Q37: Which of the following statements is used
Q40: The _ method performs an action similar
Q46: JavaScript supports <u>logical operators</u> that connect several
Q69: The appearance of any form element can
Q87: Which of the following methods is used