Hello,
Your answer would be:
1. It’s important to have a good study skill so you can be ready to take a quiz such as world history.
2. It’s important to know your time on tasks because you don’t want to spend all day on one simple task you want to get things done.
3. A schedule can help you get organzied because it helps you with your time such as this go along with your second question.
Have a nice day :)
~Rendorforestmusic
Answer:
Explanation:
The following Python program uses a combination of dictionary, list, regex, and loops to accomplish what was requested. The function takes a file name as input, reads the file, and saves the individual words in a list. Then it loops through the list, adding each word into a dictionary with the number of times it appears. If the word is already in the dictionary it adds 1 to its count value. The program was tested with a file named great_expectations.txt and the output can be seen below.
import re
def wordCount(fileName):
file = open(fileName, 'r')
wordList = file.read().lower()
wordList = re.split('\s', wordList)
wordDict = {}
for word in wordList:
if word in wordDict:
wordDict[word] = wordDict.get(word) + 1
else:
wordDict[word] = 1
print(wordDict)
wordCount('great_expectations.txt')
Answer:
you cannot leave a field empty
you can enter data based on the defined data type
You can move one cell to the right by using the Tab key.
Answer:
C. Object Oriented
Explanation:
In Object Oriented approach to development of information systems, processes and data are handled independently and could be tested as separate modules before the actual development begin.
Hope this helps!