Answer: I'd say false.
Explanation: An example of a spreadsheet software would be MS Excel. Access does have an option to create a spreadsheet but it also has other uses.
Answer:
Select the worksheet and click Delete All Filters.
Explanation:
Answer: Internal disk drive is the main storage device located in a computer. It usually contains software applications, the operating system and other files.
Explanation:
Answer:
int calculate_cost(int quantity) {
double cost = 0;
if (quantity <= 20)
cost = quantity * 23.45;
else if (quantity >= 21 && quantity <= 100)
cost = quantity * 21.11;
else if (quantity > 100)
cost = quantity * 18.75;
return cost;
}
Explanation:
Create a function called calculate_cost that takes one parameter, quantity
Initialize the cost as 0
Check the quantity using if else structure. Depending on the quantity passed, calculate the cost. For example, if the quantity is 10, the cost will be $234.5
Return the cost
Answer:
yes
Explanation:
the faster the processor the better the computer loads things and works faster, there's little to no latency depending on the wifi