Exercises
At the end of each chapter there are a set of exercises that you can do to help you determine if you understood the materials. They are designed to help reinforce the materials you learned.
-
Briefly describe the purpose of the following computer components: a) CPU b) Memory c) Operating System
-
What is the output of the following program?
#include <stdio.h>
int main(void)
{
printf("IPC 144\n Self test\n");
printf("How did you do?\n");
return 0;
}