HTMLify
Pp fmcf
Views: 41 | Author: djdj
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>MBA FMCF Numerical Questions</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 20px auto; background-color: #f4f4f4; } .container { background: #fff; padding: 10px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .header { text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px; } .unit-title { background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-size: 1.2em; } .section-title { font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px; } .question-box { border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1; } table { width: 100%; border-collapse: collapse; margin: 10px 0; } th, td { border: 1px solid #bdc3c7; padding: 10px; text-align: center; } th { background-color: #dfe6e9; } </style> </head> <body> <div class="container"> <div class="header"> <h1>MBA (SEM II) THEORY EXAMINATION 2023-24</h1> <h2>FINANCIAL MANAGEMENT AND CORPORATE FINANCE</h2> </div> <div class="unit-title">UNIT I: Introduction to Finance & Time Value of Money</div> <div class="section-title">SECTION A</div> <div class="question-box"> <strong>1(b).</strong> Explain Doubling period Rule of 69. </div> <div class="unit-title">UNIT II: Investment and Financing Decision (Capital Budgeting & Cost of Capital)</div> <div class="section-title">SECTION B</div> <div class="question-box"> <strong>2(b).</strong> Define the composite cost of capital. Describe the steps involved in calculating the WACC for a company. Why is WACC important for a firm's investment decisions? Provide a numerical example to illustrate the calculation. </div> <div class="section-title">SECTION C</div> <div class="question-box"> <strong>4(b).</strong> A Ltd. Company Ltd. is considering the purchase of a machine. Two machines, X and Y are available each costing Rs. 5,000. Earnings after taxation and depreciation based on fixed installment system are expected to be as follows: <table> <tr> <th>Year</th> <th>Machine A (Rs.)</th> <th>Machine B (Rs.)</th> </tr> <tr><td>1</td><td>500</td><td>200</td></tr> <tr><td>2</td><td>1,000</td><td>300</td></tr> <tr><td>3</td><td>1,500</td><td>1,000</td></tr> <tr><td>4</td><td>400</td><td>2,000</td></tr> <tr><td>5</td><td>100</td><td>1,000</td></tr> </table> You are requested to advice the management to compare both the alternatives and decide to choose a machine, according to Net Present Value Method. A discount rate of 10% is to be used. </div> <div class="unit-title">UNIT III: Financial Decision (Leverage & Capital Structure)</div> <div class="section-title">SECTION B</div> <div class="question-box"> <strong>2(c).</strong> A Ltd. has sales of Rs. 20,00,000, variable cost of Rs. 14,00,000 and fixed costs of Rs. 4,00,000 and debt of Rs. 10,00,000 at 10% rate of interest. What is the operating, financial and combined leverages? If the firm wants to double the Earnings before interest and tax, how much of a rise in sales would be needed on a percentage basis? </div> <div class="unit-title">UNIT IV: Dividend Relevance</div> <div class="section-title">SECTION B</div> <div class="question-box"> <strong>2(d).</strong> The earnings per share of a company are Rs. 8 and the rate of capitalization applicable to the company is 10%. The company has before it an option of adopting a payout ratio of 25% or 50%. Using Walter's formula of dividend payout, compute the market value of the company's share if the productivity of retained earnings is 15%. </div> <div class="section-title">SECTION C</div> <div class="question-box"> <strong>6(b).</strong> A company belongs to a risk class for which the appropriate rate of capitalization is 10%. The total number of equity shares is 30,000. The current market price of an equity share is Rs. 80. The company is thinking to declare a dividend of Rs. 4 per share at the end of the current year. The company expects to have a net income of Rs. 3,00,000. It has a proposal to make an investment of Rs. 6,00,000 in new proposals. If MM approach is adopted, show that payment or non-payment of dividend does not affect the value of equity shares of the company. </div> <div class="unit-title">UNIT V & SPECIAL TOPICS: Portfolio & Mergers</div> <div class="section-title">SECTION C</div> <div class="question-box"> <strong>3(b).</strong> From the following information, by using CAPM model calculate the expected rate of return of a portfolio:<br> Risk Free rate of interest: 12%<br> Expected return of market portfolio: 18%<br> Standard deviation of an asset: 2.8%<br> Market standard deviation: 2.3%<br> Co-relation co-efficient of portfolio with market: 0.8% </div> <div class="question-box"> <strong>7(b).</strong> A Ltd wants to acquire B Ltd and has offered a swap ratio of 1:2 shares. Following information is provided: <table> <tr> <th>Particulars</th> <th>A Ltd</th> <th>B Ltd</th> </tr> <tr><td>Profit After Tax</td><td>18,00,000</td><td>3,60,000</td></tr> <tr><td>Equity shares</td><td>6,00,000</td><td>1,80,000</td></tr> <tr><td>Earnings per share</td><td>3</td><td>2</td></tr> <tr><td>PE Ratio</td><td>10 times</td><td>7 times</td></tr> <tr><td>Market price per share</td><td>30</td><td>14</td></tr> </table> Based on above information calculate:<br> 1. Number of equity shares to be issued by A Ltd for acquisition of B Ltd.<br> 2. EPS of A Ltd after the acquisition?<br> 3. Value of A Ltd after acquisition. </div> </div> <div class="header" style="text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px;"> <h1 style="margin: 0;">MBA (SEM II) THEORY EXAMINATION 2022-23</h1> <h2 style="margin: 5px 0;">FINANCIAL MANAGEMENT AND CORPORATE FINANCE</h2> </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-size: 1.2em;">UNIT I: Introduction & Valuation</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(a).</strong> What is meant by Asset Based Valuation Model? </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(b).</strong> Define Arbitrage Pricing Theory (APT). </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-size: 1.2em;">UNIT II: Investment and Financing Decision (Cost of Equity & Capital Budgeting)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(d).</strong> The average rate of dividend paid by Veer Co. Ltd. for the last five year is 21 Percent. The earnings of the company have recorded a growth rate of 3 percent per annum. The market value of the equity share is estimated to be Rs. 105. Find out the cost of equity share capital. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(b).</strong> A project cost Rs. 96,000 and is expected to generate cash inflows of Rs. 48,000, Rs. 42,000 and Rs. 36,000 at the end of each year for next 3 years. Calculate project's IRR. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(a).</strong> A project will cost Rs. 4,00,000. Its stream of earnings before depreciation, interest and taxes (EBDIT) during first year through five years is expected to be Rs. 1,00,000, Rs. 1,20,000, Rs. 1,40,000, Rs. 1,60,000 and Rs. 2,00,000. Assume a 30% tax rate and depreciation on straight-line basis. Calculate the project's accounting rate of return. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(b).</strong> XYZ Ltd. issued 2,000 10% Preference Share of Rs. 200 each. Cost of issue is Rs. 3 per share. Calculate cost of preference capital if these shares are issued: (1) at par (2) at premium and (3) at 2% discount. Also calculate cost of preference shares after tax in the above situations, if corporate dividend tax is 10%. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-size: 1.2em;">UNIT III: Financial Decision (Leverage & EBIT-EPS Analysis)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(e).</strong> A company has estimated that for a new product its selling price is Rs. 15 per unit, variable cost is Rs. 10 per unit and fixed cost is Rs. 10,000. Calculate the operating leverage for sales volume of 5,000 units. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(a).</strong> A company needs Rs. 10,00,000 for the installation of a new factory. The new factory is expected to yield an annual earnings before interest and taxes (EBIT) of Rs. 1,60,000. The current market price per share is Rs. 25 and is expected to drop to Rs. 20 if the funds are borrowed in excess of Rs. 5,00,000. It is considering the possibility of issuing equity shares and raising debt of Rs. 1,00,000 or Rs. 4,00,000 or Rs. 6,00,000. Funds can be borrowed at the interest rates indicated below:<br> Up to Rs. 1,00,000 at 8%<br> Over Rs. 1,00,000 to Rs. 5,00,000 at 12% and<br> Over Rs. 5,00,000 at 18%<br> Assume a tax rate of 50%. Determine the earning per share (EPS) and suggest the best alternative. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(b).</strong> A company has sales of Rs. 1 Lakh. The variable costs are 40% of the sales while the fixed operating costs amount to Rs. 30,000. The amount of interest on long-term debt is Rs. 10,000. You are required to calculate the Operating, Financial and Composite leverages and illustrate its impact if sales increased by 5%. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-size: 1.2em;">UNIT IV: Dividend Models (Walter & Gordon)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(d).</strong> Details regarding three companies are given below: <table style="width: 100%; border-collapse: collapse; margin: 10px 0; border: 1px solid #bdc3c7;"> <tr style="background-color: #dfe6e9;"> <th style="border: 1px solid #bdc3c7; padding: 10px;">Particulars</th> <th style="border: 1px solid #bdc3c7; padding: 10px;">U Ltd.</th> <th style="border: 1px solid #bdc3c7; padding: 10px;">V Ltd.</th> <th style="border: 1px solid #bdc3c7; padding: 10px;">W Ltd.</th> </tr> <tr> <td style="border: 1px solid #bdc3c7; padding: 10px;">Internal Rate of Return (r)</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">15%</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">10%</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">8%</td> </tr> <tr> <td style="border: 1px solid #bdc3c7; padding: 10px;">Market Capitalisation Rate (Ke)</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">10%</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">10%</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">10%</td> </tr> <tr> <td style="border: 1px solid #bdc3c7; padding: 10px;">Earnings Per Share (E)</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">Rs. 10</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">Rs. 10</td> <td style="border: 1px solid #bdc3c7; padding: 10px;">Rs. 10</td> </tr> </table> By using Walter's Model, you are required to: (I) Calculate the value of an equity share of each of these three companies when dividend payout ratio is (i) 20%, (ii) 50%, (iii) 0% and (iv) 100%. (II) Comment on the result drawn. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>6(a).</strong> The following information is available in respect of the rate of return on investment, the cost of capital and earnings per share of Ved Ltd.<br> Rate of Return on Investment (r) = (i) 15%; (ii) 12%; and (iii) 10%<br> Cost of Capital (Ke) = 12%<br> Earnings per Share (E) = Rs. 10<br> Determine the value of its share by using Gordon's Model assuming the following:<br> <table style="width: 100%; border-collapse: collapse; margin: 10px 0; border: 1px solid #bdc3c7;"> <tr style="background-color: #dfe6e9;"> <th style="border: 1px solid #bdc3c7; padding: 10px;">Option</th> <th style="border: 1px solid #bdc3c7; padding: 10px;">D/p Ratio (1-b)</th> <th style="border: 1px solid #bdc3c7; padding: 10px;">Retention Ratio (b)</th> </tr> <tr><td style="border: 1px solid #bdc3c7; padding: 10px;">(I)</td><td style="border: 1px solid #bdc3c7; padding: 10px;">100</td><td style="border: 1px solid #bdc3c7; padding: 10px;">0</td></tr> <tr><td style="border: 1px solid #bdc3c7; padding: 10px;">(II)</td><td style="border: 1px solid #bdc3c7; padding: 10px;">80</td><td style="border: 1px solid #bdc3c7; padding: 10px;">20</td></tr> <tr><td style="border: 1px solid #bdc3c7; padding: 10px;">(III)</td><td style="border: 1px solid #bdc3c7; padding: 10px;">40</td><td style="border: 1px solid #bdc3c7; padding: 10px;">60</td></tr> </table> </div> <div class="header" style="text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px;"> <h1 style="margin: 0; font-size: 1.5em;">MBA (SEM II) THEORY EXAMINATION 2021-22</h1> <h2 style="margin: 5px 0; font-size: 1.2em;">FINANCIAL MANAGEMENT AND CORPORATE FINANCE</h2> <p><strong>(Numerical Questions Only)</strong></p> </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT II: Investment and Financing Decision</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(c).</strong> Define Profitability Index. How is it calculated? </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(d).</strong> A project requires an outlay of Rs. 50,000 and yields annual cash inflow of Rs. 12,500 for 7 years. Calculate the payback period for the project. And also tell whether this project will be accepted or not and why? </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(a) ii.</strong> Triple 'V' Ltd. issued 1,000 10% Preference Shares of Rs. 100 each. Cost of issue is Rs. 2 per share. Calculate cost of preference capital if these shares are issued: (I). at par (II). at 5% premium and (III). at 2% discount. Also calculate cost of preference shares after tax in the above situations, if corporate dividend tax is 10%. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(b) ii.</strong> A project costs Rs. 16,000 and is expected to generate cash inflows of Rs. 8,000, Rs. 7,000 and Rs. 6,000 at the end of each year for next 3 years. Calculate IRR by Trial and Error Method. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(a).</strong> The average rate of dividend paid by 'V' Ltd. for the last five years is 21%. The earnings of the company have recorded a growth rate of 3% per annum. The market value of the equity shares is estimated to be Rs. 105. Find out: <br> (I). The cost of equity share capital. <br> (II). Determine the estimated market price of the equity shares if the anticipated growth rate of the firm rises to 5%. <br> (III). If the company's cost of capital is 20% and anticipated growth rate is 5%, determine the market price of the share, assuming the same dividend per share. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(b).</strong> A project will cost Rs. 40,000. Its stream of earnings before depreciation, interest and taxes (EBDIT) during first year through five years is expected to be Rs. 10,000, Rs. 12,000, Rs. 14,000, Rs. 16,000 and Rs. 20,000. Assume a 50% tax rate and depreciation on straight-line basis. Calculate project's ARR. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT III: Financial Decision (Capital Structure & Leverages)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(f).</strong> A company has estimated that for a new product its selling price is Rs. 14 per unit, variable cost is Rs. 9 per unit and fixed cost is Rs. 10,000. Calculate the Operating Leverage for sales volumes of 3,000 units. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(a) i.</strong> The capital structure of "VEER" Ltd. is as follows: 10% Debentures Rs. 8,00,000; 4,000 6% Pref. Shares of Rs. 100 each Rs. 4,00,000; 8,000 Equity Shares of Rs. 100 each Rs. 8,00,000. EBIT is Rs. 3,00,000. Expansion programme requires Rs. 10,00,000 (Expected EBIT increase Rs. 1,00,000). Tax 50%. Alternatives: (I) Issue 14% Debentures at par, (II) Issue 6% Preference Shares at par, (III) Issue Equity Shares at par. Examine alternatives and suggest best financing. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(b).</strong> "BHARAT" Ltd. has sales of Rs. 25,00,000. The fixed costs are Rs. 4,00,000 and variable costs are Rs. 17,00,000. The company uses a debt of Rs. 10,00,000 @ 12% p.a. From the available data, calculate the operating, financial and combined leverages. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT IV: Dividend Decisions</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(b) i.</strong> The earnings per share of a company are Rs. 16. The market value of discount (Capitalisation rate) to the company is 12.5%. Retained earnings can be employed to yield a return of 10%. The company is considering a payout of 25%, 50% and 75%. Which of these would maximize the wealth of shareholders? </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>6(b).</strong> Radhe Engineering Co. Ltd. currently has outstanding 1,00,000 shares selling at Rs. 100 each. Declaring dividend of Rs. 5 per share. Ke = 10%. (I). Price of share at end of year if (i) dividend is not declared and (ii) dividend is declared. (II). Explain as per M-M approach wealth of shareholders is equal whether dividend is paid or not. </div> <div class="header" style="text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px;"> <h1 style="margin: 0; font-size: 1.5em;">MBA (SEM II) THEORY EXAMINATION 2018-19</h1> <h2 style="margin: 5px 0; font-size: 1.2em;">FINANCIAL MANAGEMENT AND CORPORATE FINANCE</h2> <p><strong>(Numerical Questions Only)</strong></p> </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT I: Risk and Return</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>3(a).</strong> The following table gives dividend and share price data for 'VEER' manufacturing Company: <table style="width: 100%; border-collapse: collapse; margin: 10px 0; text-align: center; border: 1px solid #bdc3c7;"> <tr style="background-color: #dfe6e9;"> <th style="border: 1px solid #bdc3c7; padding: 5px;">Year</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">Dividend Per Share</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">Closing Share Price</th> </tr> <tr><td style="border: 1px solid #bdc3c7;">2008</td><td style="border: 1px solid #bdc3c7;">2.50</td><td style="border: 1px solid #bdc3c7;">12.25</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2009</td><td style="border: 1px solid #bdc3c7;">2.50</td><td style="border: 1px solid #bdc3c7;">14.20</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2010</td><td style="border: 1px solid #bdc3c7;">2.50</td><td style="border: 1px solid #bdc3c7;">17.50</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2011</td><td style="border: 1px solid #bdc3c7;">3.00</td><td style="border: 1px solid #bdc3c7;">16.75</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2012</td><td style="border: 1px solid #bdc3c7;">3.00</td><td style="border: 1px solid #bdc3c7;">18.45</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2013</td><td style="border: 1px solid #bdc3c7;">3.25</td><td style="border: 1px solid #bdc3c7;">22.25</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2014</td><td style="border: 1px solid #bdc3c7;">3.50</td><td style="border: 1px solid #bdc3c7;">23.50</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2015</td><td style="border: 1px solid #bdc3c7;">3.50</td><td style="border: 1px solid #bdc3c7;">27.75</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2016</td><td style="border: 1px solid #bdc3c7;">3.50</td><td style="border: 1px solid #bdc3c7;">25.50</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2017</td><td style="border: 1px solid #bdc3c7;">3.75</td><td style="border: 1px solid #bdc3c7;">27.95</td></tr> <tr><td style="border: 1px solid #bdc3c7;">2018</td><td style="border: 1px solid #bdc3c7;">3.75</td><td style="border: 1px solid #bdc3c7;">31.30</td></tr> </table> You are required to calculate: (i) The annual rates of return, (ii) The expected (average) rate of return, (iii) The variance, and (iv) The standard deviation of returns. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT II: Capital Budgeting & Cost of Capital</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(d).</strong> A project requires an outlay of Rs. 1,00,000 and yields annual cash inflow of Rs. 25,000 for 7 years. Calculate the payback period for the given project. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(a).</strong> A project costs Rs. 15,500 and is expected to generate cash inflows of Rs. 8000, Rs. 7000 and Rs. 6000 at the end of each year for next 3 years. Find out the project's IRR by trial and error method. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(b).</strong> A company issued 10,000 ten-years 8% debentures of Rs. 100 each at 4% discount. Under the terms of debenture trust, these debentures are to be redeemed after 10 years at 5% premium. The cost of issue is 2%. Assuming tax rate at 50%, Calculate the cost of debt capital before and after tax. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT III: Leverages & Capital Structure</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(f).</strong> A company has estimated that for a new product its selling price is Rs. 15 per unit, variable cost is Rs. 10 per unit and fixed cost is Rs. 10,000. Calculate the operating leverage for sales volume of 5000 units. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(a).</strong> The present capitalisation of a company is as follows:<br> 4,000, 5% Debentures of Rs. 100 each: Rs. 4,00,000<br> 2,000, 8% Redeemable Preference Shares of Rs. 100 each: Rs. 2,00,000<br> 40,000 Equity Shares of Rs. 10 each: Rs. 4,00,000<br> Total: Rs. 10,00,000<br><br> The present earnings (EBIT) are 10% on invested capital. The company needs Rs. 2,00,000 for a special plant and it is estimated that additional investment will produce 10% earnings every year. The Company has asked for your advice as to whether requisite amount be obtained in the form of 5% Debentures or 8% Redeemable Preference Shares or Equity Shares. Assume 50% tax rate. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(b).</strong> A Company has sales of Rs. 1 lakh. The variable costs are 40% of the sales while the fixed operating costs amount to Rs. 30,000. The amount of interest on long-term debt is Rs. 10,000. You are required to Calculate the operating, financial and composite leverages and illustrate its impact if sales increased by 5%. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT IV: Dividend Decisions</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>6(b).</strong> XYZ Company currently has outstanding 2,00,000 shares selling at Rs. 200 each. The firm is thinking of declaring a dividend of Rs. 10 per share at the end of the current year. The Capitalizations rate of this type of firm is 10%.<br> (A) What will be the price of the share at the end of the year if (i) A dividend is not declared and (ii) A dividend is declared.<br> (B) Explain that as per M.M. approach the wealth of share holders is equal whether dividend is paid or not. </div> <div class="header" style="text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px;"> <h1 style="margin: 0; font-size: 1.5em;">MBA (SEM II) THEORY EXAMINATION 2017-18</h1> <h2 style="margin: 5px 0; font-size: 1.2em;">FINANCIAL MANAGEMENT</h2> <p><strong>(Numerical Questions Only)</strong></p> </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT II: Cost of Capital & Investment Decisions</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(e).</strong> A firm has the following capital structure and after-tax costs for the different sources of funds used: <table style="width: 100%; border-collapse: collapse; margin: 10px 0; border: 1px solid #bdc3c7;"> <tr style="background-color: #dfe6e9;"> <th style="border: 1px solid #bdc3c7; padding: 8px;">Source of Funds</th> <th style="border: 1px solid #bdc3c7; padding: 8px;">Amount (Rs.)</th> <th style="border: 1px solid #bdc3c7; padding: 8px;">After-tax cost (%)</th> </tr> <tr><td style="border: 1px solid #bdc3c7; padding: 8px;">Debt</td><td style="border: 1px solid #bdc3c7; padding: 8px;">15,00,000</td><td style="border: 1px solid #bdc3c7; padding: 8px;">5</td></tr> <tr><td style="border: 1px solid #bdc3c7; padding: 8px;">Preference Shares</td><td style="border: 1px solid #bdc3c7; padding: 8px;">12,00,000</td><td style="border: 1px solid #bdc3c7; padding: 8px;">10</td></tr> <tr><td style="border: 1px solid #bdc3c7; padding: 8px;">Equity Shares</td><td style="border: 1px solid #bdc3c7; padding: 8px;">18,00,000</td><td style="border: 1px solid #bdc3c7; padding: 8px;">12</td></tr> <tr><td style="border: 1px solid #bdc3c7; padding: 8px;">Retained Earnings</td><td style="border: 1px solid #bdc3c7; padding: 8px;">15,00,000</td><td style="border: 1px solid #bdc3c7; padding: 8px;">11</td></tr> <tr style="font-weight: bold;"><td style="border: 1px solid #bdc3c7; padding: 8px;">Total</td><td style="border: 1px solid #bdc3c7; padding: 8px;">60,00,000</td><td style="border: 1px solid #bdc3c7; padding: 8px;">-</td></tr> </table> You are required to compute the weighted average cost of capital (WACC). </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>3(b).</strong> Define holding-period return. How is it calculated? (Note: Iska numerical formula pucha gaya hai). </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT III: Financial Decisions (Leverage & EBIT-EPS)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5(b).</strong> ABC Ltd., needs Rs. 30,00,000 for the installation of a new factory. The new factory expects to yield annual earnings before interest and tax (EBIT) of Rs. 5,00,000. In choosing a financial plan, ABC Ltd., has an objective of maximizing earnings per share (EPS). The company proposes to issuing ordinary shares and raising debt of Rs. 3,00,000 and Rs. 10,00,000 or Rs. 15,00,000. The current market price per share is Rs. 250 and is expected to drop to Rs. 200 if the funds are borrowed in excess of Rs. 12,00,000. Funds can be raised at the following rates: <ul> <li>up to Rs. 3,00,000 @ 8%</li> <li>over Rs. 3,00,000 to Rs. 15,00,000 @ 10%</li> <li>over Rs. 15,00,000 @ 15%</li> </ul> Assuming a tax rate of 50% advise the company. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>7(b).</strong> Kumar company has sales of Rs. 25,00,000. Variable cost of Rs. 12,50,000 and fixed cost of Rs. 50,000 and debt of Rs. 12,50,000 at 8% rate of interest. Calculate combined leverage. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT IV: Dividend Decisions</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>6(b).</strong> The earnings per share of a company are Rs. 80 and the rate of capitalization applicable to the company is 12.5%. The company has before it an option of adopting a payment ratio of 25% (or) 50% (or) 75%. Using Walter's formula of dividend payout, compute the market value of the company's share if the productivity of retained earnings (i) 12% (ii) 8% (iii) 5%. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT V: Working Capital Management</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>4(b).</strong> From the following balance sheet of A Company Ltd. you are required to prepare a schedule of changes in working capital and statement of flow of funds: <table style="width: 100%; border-collapse: collapse; margin: 10px 0; border: 1px solid #bdc3c7;"> <tr style="background-color: #dfe6e9;"> <th style="border: 1px solid #bdc3c7; padding: 5px;">Liabilities</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">2004 (Rs.)</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">2005 (Rs.)</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">Assets</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">2004 (Rs.)</th> <th style="border: 1px solid #bdc3c7; padding: 5px;">2005 (Rs.)</th> </tr> <tr><td style="border: 1px solid #bdc3c7;">Share Capital</td><td style="border: 1px solid #bdc3c7;">1,00,000</td><td style="border: 1px solid #bdc3c7;">1,10,000</td><td style="border: 1px solid #bdc3c7;">Land and Building</td><td style="border: 1px solid #bdc3c7;">60,000</td><td style="border: 1px solid #bdc3c7;">60,000</td></tr> <tr><td style="border: 1px solid #bdc3c7;">Profit and Loss a/c</td><td style="border: 1px solid #bdc3c7;">20,000</td><td style="border: 1px solid #bdc3c7;">23,000</td><td style="border: 1px solid #bdc3c7;">Plant and Machinery</td><td style="border: 1px solid #bdc3c7;">35,000</td><td style="border: 1px solid #bdc3c7;">45,000</td></tr> <tr><td style="border: 1px solid #bdc3c7;">Loans</td><td style="border: 1px solid #bdc3c7;">-</td><td style="border: 1px solid #bdc3c7;">10,000</td><td style="border: 1px solid #bdc3c7;">Stock</td><td style="border: 1px solid #bdc3c7;">20,000</td><td style="border: 1px solid #bdc3c7;">25,000</td></tr> <tr><td style="border: 1px solid #bdc3c7;">Creditors</td><td style="border: 1px solid #bdc3c7;">15,000</td><td style="border: 1px solid #bdc3c7;">18,000</td><td style="border: 1px solid #bdc3c7;">Debtors</td><td style="border: 1px solid #bdc3c7;">18,000</td><td style="border: 1px solid #bdc3c7;">28,000</td></tr> <tr><td style="border: 1px solid #bdc3c7;">Bills Payable</td><td style="border: 1px solid #bdc3c7;">5,000</td><td style="border: 1px solid #bdc3c7;">4,000</td><td style="border: 1px solid #bdc3c7;">Bills receivable</td><td style="border: 1px solid #bdc3c7;">2,000</td><td style="border: 1px solid #bdc3c7;">1,000</td></tr> <tr><td style="border: 1px solid #bdc3c7;"></td><td style="border: 1px solid #bdc3c7;"></td><td style="border: 1px solid #bdc3c7;"></td><td style="border: 1px solid #bdc3c7;">Cash</td><td style="border: 1px solid #bdc3c7;">5,000</td><td style="border: 1px solid #bdc3c7;">6,000</td></tr> <tr style="font-weight: bold;"><td style="border: 1px solid #bdc3c7;">Total</td><td style="border: 1px solid #bdc3c7;">1,40,000</td><td style="border: 1px solid #bdc3c7;">1,65,000</td><td style="border: 1px solid #bdc3c7;">Total</td><td style="border: 1px solid #bdc3c7;">1,40,000</td><td style="border: 1px solid #bdc3c7;">1,65,000</td></tr> </table> </div> <div class="header" style="text-align: center; border-bottom: 2px solid #2c3e50; margin-bottom: 20px; padding: 10px;"> <h1 style="margin: 0; font-size: 1.5em;">MBA (SEM II) THEORY EXAMINATION 2016-17</h1> <h2 style="margin: 5px 0; font-size: 1.2em;">FINANCIAL MANAGEMENT</h2> <p><strong>(Numerical Questions Only)</strong></p> </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT I: Introduction & Risk-Return</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION A</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(c).</strong> Calculate the expected rate of return for security from the following information: <br> $R_f = 10\%$, $R_m = 18\%$, $\beta_i = 1.35$. </div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>1(g).</strong> A firm's sales, variable costs and fixed cost amount to Rs. 75,00,000, Rs. 42,00,000 and Rs. 6,00,0000 respectively. It has borrowed Rs. 45,00,000 at 9% and its equity capital totals Rs. 55,00,000. What is the firm's ROI? </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(c).</strong> An investor holds two equity shares X and Y in equal proportion with the following risk and return characteristics: <br> $E(R_x) = 24\%$; $E(R_y) = 19\%$, $\sigma_x = 28\%$, $\sigma_y = 23\%$ <br> The returns of these securities have a positive correlation of 0.6. You are required to calculate the portfolio return and risk. Further, suppose the investor wants to reduce the portfolio risk to 15%. What should be the correlation coefficient to bring the portfolio risk to the desired level? </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT II: Investment Decisions</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(d).</strong> A project will cost Rs. 40,000. Its stream of earnings before depreciation, interest and taxes during first year through five years is expected to be Rs. 10,000, Rs. 12,000, Rs. 14,000, Rs. 16,000 and Rs. 20,000. Assume a 50% tax rate and depreciation on straight-line basis. Calculate the project's ARR. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT III: Financial Decisions (Leverage & EBIT-EPS)</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(e).</strong> A company has estimated that for a new product its selling price is Rs. 14 per unit, variable cost is Rs. 9 per unit and fixed cost is Rs. 10,000. Calculate the operating leverage for sales volume of 3000 units and 4000 units. Also comment on the calculation of operating leverage. </div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION C</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>5.</strong> M/s Deepika Ltd. has a share capital of Rs. 10,00,000 divided into 1,00,000 equity shares of Rs. 10 each. It has a major expansion programme requiring an investment of another Rs. 5,00,000. The management is considering alternatives for raising this amount: <br> (i) Issue of 50,000 equity shares of Rs. 10 each. <br> (ii) Issue of 50,000, 12% preference shares of Rs. 10 each. <br> (iii) Issue of 10% debentures of Rs. 5,00,000. <br> The company's present EBIT are Rs. 4,00,000 p.a. Calculate the effect of each of the above modes of financing on the EPS, and suggest the best alternative if: <br> (i) EBIT continues to be the same even after expansion, <br> (ii) EBIT increases by Rs. 1,00,000. <br> Assume tax rate at 50%. </div> <div class="unit-title" style="background-color: #2c3e50; color: #ffffff; padding: 10px; margin-top: 20px; font-weight: bold;">UNIT V: Working Capital Management</div> <div class="section-title" style="font-weight: bold; color: #e67e22; text-decoration: underline; padding: 10px 0;">SECTION B</div> <div class="question-box" style="border-left: 4px solid #3498db; margin: 10px 0; padding: 10px; background-color: #ecf0f1;"> <strong>2(g).</strong> From the following particulars of XYZA Ltd. You are required to determine the working capital requirement: <br> (i) Average amount locked up in stocks: Raw materials (20k), WIP (4k), Finished goods (30k). <br> (ii) Credit period to customers: Home market (2 weeks, 2.6L), Foreign Market (6 weeks, 6.24L). <br> (iii) Lag in payment: For purchase (4 weeks, 1.56L), For wages (2 weeks, 2.08L), For management Exp. (1 week, 78k). <br> You may add 10% to allow for contingencies. </div> </body> </html> |