Answer: a. Only one policy will pay, the premiums for the other contracts will be returned.
Explanation:
When there are multiple insurance contracts from the same insurer and these contracts have a ''Other Insurance With This Insurer'' provision, it means that in cases where the insured wants to claim, they can choose whichever of the policies they want and that one will pay out but they cannot pick them all.
The premiums paid on the other contracts/s will be returned to the insured because it represents excess coverage.
Answer:
1. Drawings A/c. dr. 15,000
To Cash A/c. 15,000
2. Cash A/c. Dr. 63,000
To Sales A/c. 63,000
3. Drawings A/c. Dr. 12,000
To Cash A/c. 12,000
4. Purchases A/c. Dr. 31,000
To Creditors A/c. 31,000
5. Drawings A/c. Dr. 16,000
To Purchases A/c. 16,000
6. Dalip Singh A/c. Dr.35,000
To Sales A/c. 35,000
7. Rent A/c. Dr. 22,000
To Bank A/c. 22,000
8. Purchases A/c. Dr. 19,000
To Cash A/c. 19,000
Answer:
C. $5,150
Explanation:
Calculation for what will be the value of interest payment at the end of fifth year in real dollars
First step is to calculate the Interest amount per year
Interest amount per year = 100,000*6%
Interest amount per year = $6,000
Now let calculate the value of interest payment at the end of fifth year in real dollars
Value of interest payment in 5th year in real dollars = 6,000/(1+3.1%)^5
Value of interest payment in 5th year in real dollars= 6,000/1.164913
Value of interest payment in 5th year in real dollars= $5,150
Therefore the Value of interest payment in 5th year in real dollars will be $5,150
Answer:
Here the variable cost can be computed using the following formula:
Variable cost = (Sales commissions + Shipping expense + Miscellaneous selling expenses) ×Sales
Variable cost = (4% + 1% + 3/4%) x $500,000 = $28,750
Fixed cost = Sales manager's salary + Advertising expense + Miscellaneous selling expenses
= $30,000 + $25,000 + $2,100
= $57,100
<em>Total selling expense budget = Variable cost + Fixed cost</em>
<em>= $28,750 + $57,100 </em>
<em>= $85,850</em>
Answer:
The query may still be specified in SQL by using a nested query as follows (not all
implementations may support this type of query):
SELECT DNAME, COUNT (*)
FROM DEPARTMENT, EMPLOYEE
WHERE DNUMBER=DNO AND SEX='M' AND DNO IN ( SELECT DNO
FROM EMPLOYEE
GROUP BY DNO
HAVING AVG (SALARY) > 30000 )
GROUP BY DNAME;
Explanation: