Answer:
Algorithms.
Explanation:
Computer system is an electronic machine that receives input data, processes or executes these data and outputs the results. It comprises of two parts, the hardware and software components. 
The computer receives data created by a process and inputted by individuals. The software components are the operating system and the application softwares running in the operating system. The application software follows a well defined stages of task to execute a task. This is called algorithm.
The application uses the algorithm to execute the task on the input data to give the required result.
 
        
             
        
        
        
Answer /Explanation
load hw92.dat
FID = fopen(file, 'r');
if FID == -1  
    fprintf('ERROR CANNOT OPEN FILE TO READ!');  
else
    fclose(file);
The we have:
datacell = textscan(FID, 'x%fy%f', 'CollectData', 1);
xycoords = datacell{1};
x 0 y 1
x 1.3 y 2.2
x 2.2 y 6
x 3.4 y 7.4
x 4.2 y 5.5
x 4.4 y 4.5
x 6.2 y 7.8
x 7.7 y 11.1
x 8.2 y 11.5
x 9.9 y 15.2
x 7.2 y 9.5
x 8.9 y 12.5
end
 
        
             
        
        
        
Answer:
# Name - Today's Date
# Description
def main():
     print("My favorite TV show is Mythbusters.")
     print("I like it because I learn a lot and they do crazy experiments.")
main() 
(this is the best I can do since it's a specific result based on the choices you make, but I did the example code and you just need to fill it in with the necessary requirements. I also tested it on IDLE. )
 
        
             
        
        
        
Answer:
the ROM chip
Explanation:
the ROM chip is installed on the motherboard which helps boot the system
 
        
             
        
        
        
Yes it is. Why are you asking?