Case-Based Critical Thinking QuestionsCase 1-1During your senior year, you are serving as a tutor in the computer science department, offering to help other students with their coursework. One of the most daunting topics for beginning students is keeping bitmaps and vectors straight. One of your tutees, Joe, is a case in point. Joe just said something to you about vector graphics that indicates to you that he has not read the material, because it was wrong. What did he say?

A. Vector graphics scale well.
B. Individual shapes within a vector graphic can be modified independently of the rest.
C. Vector graphics excel at sharp lines and smooth colors.
D. You cannot create vector graphics using Adobe Illustrator.


Answer: D

Computer Science & Information Technology

You might also like to view...

What is the output from the following program?

``` #include using namespace std; int main () { void doSomething void doSomething (int& thisp, int that) { int theOther; theOther = 5; that = theOther + 2; thisp = theOther * that; return; } // end doSomething (int&, int); int first, second; first = 1; second = 2; doSomething (second, first); cout << first << second; return 0; } ``` a. 35 2 b. 1 35 c. 35 7 d. 1 2 e. 1 0

Computer Science & Information Technology

A(n) ________ is a small computer that combines a cellular phone with other features such as a camera

Fill in the blank(s) with correct word

Computer Science & Information Technology

What standards define the way data is transmitted over a Wi-Fi network?

a. 802.11 b. WAP c. 3G/4G

Computer Science & Information Technology

IEEE created the 100-Mbps Ethernet 802.3u protocol also called ____ Ethernet.?

A. ?Fast B. ?Gigabit C. ?Terabit D. ?FDDI

Computer Science & Information Technology