- ACash
- BGross Profit
- CAssets
- DLiabilities
Time Taken:
Correct Answer:
Wrong Answer:
Percentage: %
The correct answer is:
B. Gross Profit ✅
👉 Explanation:
A Balance Sheet shows the financial position of a business at a point in time, with three main elements:
Assets (Cash, Inventory, Property, etc.)
Liabilities (Loans, Creditors, etc.)
Equity/Capital
Gross Profit is not shown on the Balance Sheet.
It appears in the Trading/Profit & Loss Account (Income Statement), as it measures the difference between Sales and Cost of Goods Sold (COGS).
The correct answer is:
C. Accrual Accounting ✅
👉 Explanation:
Cash Accounting → Records transactions only when cash is received or paid. This does not always reflect true profitability, because revenues and expenses may occur in different periods.
Flow of Funds Accounting → Focuses on the movement of funds and resources, not on profitability.
Accrual Accounting → Records income when earned and expenses when incurred, regardless of cash flow.
This matches revenues with related expenses in the correct period.
Hence, it provides the most accurate picture of profitability.
The correct answer is:
A. an Asset ✅
👉 Explanation:
Accounts Receivable = the amount owed to a business by its customers for goods sold or services rendered on credit.
Since it represents future economic benefit (cash expected to be received), it is recorded as a Current Asset on the Balance Sheet.
It is not Owner’s Equity (which is the owner’s investment) and not a Liability (which is an obligation to pay others).
The correct answer is:
C. Cash ✅
👉 Explanation:
Cash is the most critical for the day-to-day operations of any business.
It is needed to pay employees, suppliers, utilities, and other expenses.
Even if a business is profitable on paper, without cash it cannot survive.
Assets are important, but not all assets are liquid (e.g., machinery, land).
Retained Earnings represent accumulated profits but are not immediately available in cash form.
⚡ So, cash flow is the lifeblood of business operations.
The correct answer is:
A. Net Profit ✅
👉 Explanation:
The phrase “bottom line” comes from the fact that Net Profit (or Net Income) appears at the last line (bottom line) of the Income Statement.
It shows the company’s final profitability after deducting all expenses, taxes, and interest.
Gross Profit and Gross Margin are higher up in the statement and do not represent the final outcome.
⚡ In short:
Bottom line = Net Profit (true profitability).
The correct answer is:
A. Expense ✅
👉 Explanation:
The Income Statement (Profit & Loss Account) shows a company’s revenues and expenses over a period to determine profit or loss.
Expenses (like salaries, rent, utilities, cost of goods sold) are recorded here.
Fixed Assets (like machinery, buildings) and Liabilities (like loans, payables) appear on the Balance Sheet, not the Income Statement.
💡 Remember:
Income Statement = Revenues – Expenses → Net Profit/Loss
The correct answer is:
C. Depreciation Expense ✅
👉 Explanation:
Depreciation is a non-cash expense.
It represents the allocation of the cost of a fixed asset over its useful life.
No actual cash leaves the business when depreciation is recorded.
Lease Expense and Advertising Expense involve actual cash payments, so they reduce cash.
💡 Key point:
Non-cash expenses like Depreciation, Amortization, and Provisions affect profit but not the cash position.
The correct answer is:
C. Assets = Liabilities + Owner’s Equity ✅
👉 Explanation:
This is the fundamental accounting equation, which forms the foundation of double-entry bookkeeping.
It shows that everything a business owns (Assets) is financed either by:
Liabilities (borrowed funds) or
Owner’s Equity (owner’s investment).
Other options are either incorrect formulas or relate to profit calculations, not the basic accounting structure.
💡 Remember: Assets always equal the sum of Liabilities and Equity — it keeps the books balanced.
private → visible only inside the same class.
default (no keyword) → visible inside the same package only.
protected → visible inside the same package + visible in all subclasses (even if in a different package).
public → visible everywhere.
private protected → ❌ Not a valid keyword in Java.
We want a member of a class visible in all subclasses, regardless of the package.
✅ That’s exactly what protected does.
(b) protected
default → ✔ (no keyword → package-private access)
abstract → ❌ (used for abstract methods/classes, not access control)
protected → ✔
interface → ❌ (not an access modifier, but a type definition)
public → ✔
✅ Correct answers: default, protected, public