GIF supports a palette of up to ____ colors.

A. 128
B. 256
C. 512
D. 2048

Answer: B

Computer Science & Information Technology

You might also like to view...

__________ prevents either sender or receiver from denying a transmitted message. Thus, when a message is sent, the receiver can prove that the alleged sender in fact sent the message and when a message is received, the sender can prove that the alleged receiver in fact received the message.

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

Computer Science & Information Technology

What variables are local to the Add Numbers function?

```int AddNumbers( int x, int y) { int z; z = x + y; return z; }``` A. x B. y C. x & y D. x, y & z

Computer Science & Information Technology