Answer:
Equity Shares are commonly called Common shares and have both advantages and disadvantages over Preference shares.
- Equity shareholders are allowed to vote on company issues while preference shareholders can not.
- Preference shareholders get paid first between the two in the case that the company liquidates from bankruptcy.
- Preference shareholders get a fixed dividend that has to be paid before equity share dividends are paid.
- Preference shareholders can convert their shares to Equity shares but equity shareholders do not have the same courtesy.
- Preference shares can only be sold back to the company while equity shares can be sold to anybody.
John has 200 more socks than Johnny
Answer:
c. double triple(float n) { return (3 * n); }
Explanation:
In option a print is used to print integer.While printf is used in C to print something.
In option b there is no * operator between s s s it should be s*s*s.So it will give error.
In option d there is also no multiply operator * in between 3.14 2 r it should be 3.14*2*r.
So we can say that option c is error free.