In open source software, the ________ or program code must be written in text form before it is translated into machine code
A) external social code B) source project
C) source code D) internal social code
C
You might also like to view...
Which pair of words does not complete the sentence below correctly? A ________ is a(n) ________.
a. Container, Component. b. Container, JPanel. c. JComponent, Container. d. Component, Object.
The classpath consists of a list of directories or archive files, each separated by a ________ on Windows or a ________ on UNIX/Linux/Max OS X.
a. colon (:), semicolon (;). b. semicolon (;), colon (:). c. comma (,), semicolon (;). d. semicolon (;), comma (,).
Which function header line is used for the function named PassThis ?
A. void PassThis(int[ ][3]) B. void PassThis(int tbl[4][3]) C. void PassThis(int tbl[4][ ]) D. void PassThis(int tbl[ ][3])
An Animal class, Cowboy, and Horse class have what type of C++ relationships?
A. The Cowboy uses an Animal, and the Animal is a Horse. B. The Cowboy uses a Horse, and the Horse is an Animal. C. The Cowboy has an Animal, and the Horse is an Animal. D. The Cowboy uses a Horse, and the Animal is a Horse.