Hey friend!
----
<u>The answer is A.</u> I hope this helps, also, please give brainiest to whoever answers first. I didn't answer first, so you should give brainiest to the other person. (not forcing you to!)
----
Have a great Tuesday! (o3o)
- <em>HannaTheGurls</em>
----
Answer:
D.5 years
Explanation:
Annual Depreciation = Cost/Useful life
$15,000=$80,000/Useful life
Useful Life=$80,000/$15,000
Useful Life=5.33
Answer:
Flexibility option
Explanation:
False: It can be used equally for both.
Firms often have an option to vary inputs to the production or change the output from production. Such options are known as flexible production options.\ real option to expand.
Corinne is very excited because she works with a new company that uses due diligence to track these precious metals from mine to manufacturer to ensure they are not "conflict metals. ".
<h3>What is Due Diligence?</h3>
This refers to the conscious steps which a person takes in order to ensure that he is not committing an offense or taking a good background check.
Hence, we can see that because of Corinne's work with a major electronics company, she is charged with doing due diligence on the raw materials to ensure that they are not "conflict metals. ".
Read more about due diligence here:
brainly.com/question/26383473
Answer:
// Program is implemented using Coral Programming Language
int X
int Y
int Sum
Put "Enter any two numbers" to output
x = Get next input
Y = Get next input
if Y < X
Put "Second integer can't be less than the first" to output
else
for Sum = X; Sum <= Y; Sum = Sum + 10
Put Sum to output
Explanation:
The above program is written using Coral Programming Language
The first line is a comment
The next 3 lines declares 3 integer variables
Which are X, Y and Sum
X and Y represent the two input numbers as seen on line 6 and 7
X, being the first and Y being the second
Line 8 tests the larger of the two numbers
If Y is less than X, the output is "Second integer can't be less than the first" without the quotes
Else
The last two lines perform iterative operations that assigns the addition of 10 and X to Sum
It continues printing sum as long as sum is less than the value of Y.