Case-Based Critical Thinking Questions
?
Case 4-1
In PowerPoint 2016, Jake wants to change the slide background to a photo on his computer. He is walking through a tutorial given to him by a co-worker.
To add a picture to the Slide background, Jake first clicks the _____ tab.
A. Home
B. Design
C. Format
D. Edit
Answer: B
Computer Science & Information Technology
You might also like to view...
________ is the process of translating a task into a series of commands that a computer will use to perform the task
A) Analyzing B) Programming C) Diagramming D) Debugging
Computer Science & Information Technology
Write code to declare and instantiate an object of the Random class (call the object reference variable rand). Then write a list of expressions using the nextInt method that generate random numbers in the following specified ranges, including the endpoints. Use the version of the nextInt method that accepts a single integer parameter.
``` Random rand = new Random(); ``` a. 0 to 10 b. 0 to 500 c. 1 to 10 d. 1 to 500 e. 25 to 50 f. –10 to 15
Computer Science & Information Technology