Quiz 1

docx

School

ECPI University *

*We aren’t endorsed by this school

Course

123

Subject

Computer Science

Date

Feb 20, 2024

Type

docx

Pages

4

Uploaded by DeanStrawTurtle141

Report
Question 1 10 / 10 pts The main reason to use secondary storage is to hold data for long periods of time, even when the power supply to the computer is turned off. Correct! True False Question 2 10 / 10 pts A software developer is the person with the training to design, create, and test computer programs. Correct! True False Question 3 10 / 10 pts The process known as the _ ___ cycle is used by the CPU to execute instructions in a program. decode-fetch-execute decode-execute-fetch Correct! fetch-decode-execute fetch-execute-decode
Question 4 10 / 10 pts The following is an example of an instruction written in which computer language? 10110000 Assembly language Java Correct! machine language C# Question 5 10 / 10 pts What type of volatile memory is usually used only for temporary storage while running a program? ROM TMM Correct! RAM TVM Question 6
10 / 10 pts The \t escape character causes the output to skip over to the next horizontal tab. Correct! True False Question 7 10 / 10 pts Python formats all floating-point numbers to two decimal places when outputting with the print statement. True Correct! False Question 8 0 / 10 pts To use Python’s turtle graphics, you must include which of the following statements in your program? import turtle_module import turtle_graphics Correct Answer import turtle You Answered import Turtle
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Question 9 10 / 10 pts The Python turtle is initially positioned in the _______ of a graphics window and it first appears, by default, to be heading ________ . center, up top left corner, east bottom left corner, down Correct! center, east Question 10 10 / 10 pts After the execution of the following statement, the variable price will reference the value _ ___. price = int(68.549) Correct! 68 69 68.55 68.6