The answer is number 2 accessible
The answer to your question would be service writer. The service writer's job, is to log all information and such, and generally decide what happens.
Answer:
#include <stdio.h>
int main(void) {
char letterToQuit = '?';
int numPresses = 0;
printf("Press the %c key %d times to quit ", letterToQuit, numPresses);
return 0;}
Explanation:
in print statement %c is replaced by value of variable 'letterToQuit'and %d is replaced by value of variable 'numPresses'
Choose the web design factor from the drop-down menus that best represents each statement.
Answer:
A. Good web pages stick to the point, do not have useless information, and showcase important information.
B. The best websites clearly present a reason for the creation of the site.
C. The best websites are pleasing to look at and make you want to click further through the pages.
D. It is important for the web designer to understand the needs, interests, and technology level of the target web page visitor.
E. Good websites make it easy to navigate from one page to the other with relevant links in obvious places.