Solution :
A friend of mine have an old version of computer PC having the following components :
Input devices
Model name of the keyboard -- PUNTA , model number -- P-KB515
Model name of the mouse -- PUNTA, model number -- P-KB515
Output devices
Speaker : COMPAQ
Monitor : ACER,  Model Number  --- EB192Q
Storage : 500 MB capacity hard disk
RAM : 2 GB
Processor : Intel Pentium dual E1260 at the rate 1.80 GHz
It is provided with audio jacks 
 
        
             
        
        
        
The examination phase
Further Explanation:
Hardware troubleshooting in computers requires a systematic and logical approach. Taking a logical approach helps you identify the root cause much easily. Ask yourself those questions first before getting to the bottom of anything. You will find it helpful to reproduce the problem and develop a hypothesis of the problem if you ask yourself those 20 questions.
Next comes the examination phase. Having gathered everything, I will now attempt a fix based on what I think I found. In my case, I suspect that there a component in my computer that is fried. A few ways to tell if my motherboard or components attached to the motherboard are fried is to remove the side panel first and examine the circuitry before removing any unnecessary hardware devices. Obvious sings will be smell of smoke. Examine the capacitors as well. Burnt capacitors have rounded tops. This is a clear indication that they are blown.
I will now remove every single component one by one from the motherboard and test my hardware on a low-level. 
Learn more about computer hardware troubleshooting
brainly.com/question/12704715
brainly.com/question/13182488
#LearnWithBrainly
 
        
             
        
        
        
Answer:
B) To package a repeated task as a function even though the task does not yield a value
Explanation:
The purpose of a function that returns "void" is to package a repeated task as a function even though the task does not yield a value. Since the function does not return any value, it control returns to the caller. 
 
        
             
        
        
        
Answer:
- def getLargest(number_list):
-     new_list = []
- 
-     for x in number_list:
-         if(isinstance(x, int)):
-             new_list.append(x)
- 
-     largest = max(new_list)
- 
-     return largest  
Explanation:
Firstly, create a function <em>getLargest()</em> that take one input parameter, <em>number_list</em>. 
The function will filter out the float type number from the list by using <em>isinstance() </em>method (Line 5). This method will check if a current x value is an integer. If so, the x value will be added to <em>new_list</em>. 
Next, use Python built-in <em>max</em> function to get the largest integer from the <em>new_list </em>and return it as output.
 
        
             
        
        
        
Have them post more positive outcomes and help them understand that what they post stays there forever