A I believe is the correct answer
In 2016, Bubble Inc. had net income of $500,000, assets of $5,000,000, sales of $2,000,000, and debt of 2,000,000. In 2017, Bubb
victus00 [196]
Answer:
No
Explanation:
The computation of the return of assets is calculated by applying the formula which is shown below:
Return on assets = Net income ÷ assets
In 2016, the return on assets would be equal to
= $500,000 ÷ $5,000,000
= 0.1
In 2017, the return on assets would be equal to
= $600,000 ÷ $7,000,000
= 0.085
By comparing the return on assets for both the years, we get to know that the return on assets is declining from 2016 to 2017
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.