____ are scalable graphics that are built using mathematical formulas, rather than pixels.
A. Function graphics
B. Vector-based graphics
C. Calculated graphics
D. Expandable graphics
Answer: B
Computer Science & Information Technology
You might also like to view...
What is the return value for xMethod(4) after calling the following method?
``` static int xMethod(int n) { if (n == 1) return 1; else return n + xMethod(n - 1); } ``` a. 12 b. 11 c. 10 d. 9
Computer Science & Information Technology
A table ____________________ is the line that encloses the perimeter of the table.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
Which of the following is an illegal use of function put?
a. cout.put("A'); b. cout.put("A");. c. cout.put("A').put("\n&'); d. cout.put(65);
Computer Science & Information Technology
Every class you create in Visual Basic is automatically derived from this built-in class.
a. Object b. Base c. Window d. Application
Computer Science & Information Technology