b. Replacement cost
c. Manpower cost
d. Cost of good sold
Answer:
A. Opportunity cost.
Explanation:
Opportunity cost shows a relationship between scarcity and choice. The choice and best source of sales for Maria's company is through online product request on e-store website.
The company has two options for sales, the online sales and physical sales in the company itself. When the company's system fails, they decide to focus on the physical sales for the duration of the system failure.
The opportunity cost is the online sales which was put aside for physical sales.
Answer:
The output of the following code is "Hello, we are open! Sincerely, the grocery store ".
Explanation:
In the given code firstly we declare the variable that is numApples and numOranges. In this variable we assign value and the datatype of the variable is var. The var datatype can hold any type of data. Then we use the conditional statement. In the conditional statement, we use the OR logical operator. In the if block we check the condition that is if numApples variable value is less then 20 OR numOranges variable value is equal to numApples then it will print "Hello, we are open!". In the else block it will print "Sorry, we are closed!". In the last, we print "Sincerely, the grocery store".So in this question, if block is executed and the additional message is printed.