Week 1 Flashcards
A software developer is the person with the training to design, create, and test computer programs.
True
A bit that is turned off is represented by the value -1.
False
IDLE is an alternative method to using a text editor to write, execute, and test a Python program.
True
A computer is a single device that performs different types of tasks for its users.
False
All programs are normally stored in ROM and are loaded into RAM as needed for processing.
False
The instruction set for a microprocessor is unique and is typically understood only by the microprocessors of the same brand.
True
The CPU understands instructions written in a binary machine language.
True
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.
True
RAM is a volatile memory used for temporary storage while a program is running.
True
The Python language uses a compiler which is a program that both translates and executes the instructions in a high-level language.
False
Programs are commonly referred to as
a. system software
b. software
c. application software
d. utility programs
B. Software
Which of the following is considered to be the world’s first programmable electronic computer?
a. IBM
b. Dell
c. ENIAC
d. Gateway
C. ENIAC
Where does a computer store a program and the data that the program is working with while the program is running?
a. in main memory
b. in the CPU
c. in secondary storage
d. in the microprocessor
A. Main Memory
What type of volatile memory is usually used only for temporary storage while running a program?
a. ROM
b. TMM
c. RAM
d. TVM
C. RAM
Which of the following is not a microprocessor manufacturing company?
a. Intel
b. Dell
c. AMD
d. Motorola
B. Dell
Which computer language uses short words known as mnemonics for writing programs?
a. Assembly
b. Java
c. Pascal
d. Visual Basic
A. Assembly
The process known as the __________ cycle is used by the CPU to execute instructions in a program.
a. decode-fetch-execute
b. decode-execute-fetch
c. fetch-decode-execute
d. fetch-execute-decode
C. Fetch-Decode-Execute
Which language is referred to as a low-level language?
a. C++
b. Assembly language
c. Java
d. Python
B. Assembly language
The following is an example of an instruction written in which computer language?
10110000
a. Assembly language
b. Java
c. machine language
d. C#
C. Machine Language
The encoding technique used to store negative numbers in the computer’s memory is called
a. Unicode
b. ASCII
c. floating-point notation
d. two’s complement
D. Two’s complement
The __________ coding scheme contains a set of 128 numeric codes that are used to represent characters in the computer’s memory.
a. Unicode
b. ASCII
c. ENIAC
d. two’s complement
B. ASCII
The smallest storage location in a computer’s memory is known as a
a. byte
b. ketter
c. switch
d. bit
D. Bit
What is the largest value that can be stored in one byte?
a. 255
b. 128
c. 8
d. 65535
A. 255
The disk drive is a secondary storage device that stores data by __________ encoding it onto a spinning circular disk.
a. electrically
b. magnetically
c. digitally
d. optically
B. Magnetically
A __________ has no moving parts and operates faster than a traditional disk drive.
a. DVD drive
b. solid state drive
c. jumper drive
d. hyper drive
B. Solid State Drive
Which of the following is not a major component of a typical computer system?
a. the CPU
b. main memory
c. the operating system
d. secondary storage devices
C. Operating System
Which type of error prevents the program from running?
a. syntax
b. human
c. grammatical
d. logical
A. Syntax
What is the decimal value of the following binary number?
10011101
a. 157
b. 8
c. 156
d. 28
A. 157
Select all that apply. To create a Python program you can use
a. a text editor
b. a word processor if you save your file as a .docx
c. IDLE
d. Excel
A. Text Editor and
C. IDLE