Answer:
On the World Wide Web
Explanation:
Sure theres always a homepage somewhere. But i dont know what your researching so i went with c.
Technician A is correct.
Electrochemical batteries can be classified into two main categories; Primary Cells and Secondary Cells.
A primary battery or cell cannot easily be recharged after use and is usually recommended to be discarded following discharge. Most primary cells are termed dry due to their capability of utilizing electrolytes contained within absorbent material.
A secondary cell, on the other hand, can be recharged electrically to their original pre-discharge condition.
that is incorrect! Playstation is the correct answer
Answer:
The following code is in python.
import statistics as st #importing statistics which include mean function.
def average(lst): #function average.
return st.mean(lst)#returning mean.
lst=a = list(map(int,input("\nEnter the list : ").strip().split()))#taking input of the list..
print("The average is "+str(average(lst)))#printing the average.
Output:-
Enter the list :
1 2 3 4 5 6
The average is 3.5
Explanation:
I have used the statistics library which includes the mean function that calculates the mean or average of the list.In the function average having lst as an argument returns the mean of the list lst.
Then taking lst input from the user and printing it's average.