The power-on self-test does all of the following EXCEPT ________
A) load the operating system
B) test memory chips
C) test the video card and video memory
D) identify the BIOS
A
You might also like to view...
In the following pseudocode which uses recursion to find the factorial of a number, which is the recursive case?
``` Module main() Declare Integer number Declare Integer numFactor Display "Enter a non-negative integer:" Input number Set numFactor = factor(number) Display "The factorial of ", number, " is ", numFactor End Module Function Integer factor(Integer n) If n == 0 Then Return 1 Else Return n * factor(n - 1) End If End Function ``` a. n == 0 b. n * factor(n - 1) c. factor(n - 1) d. n > 0
What are abstract methods? Describe the circumstances in which an abstract method would be appropriate.
What will be an ideal response?