Python can be used to implement central of tendencies such as mean, median and mode using the statistic module
The program in Python, where comments are used to explain each line is as follows:
#This imports the statistics module
import statistics
#This defines the function that calculates the mode
def calcMode(myList):
#This prints the mode
print(statistics.multimode(myList))
#This defines the function that calculates the median
def calcMedian(myList):
#This prints the median
print(statistics.median(myList))
#The main method begins here
#This initializes the list
myList = []
#The following iteration gets input for the list
for i in range(10):
myList.append(int(input()))
#This calls the calcMode method
calcMode(myList)
#This calls the calcMedian method
calcMedian(myList)
Read more about similar programs at:
brainly.com/question/25026386
Router? Modem? I have no ideas outside of those.
Answer:
Awww what happened? Sometimes its hard for me to keep a promise.
Explanation:
Answer:
The answer is D
Explanation:
file association associates a file with an application capable of opening that file. More commonly, a file association associates a class of files with a corresponding application.
Answer: A; X coefficient
Explanation: Hope I helped out !
-Carrie
Ps. it would mean a lot if you marked brainliest