Answer: i’m thinking it’s reviewer
Explanation:
Answer:
Formatting text is the text that is displayed in a specified style. This refers to how text appears in your document. This includes the size, color, and font of the text.
examples: text <em>text </em><u>text</u>
Answer:
uhm 1, 2, 3, 4, 6, 7, and 8.
Explanation:
because those are all the uses of presentation software in a workplace.
The statement above is TRUE.
Hazard assessment requires that a walk through activity be carried out which takes note of all potential hazards in a company or a site.
Failure to identify and recognize these hazards may lead to fatal accidents.
Answer:
function findLongestWord(str) {
var longestWord = str.split(' ').sort(function(a, b) { return b.length - a.length; });
return longestWord[0].length;
}
findLongestWord(InputHere);
Explanation:
Replace InputHere with the input