Answer:
B. The portfolio expected rate of return must be the same for each economic state.
Explanation:
Variance formula = sum of (probability x (r - mean)^2)
r= expected return
if the expected return would be same for each economic state then the mean would equal to expected return which ultimately will give variance zero ( as r-mean would be 0).
Hence the correct option is B. The portfolio expected rate of return must be the same for each economic state.
Answer: $2420
Explanation:
The following can be deduced from the question:
EBIT = $3,280
Depreciation = $1,850
Cost of goods sold = $6,920
Dividends = $750
Interest expense = $860,
Taxable Income will be calculated as:
= EBIT - Interest Expense
= $3280 - $860
= $ 2420
Answer:
Test answer
Explanation:
Please delete that answer
Answer:
//algorithm for ATM money withdrawal
Algorithm: Algorithm for cash withdrawals from ATM.
Input: withdraw_amount
Output: amount+service_charges.
Algorithm:
step 1:
balance =account balance.
withdraw_amount = (Get input from user)
step 2:
if(withdraw_amount>400)
then, print "maximum limit exceeds"
step 3:
if(withdraw_amout<1)
then, print "enter a valid amount"
step 4:
if(withdraw_amount>balance)
then, print "insufficient balance.. withdraw money $30 as service charges "
step 5:
if(withdraw_amount<400 && withdraw_amount<balance)
if(withdraw_amount>200)
service_charge=withdraw_amount*(3/100)
print " Your cash is dispensed... total amount withdrawn +service_charges 30% (withdraw_amount +service_charge) "