An 1-bit color depth allows _____ colors.
Fill in the blank(s) with the appropriate word(s).
2
You might also like to view...
A user calls the system administrator and states that they can no longer access the file server they had been working on all morning. To troubleshoot this problem, which step should the administrator take FIRST?
A. Reboot the file server. B. Ask the user what they were doing when they noticed the problem. C. Ask the user to reboot their PC. D. Ask the user to ping the default gateway and report the response times back to the administrator.
Insert const before .any of the following array parameters that can be changed to const.
``` void output(double a[], int size); //Pre: a[0] through a[size-1] have values set. //Post: a[0] through a[size-1] have been displayed on the screen. void dropOdd(int a[], int size); //Pre: a[0] through a[size-1] have values set. //Post: All odd numbers in a[0] through a[size-1] have //been changed to 0. ```