<span>Select the appropriate technology for a task</span>
Answer:
Manufacturing
Explanation:
Planning. Data plots on all things and future plans as in if how much is bought what prices of stock you will have. Person could improve by taking courses in business planning.
Answer:
var courseTitle ="Principles in Information Technology and Computation";
var result =courseTitle .charAt(2);
Explanation:
Following are the code of javascript code that read the 3 character
var courseTitle ="Principles in Information Technology and Computation";
var result =courseTitle .charAt(2);
document.write(result)
;
The charAt method return the character at the specified position in the string.We can just give the index number in which we find the character at the specified position .