Critical Thinking QuestionsCase E-2Selma has spent about 45 minutes trying to perfect the senior class photo for the school yearbook. Along the way she has made several mistakes, but thanks to what she has learned about the History panel, she has been able to fix them along the way. Selma undid all of her states by accident and then continued working. How can she return to the status of the file when she last saved it?

A. Click Revert on the Menu bar.
B. Click File on the Menu bar, then click Revert.
C. Click File on the Menu bar, then click Undo.
D. Click Undo on the Tools panel, then click Revert to Saved.


Answer: B

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` ArrayList list = new ArrayList(); String s1 = new String("Java"); String s2 = new String("Java"); list.add(s1); list.add(s2); System.out.println((list.get(0) == list.get(1)) + " " + (list.get(0)).equals(list.get(1))); ``` a. true false b. false true c. true true d. false false

Computer Science & Information Technology

Add comments to all the methods, to make it easier for someone else to read the function.

Note: By “all” methods, this question refers to all the adventure game methods of Chapter 10 not yet commented. These being: playGame (Program 133), showEntryway, showKitchen, showKitchen, showLR, showDR, and showIntroduction. Comments should explain sections of the code in simple English. An example for playGame is below.

Computer Science & Information Technology

When the position of a graphic matches that of other objects in a document, such as margins and headings, ________ are displayed to help the user move the graphic precisely

A) sizing handles B) floating objects C) anchors D) Alignment Guides

Computer Science & Information Technology

The ________, when outlined in black, indicates it is ready to accept data

A) active cell B) status bar C) fill handle D) data point

Computer Science & Information Technology