Screen coordinates are measured in:
a) inches
b) centimeters
c) pixels
d) millimeters
c) pixels
Computer Science & Information Technology
You might also like to view...
Which of the following loop condition statements will read all the data in the file assuming that each record in the file is two integer values, and you will read the first one into a variable named intOne, and the other into intTwo?
a. while(inFile >> intOne >> intTwo) b. while(inFile(intOne, intTwo)) c. while(inFile) d. while(inFile << intOne << intTwo) e. A and B
Computer Science & Information Technology
Which statement requires the inclusion of the library
A. cout.precision(4) B. if(condition) C. pow( ) D. int main()
Computer Science & Information Technology