Answer:
A.Use rounding to get -6(0.2), and then multiply. and D. use front end estimation to get -6(0.2), and multiply. and B.
Explanation:
just took the test
Answer:
Answer in the below
Explanation:
Redo means the previous one and undo means removing it... i am not so sure..
Answer: inattention, lack of knowledge, and negligence.
Explanation: employees are often the cause of workplace incidents because they may be unknowledgeable about security protocols, negligent, or simply make a mistake.
Bing offers work pretty good, I have gotten the rewards a couple of times
Answer:
The list created by the split method in Python 3 will be ["red", "orange", ""yellow", "green", "blue"]
Explanation:
In Python 3, the split method takes the input string, in this case is colors = "red,orange,yellow,green,blue", and split it into a list and you can indicate the separator that the method will use.
The general syntax for this method is:
string.split(separator,max)
separator indicates the character that will be used as a delimiter of each list member and the max parameter indicates the maximum number of separations to make.
Since each color in your string is separated by the character "," the code will make a list in which every color is a separated string.