When multiple worksheets are grouped, inserting a row ________
A) inserts it into all of the worksheets in the group
B) inserts it only into the first worksheet in the group
C) displays an error message
D) fails to insert a row into any of the worksheets in the group
Answer: A
You might also like to view...
The ________ keyword is used to create an abstract class.
a) Polymorph b) Inherit c) Abstract d) MustInherit
A ________ is a mutual exclusion mechanism in which a process executes in an infinite loop waiting for the value of a lock variable to indicate availability.
Fill in the blank(s) with the appropriate word(s).
When worksheets are ________, any formatting applied to one worksheet will be applied to all selected worksheets
Fill in the blank(s) with the appropriate word(s).
?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 extract the spring months and store them in the monthName array. Identify a method Melissa should choose to perform this task.
A. ?springMonths = monthName.slice(2, 5); B. ?springMonths = monthName.splice(2, 3); C. ?springMonths = monthName.slice(3, 5); D. ?springMonths = monthName.splice(5, 3);