Answer:
D
Explanation:
because you need people to access software through hardware and data through information and procedures.
Performance would be the answer
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
Your answer would be B.) "It streamlines the HTML document."