A shape is usually a(n) _______ object or vector shape, which means it does not lose its sharp lines or anti-aliasing if it is resized or reshaped.

Fill in the blank(s) with the appropriate word(s).


vector

Computer Science & Information Technology

You might also like to view...

Given the class definition:

class CreateDestroy { public: CreateDestroy() { cout << "constructor called, "; } ~CreateDestroy() { cout << "destructor called, "; } }; What will the following program output? int main() { CreateDestroy c1; CreateDestroy c2; return 0; } a. constructor called, destructor called, constructor called, destructor called, b. constructor called, destructor called, c. constructor called, constructor called, d. constructor called, constructor called, destructor called, destructor called,

Computer Science & Information Technology

Briefly define the goodput of a wireless network and the concepts behind this factor.

What will be an ideal response?

Computer Science & Information Technology

Select the term used to describe the physical computer on which VM software is installed, and virtual machines run.

A. guest computer B. host OS C. host computer D. virtual machine

Computer Science & Information Technology

Explain why you would create a loan amortization table.

What will be an ideal response?

Computer Science & Information Technology