Answer:
- import math  
- 
- def standard_deviation(aList):
-     sum = 0
-     for x in aList:
-         sum += x  
-     
-     mean = sum / float(len(aList))
- 
-     sumDe = 0
- 
-     for x in aList:
-         sumDe += (x - mean) * (x - mean)
-     
-     variance = sumDe / float(len(aList))
-     SD = math.sqrt(variance)
- 
-     return SD  
- 
- print(standard_deviation([3,6, 7, 9, 12, 17]))
Explanation:
The solution code is written in Python 3.
Firstly, we need to import math module (Line 1).
Next, create a function standard_deviation that takes one input parameter, which is a list (Line 3). In the function, calculate the mean for the value in the input list (Line 4-8). Next, use the mean to calculate the variance (Line 10-15). Next, use sqrt method from math module to get the square root of variance and this will result in standard deviation (Line 16). At last, return the standard deviation (Line 18).
We can test the function using a sample list (Line 20) and we shall get 4.509249752822894
If we pass an empty list, a ZeroDivisionError exception will be raised.
 
        
             
        
        
        
Answer:
Russian newspaper says U.S. journalism is conducting 'experiments' to introduce fast-growing artificial intelligence technology.
Explanation:
Artificial intelligence (AI) is a wide-ranging tool that enables people to rethink how we integrate information, analyze data, and use the resulting insights to improve decision making—and already it is transforming every walk of life. In this report, Darrell West and John Allen discuss AI's application across a variety of sectors, address issues in its development, and offer recommendations for getting the most out of AI while still protecting important human values.
 
        
                    
             
        
        
        
deep blue IBM's chess-playing computer
        
             
        
        
        
Answer:
focuses on a certain subject
Explanation:
it means that it focuses on that one subject and none others
Hope it helps c:
 
        
             
        
        
        
Answer: (A) At least one type is parameterized
Explanation:
  A template class is the type of class in which the one type are parameterized atleast in each template class. The template class mainly provide the various type of specifications so that it can generate the class based on the different types of parameters. 
A template class is basically initialized by passing the template argument in the given types. In this type of class atleast one type is defined as the generic type. 
Therefore, Option (A) is correct.