The ____ file format can store both vector and bitmap data.

a. JPEG
b. GIF
c. PSD
d. EPS

C. PSD

Computer Science & Information Technology

You might also like to view...

____ an image is a basic task in which you define an area of an image that you want to keep and then discard the remainder of the image.

A. Paring B. Selecting C. Cropping D. Cutting

Computer Science & Information Technology

Explain what it means for two matrices to be conformable.

Use the following declarations and class definition for Questions 3 and 4.

const int MAX_ROWS = 10;
	const int MAX_COLS = 10;

class Matrix {
public:
Matrix()  {}
private:	
int rows;
int cols;
int mat[MAX_ROWS][MAX_COLS];
};

Computer Science & Information Technology