Answer:
The correct answer is letter "D": Insurance companies will only cover losses suffered while the policy is already in place.
Explanation:
Regardless of the type of insurance you purchase, the purpose of the coverage is having a policy in case an unexpected unfortunate event takes place. <em>Insurances do not enroll individuals who need the policy just because of an ongoing accident</em>. Those individuals could enroll in an insurance plan but the ongoing accident will not be covered by the company. Only those events happening when the policy is already valid are subject to evaluation for coverage.
Answer:
b. Borrow $2,500
Explanation:
Preliminary balance = $12,000 + 30,000 - $34,500 = $7,500
Amount to borrow = Minimum cash balance - Preliminary balance = $10,000 - $75,000 = $2,500
Therefore, to maintain the $10,000 required balance, during June the company must $2,500.
Answer:
Option D
Increased globalisation that moves the economy from manufacturing based economy to more service-based economy.
Explanation:
Option D
Increased globalisation that moves the economy from manufacturing based economy to more service-based economy.
As manufacturing will decrease, the number of jobs will decrease drastically because the number of industries will become small.
Answer:
39,577 million euros
Explanation:
Calculation to determine the what was its gross profit
Using this formula
Gross profit=Net income+Operating expenses
Let plug in the formula
Gross profit=23,561 million +16,016 million
Gross profit=39,577 million euros
Therefore gross profit will be 39,577 million euros
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) "