Repay loans so that the bank can get it reserves back up to the required level
Answer:
// Program is implemented using Coral Programming Language
int X
int Y
int Sum
Put "Enter any two numbers" to output
x = Get next input
Y = Get next input
if Y < X
Put "Second integer can't be less than the first" to output
else
for Sum = X; Sum <= Y; Sum = Sum + 10
Put Sum to output
Explanation:
The above program is written using Coral Programming Language
The first line is a comment
The next 3 lines declares 3 integer variables
Which are X, Y and Sum
X and Y represent the two input numbers as seen on line 6 and 7
X, being the first and Y being the second
Line 8 tests the larger of the two numbers
If Y is less than X, the output is "Second integer can't be less than the first" without the quotes
Else
The last two lines perform iterative operations that assigns the addition of 10 and X to Sum
It continues printing sum as long as sum is less than the value of Y.
From an accounting standpoint, stockholders' investment and revenues increase the assets of the company without adding to the liabilities. Therefore according to the equation (A = L + E), equity must increase.
Similarly, issuing dividends and paying expenses pays cash out of the company, which decreases assets without changing liabilities. Therefore equity must decrease.
Another way to think of it is: what contributes to the company's profit and/or value, and what decreases these things? Well, revenues and people investing in the company are good (and therefore good for stockholders), and giving cash out and paying expenses are costs to the company (and therefore decrease value for stockholders).
Answer:
The investment in stock H will be $104837.5 while the investment in stock L will be $145162.5
Explanation:
The portfolio return is the weighted average return of the individual stocks that form up the portfolio. The weightage of each stock in the portfolio is the investment in a stock as a proportion of investment in the portfolio.
Let x be the weightage of Stock H.
Weightage of Stock L will be (1-x).
Portfolio return = wH * rH + wL * rL
Plugging in the values,
0.111 = x * 0.129 + (1-x) * 0.098
0.111 = 0.129x + 0.098 - 0.098x
0.111- 0.098 = 0.031x
0.013 / 0.031 = x
x = 0.41935 or 41.935% rounded off to 3 decimal places
(1-x) = 1 - 0.41935 = 0.58065 or 58.065%
Investment in Stock H = 250000 * 41.935% = $104837.5
Investment in Stock L = 250000 * 58.065% = $145162.5
Answer:
The correct answer is the option D: All of the above.
Explanation:
To begin with, a company's primary strategy that focus on completing the main goal of the company of increasing the sales and with that the profits is considered to be the most important element that the business has in order to keep existing and therefore that as the time passes and the context around the organization changes, that strategy evolves. And there are a lot of reasones why that could happen, including the market conditions that vary over the pass of years as well as the need to react to the competitors decisions in order to keep fighting for the market. And other consequence that may help the change of the strategy is the effort itself of managers to make the strategy better as ideas turn to came out.