Answer: Hyperpersonal communication
Explanation:
In this type of communication we have inter personnel communication mediated through computers such that there is more scope for textual messages than face to face communication.
A notebook is ln excel is that what you are talking about?
Answer:
Explanation:
The code that would best accomplish this task using a while loop would be the following:
list1 = [8, 3, 4, 5, 6, 7, 9]
accum = 0
n = 0
while n < 7:
accum += list1[n]
n += 1
This code will continue throughout the list1 array and add every value to the accum variable.