Answer:
✔️saves time spent manually creating multiple tasks
Explanation:
I did it on edge
False. bool is in C++, ints are used in C.
Answer:
It can act as a substitute of verbal messages
It has instant effect as the receivers perceive them quickly
Its an aid to verbal communication too.
Explanation:
I hope this helps
Answer:
alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
newList = []
N = 3
for i in range(N):
newList.append(alphabets[i] * 3)
print(newList)
Explanation:
- Initialize the alphabets.
- Use a for loop to append three alphabets to new list.
- Finally print the new list.