_______is memory used to store the operating system and software applications while in operation
A) ROM
B) RAM
C) CMOS
D) BIOS
B
You might also like to view...
Functions are ideal for menu-driven programs. When the user selects a menu item, the program can __________ the appropriate function.
a. call b. append c. define d. declare e. None of these
Software refers to
a. programs b. the physical components a computer is made of c. firmware d. data stored in RAM
Find the error in each of the following program segments and explain how to correct it:
``` a) float cube(float); // function prototype cube(float number) { // function definition return number * number * number; } b) int randomNumber{srand()}; c) float y{123.45678}; int x; x = y; d) double square(double number) { double number{0}; return number * number; } e) int sum(int n) { if (0 == n) { return 0; } else { return n + sum(n); } } ```
Which position is not typically a part of the information systems department?
a. helpdesk analyst b. telecommunications technician c. network administrator d. web server administrator