Answer:
Teams are diverse.
Explanation:
Teams have great advantage in problem solving over single person. A single persons's thinking is one dimensional. He sees and analyse things according to his perspective and understanding which limits his ability to solve problems .On the other hand team consist of multiple people with multiple background and perspective. Everyone has its own thinking process and it's own perspective, there fore in teams if one person is missing some perspective someone else might be looking in to that perspective which greatly enhance teams problem solving 
 
        
             
        
        
        
Answer:
Written in Python
for num in range(1,1001):
     sum=0
     for j in range(1,num+1):
          if num%j==0:
               sum = sum + j
                    if num == sum:
                         print(str(num)+" is a perfect number")
Explanation:
This line gets the range from 1 to 1000
for num in range(1,1001):
This line initializes sum to 0 for each number 1 to 1000
     sum=0
This line gets the divisor for each number 1 to 1000
     for j in range(1,num+1):
This following if condition line checks for divisor of each number
<em>          if num%j==0:
</em>
<em>               sum = sum + j
</em>
The following if condition checks for perfect number
                    if num == sum:
                         print(str(num)+" is a perfect number")
 
        
             
        
        
        
Answer:
The answer is B. Digital subscriber line technology
Explanation:
Digital subscriber line or DSL technology is used to transmit digital data over telephone wires.
It makes file sharing possible which includes multimedia data (i.e. transfer of pictures and graphics), and also video and audio conferencing. 
DSL uses a reliable medium that prevents packet loss and interruptions. It is also fast.
 
        
             
        
        
        
“3. To get attention from others (brag)”
        
                    
             
        
        
        
Answer:
B. False.
Explanation:
Troubleshooting strategy is a technique used to discover the cause of defeat in a system. The technician must learn to improvise with these strategies to solve a system problems.
Module replacement is a type of troubleshooting strategy that replaces a component with unknown status with another component with good status to determine the cause of the problem.
Removing a component from a system to get back to its basic configuration helps to eliminate factors that may make a computer problem difficult to solve.