Communication comes in lots of types, therefore, it also has lots of goals and purposes. One of the purpose of communication is to satisfy instrument goals. Instrument goals here refers to the goal that focuses on convincing others to act in an appropriate way. This is most applicable in situations when someone had to deal with others.
Answer:
Explanation:
1 : Ctrl + X
2 Ctrl + C
3 Ctrl + L
4 Ctrl + V
5 Ctrl + B
6 Ctrl + R
7 Ctrl + I
8 Ctrl + E
9 Ctrl + U
10 Ctrl + Z
11 Ctrl + Y
12 Ctrl + N
End
13 Ctrl + A
Home
14 Ctrl + J
15 Ctrl + 2
16 Ctrl + S
17 Ctrl + 1
18 F12
19 Ctrl + W
-----------
20 Ctrl + K
21 Ctrl + ]
22 Ctrl + (left arrow)
23 Ctrl + (right arrow)
24 Ctrl + [
25 Ctrl + Del
26 Ctrl + 5
27 F1 pls mark me as brainliest and
check all the short cuts
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.