100% CORRECT ANSWERS { GRADED
A+}
In an instruction like: Z equals X plus Y, the symbols X, Y, and Z are examples of
- ✔✔Variables
Which is true for comments? - ✔✔The compiler does not generate machine code
for comments
If a program compiles without errors, the program is free from _______ -
✔✔Syntax errors
A program should compute two times X. Which statement has a logic error? -
✔✔Y = x * x
In what component does a processor store the processors required instructions in
data? - ✔✔memory
, Which item converts a high-level language program to low level machine
instructions? - ✔✔compiler
What does a clock do? - ✔✔Determines the rate of execution for a processor's
instructions
Which is not a component of a computer? - ✔✔Programmer
A ____ is a computer component that stores files and other data - ✔✔disk
RAM is an abbreviation that stands for: - ✔✔Random Access Memory
The ____ is a process that manages programs and interfaces with peripherals -
✔✔operating system
C++ came after see. True or false? - ✔✔True
What is y after executing the statements?
X=5
Y=x+1
Y = y * 2 - ✔✔12