Answer:
Option B i.e., a production plan.
Explanation:
While sales are estimated, the manufacturing schedule for estimating the necessary raw materials should be produced.
So when the revenue is already estimated then at that time the manufacturing schedule should be produced approximately that raw material which is needed, so the following option is correct according to the scenario.
- Option a is incorrect because it is not related to the following scenario.
- Option B is incorrect because in the above statement, it is not mentioned or related to the budget plan.
Answer:
The correct answers would be <u>B.) a line graph</u> and <u>D.) a bar graph</u>
Explanation:
I just did the assignment on edge 2020 and got it right
Answer:
Written in Python
name = input("Name: ")
wageHours = int(input("Hours: "))
regPay = float(input("Wages: "))
if wageHours >= 60:
->total = (wageHours - 60) * 2 * regPay + 20 * 1.5 * regPay + regPay * 40
else:
->total = wageHours * regPay
print(name)
print(wageHours)
print(regPay)
print(total)
Explanation:
The program is self-explanatory.
However,
On line 4, the program checks if wageHours is greater than 60.
If yes, the corresponding wage is calculated.
On line 6, if workHours is not up to 60, the total wages is calculated by multiplying workHours by regPay, since there's no provision for how to calculate total wages for hours less than 60
The required details is printed afterwards
Note that -> represents indentation
Answer:
I think it is 1 because that is all that works for me
What you said? And what you get?