MCQS ON ACCOUNTING EQUATION
1. The accounting equation is:
2. Which of the following represents the liabilities of a business?
3. If a company has total assets of 1,000,000 and total liabilities of 400,000, what is the owner’s equity?
4. Owner’s equity can be calculated as:
5. Which of the following transactions will increase the assets of a company?
6. A company’s liabilities are 400,000, and the owner’s equity is 600,000. What are the total assets?
7. When a company receives cash from a customer for a sale made on credit, how does this transaction affect the accounting equation?
8. Which of the following represents the accounting equation after a business pays off a loan?
9. A company purchased equipment for 50,000 cash. How does this transaction affect the accounting equation?
10. If a company’s owner invests an additional 100,000 cash into the business, how does this transaction affect the accounting equation?
11. Which of the following represents the accounting equation after a company purchases inventory on credit?
12. A company’s total assets are 800,000, and its owner’s equity is 300,000. What are its total liabilities?
13. Which of the following represents the owner’s equity of a business?
14. If a company’s assets are 1,200,000, and its liabilities are 400,000, what is the owner’s equity?
15. When a company records revenue for services provided to a customer on credit, how does this transaction affect the accounting equation?
16. Which of the following represents the liabilities of a business?
17. A company’s total liabilities are 200,000, and its owner’s equity is 800,000. What are its total assets?
18. Which of the following represents the accounting equation after a company receives a cash payment from a customer for services rendered?
19. A company’s total assets are 1,000,000, and its total liabilities are 300,000. What is the owner’s equity?
20. A company’s total assets are $500,000, and its total liabilities are $200,000. What is the owner’s equity?
function checkAnswer(option) { const options = document.querySelectorAll('.option'); options.forEach(opt => { if (opt === option) { opt.classList.add('selected'); if (opt.getAttribute('data-answer') === correctAnswers[option.parentElement.id]) { opt.classList.remove('wrong-answer'); opt.classList.add('correct-answer'); opt.innerHTML += ' ✔'; } else { opt.classList.remove('correct-answer'); opt.classList.add('wrong-answer'); opt.innerHTML += ' ✘'; } } else { opt.classList.remove('selected'); opt.classList.remove('correct-answer'); opt.classList.remove('wrong-answer'); opt.innerHTML = opt.textContent; } }); selectedOption = option; }
function showAnswer(questionId) { const correctOption = document.querySelector(`#${questionId} .option[data-answer="${correctAnswers[questionId]}"]`); markCorrectAnswer(correctOption); }
function markCorrectAnswer(option) { option.classList.remove('wrong-answer'); option.classList.add('correct-answer'); option.innerHTML += ' ✔'; }
function markWrongAnswer(option) { option.classList.remove('correct-answer'); option.classList.add('wrong-answer'); option.innerHTML += ' ✘'; }
function showExplanation(questionId) { const questionNumber = questionId.match(/d+$/)[0]; // Extract the numeric part of the questionId const explanation = document.getElementById(`explanation${questionNumber}`); explanation.style.display = 'block'; }