Case 14-2
Morris, a librarian, wishes to use Microsoft Excel 2016 to manage data on the books in the library. He explores various tabs and buttons in Excel to present the data as intended.
On the Home tab, in the Alignment group, Morris notices the feature shown in the accompanying figure. Morris identifies this feature as the _____ button.

A. ?Decrease Indent
B. ?Increase Indent
C. ?Align Right
D. ?Align Left


Answer: A

Computer Science & Information Technology

You might also like to view...

Keyword _______ is used to indicate a method overloads a specific operator.

a) implement b) operator c) overload d) op

Computer Science & Information Technology

Which of the following is an error:

a) referencing a private attribute of a class in a member function b) failing to include the .cpp file c) calling a member function without the dot notation outside the class d) putting a semicolon after the class definition

Computer Science & Information Technology

Show the output of the following code:

``` #include using namespace std; class A { public: int x; int y; int z; A(): x(1), y(2), z(3) { } }; int main() { A a; cout << a.x << " " << a.y << " " << a.z; return 0; } ``` a. 2 2 2 b. 3 3 3 c. 1 1 1 d. 1 2 3 e. 1 1 2

Computer Science & Information Technology

Assuming a variable named end is the identifier for a setInterval() method, which of the following is the correct way to clear the timer?

a. ``` window.clearInterval(end); ``` b. ``` window.clearInterval = end; ``` c, ``` var end = window.clearInterval(); ``` d. ``` var done = window.clearInterval.end; ```

Computer Science & Information Technology