Personalised Interview Q/A

Master your communication techniques and technical skills with our expertly curated question banks for your specific role.

Select Category

HR & Behavioral Round

1. Tell me about yourself. +
Tip: Keep it professional. Start with your current role or education, highlight 2-3 significant achievements, and explain why you are a good fit for this role. Do not narrate your entire life story.
2. Why should we hire you? +
Tip: Connect your skills with the job description. Show enthusiasm and mention how your specific technical skills and discipline can add value to the company's growth.

Web Development (Java Stack)

1. Explain the CSS Box Model. +
The CSS box model is a box that wraps around every HTML element. It consists of: Margins, Borders, Padding, and the actual Content. It is fundamental for layout and design styling.
2. How does recursion work in Java? Give an example. +
Recursion is a process where a method calls itself continuously. A classic example is calculating a factorial.

public int factorial(int n) {
  if (n == 0) return 1;
  else return n * factorial(n - 1);
}

Financial Accounting & Tally

1. What is the Golden Rule of Accounting? +
There are three golden rules depending on the account type:
1. Real Account: Debit what comes in, Credit what goes out.
2. Personal Account: Debit the receiver, Credit the giver.
3. Nominal Account: Debit all expenses/losses, Credit all incomes/gains.
2. How is Royalty treated in final accounts? +
Royalty based on production is charged to the Manufacturing or Trading Account. If it is based on sales, it is charged to the Profit & Loss Account.