To understand how computers process information, we must study computers as collections of ____ that perform tasks such as instruction processing, information storage, computation, and data transfer.
A. data types
B. functional units
C. hardware
D. memory units
Answer: B
You might also like to view...
According to the ISO 12207 standard, who must be responsible for maintaining changes to a contract?
A. Acquiring organization B. Supplier C. Designated third party D. Outsourced contractor
Suppose class Child is derived from class Parent that was in turn derived from class GrandParent. The class child is a___________ of GrandParent
a. Successor b. Forebearer c. Ancestor d. Descendant e. Indirect descendant
Which of the following is NOT a C++ keyword?
A. case B. stack C. return D. new
What will be output from the following code:
``` public void test 4 ( ) f int x = 2 ; int y = 0 ; while ( x < 10 && y < 1) f x = x + 1 ; y = y + 1 ; System . out . p r i n t l n ( x + " , " + y ) ; } } ```