Computer Science, asked by muskanlaskar479, 4 months ago


Mr Sharma has invested Rs. 27500 in 200 shares of XYZ co Ltd and 52500 in 250 shares of
ABC co Ltd. Write a program to calculate average investment cost per share.
TO​

Answers

Answered by Equestriadash
19

The following codes have been written using Python.

Source code:

amtXYZ = float(input("Enter the amount invested in XYZ: "))

amtABC = float(input("Enter the amount invested in ABC: "))

sharesXYZ = int(input("Enter the shares bought in XYZ: "))

sharesABC = int(input("Enter the shares bought in ABC: "))

ta = amtXYZ + amtABC

ts = sharesXYZ + sharesABC

avgcps = ta/ts

print()

print(ta, "is the total amount invested.")

print(ts, "is the total shares bought.")

print(avgcps, "is the average investment per share.")

Answered by navsharma767
2

Answer:

Solution:-

(i) Nominal value of 1 share =Rs.100

Nominal value of 60 shares =60×100=Rs.6000

Market value of 1 share =Rs.100+60% of Rs.100=100+60=Rs.160

Market value of 60 shares =160×60=Rs.9600[Answer]

(ii) Nominal value of 1 share =Rs.50

Market value of 1 shares =Rs.50−4% of Rs.50=50−2=Rs.48

No. of shares purchased =

48

9600

=200 shares[Answer]

(iii) Nominal value of 200 shares =Rs.50×200=Rs.10000

Dividend %=18%

Dividend =18% of Rs.10000=

100

18

×10000=Rs.1800[Answer]

Explanation:

mark me brainliest

Similar questions