Answer:
Common stock dividend distributable = Par * Number of shares * % dividend
= 13 * 46,500 * 15%
= $90,675
Stock Dividend = Number of shares * market price * % dividend
= 46,500 * 18 * 15%
= $125,550
Date Account Title Debit Credit
Dec, 1 Stock Dividend $125,550
Common Stock Dividend Distributable $90,675
Paid in Capital in excess of Par- $34,875
Common stock
Date Account Title Debit Credit
Dec, 31 Common Stock Dividend Distributable $90,675
Common Stock $90,675
A would be your best answer. Hope I helped!
Answer:
d. $2(1.10)/[0.15-0.10]
Explanation:
The formula to compute the today value of the stock by using the Gordon model is shown below:
= Next year dividend ÷ (Required rate of return - growth rate)
where,
Next year dividend is
= $2 + $2 × 10%
= $2 + 0.2
= $2.2
And, the required rate of return is 15%
Plus the growth rate of return is 10%
So, the today value of the stock is
= $2.2 ÷ (15% - 10%
= $44
The correct answer for the for loop is:
for (int i=1; i<200; i++){
if ((i%2)==0 && (i%3)==0){
cout << i << " ";
}
}
Python offers three options for running the loops. For iterating repeatedly through a sequence, use a for loop (that is either a list, a tuple, a dictionary, a set, or a string). This functions more like an iterator method seen in other object-oriented programming languages and is less like the for keyword found in other programming languages. The for loop allows us to run a series of instructions once for each element of a list, tuple, set, etc. There is no need to set an indexing variable before using the for loop.
Write a for loop that prints, in ascending order, all the positive integers less than 200 that are divisible by both 2 and 3, separated by spaces.
Learn more about loops here:
brainly.com/question/25955539
#SPJ4