I would say A.Informal and casual online persona
Answer:
It is all of the above
Explanation:
Technology is seen everywhere like in DVD player , a new medical treatment and skills needed to purify water
Answer:
Make sure you have it open in full screen. Then, at the bottom you see a list of things like bold, italic, and underline.
Hope this helps!
Answer:
The program in Python is as follows:
wordInput = input()
myList = wordInput.split(" ")
for i in myList:
print(i,myList.count(i))
Explanation:
This gets input for the word
wordInput = input()
This splits the word into a list using space as the delimiter
myList = wordInput.split(" ")
This iterates through the list
for i in myList:
Print each word and its count
print(i,myList.count(i))