Answer:
a) a plotting object like point, line, or other shape
Explanation:
A geom in the ggplot2 system is "a plotting object like point, line, or other shape."
A Geom is used in formulating different layouts, shapes, or forms of a ggplot2 such as bar charts, scatterplots, and line diagrams.
For example some different types of Geom can be represented as geom_bar(), geom_point(), geom_line() etc.
Answer: Desktop and laptop computers require an operating system with a file __Management________ system that allows users to view and manipulate data files.
Answer:
Explanation: integer is the meaning of int() if you payed attention to programming class, int() would be a WHOLE number and not a decimal number, 2nd of all, a decimal number would be float() so the answer is int() hope i helped!
Explanation:
hope this helped byyyyyyyyyyye
Answer:
Add after line 3:
numItems = numItems - 1;
Explanation:
The complete code of Tiffany should be provided in question is:
line 0 -- var numItems = promptNum("How many items?");
line 1-- var total = 0;
line 2-- while (numItems > 0){
line 3-- total = total + promptNum("Enter next item price");
line4-- }
line 5-- console.log("The total is" + total);