Answer:
Cash and equivalents $700 Debit*
Accounts Receivables $700 Credit*
Explanation: The cash represents a debit because we are receiving the cash from a sale already made and the credit is made accounts receivable, because the product was previously sold only that a payment term was given to the person who is currently fulfilling, then the account receivable becomes cash as part of the company's operating cycle.
Answer:
A. Market Capitalization rate = 13%
B. Intrinsic Value = $46.22
Explanation:
<em>A. Market Capitalization rate:</em>
CAPM should be used to calculate market capitalization from the given data. Following is the formula for CAPM

r = risk free rate
M = market portfolio return
B = beta
Solution:

CAPM = 13%
<em>B. Intrinsic Value of stock</em>
Gordon Growth Model (GGM) should be used to calculate intrinsic value of stock based on the given data.
Following is the formula for GGM

D = Current Dividend
g = Dividend Growth rate
r = market capitalization rate (CAPM calculated in part A)
Solution:

DDM = $46.22
<em>Note: All values are rounded off to two decimal points.</em>
I believe it’s b..... hope this helps pls tell me if I’m wrong! <3
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.