D. all of these, since it depends on how the cell is formatted.
        
                    
             
        
        
        
Okay so what you would is press ctrl+alt+delete and click log out i think but if you have a disk put it in and secure everything trust me i am a computer savage. i hack thing all the time.
        
             
        
        
        
Answer:
This is the second question like this I've seen. They aren't the greatest.
Explanation:
The question is not good. The answer would be option a, Transport even though it doesn't make a whole lot of sense when you really go into detail.
It could also be option d, Application but I think they're going for the first.
 
        
             
        
        
        
Answer:
The program in QBasic is as follows;
PRINT "Number: "
INPUT N
LET FACT = 1
FOR I = 1 TO N
      FACT = FACT * I
NEXT I
PRINT FACT
END
Explanation:
This prompts user for number
PRINT "Number: "
This accepts input from the user
INPUT N
This initializes the factorial to 1
LET FACT = 1
This iterates through the number the user inputs and calculates its factorial
<em>FOR I = 1 TO N
</em>
<em>      FACT = FACT * I
</em>
<em>NEXT I
</em>
This prints the factorial
PRINT FACT
The program ends here
END
 
        
             
        
        
        
Answer:
DOS: Disk Operating System. DOS was the computer operating system used in the early days of computing and was extended to PC-DOS by Bill Gates when Microsoft was asked by IBM to develop an operating system for the IBM personal computers.
Microsoft Windows. Microsoft Windows is likely the most well-known and common computer operating system in the world today.