Answer:
$48,000
Explanation:
The computation of the total amount paid to the preferred shareholder is shown below:
= Number of preferred stock shares × par value × dividend rate × number of years
= 1,200 shares × $100 × 10% × 4 years
= $48,000
Simply we multiplied with the number of preferred stock with the par value, its dividend rate and the time period so that the correct value can come
All other information which is given is not relevant. Hence, ignored it
Answer:
Dialogue with a goal of helping another be more effective and achieve his or her full potential on the job is referred to as coaching.
I think it'd be E. I hope that helps!
Explanation:
I guess? I cant tell ....
Answer:
A statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased.
if(nbooksPurchased > 4){
if(isPremiumCustomer){
freeBooks = 1;
if(nbooksPurchased > 7){
freeBooks = 2;
}
}else{
freeBooks = 0;
if(nbooksPurchased > 6){
freeBooks = 1;
}
if(nbooksPurchased > 11){
freeBooks = 2;
}
}
}else{freeBooks = 0;}
Explanation: