There are some industry inconsistencies in advertised sizes of monitors. Which of the following terms refers to the actual size of the monitor screen that can be seen?
A) Dot pitch
B) Viewable size
C) Dot triad
D) Resolution
B
Computer Science & Information Technology
You might also like to view...
A recursive function typically has two components—one that provides a means for the recursion to terminate by testing for a(n) __________case and one that expresses the problem as a recursive call for a slightly simpler problem than the original call.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
The Rational class in this chapter is defined as a subclass of java.lang.Number. Which of the following expressions is correct?
a. Rational.doubleValue(); b. Rational.doubleValue("5/4"); c. new Rational(5, 4).doubleValue(); d. new Rational(5, 4).toDoubleValue(); e. new Rational(5, 4).intValue();
Computer Science & Information Technology