Interview Questions

Q:

What is the Debit Balance recovery? How we can recover if we wont have any future transactions from supplier?

Answer

The Debit balance recovery is usually made by raising a credit memo for the regular vendors. However if there are no future transactions from the supplier, we ask the vendor to send the check / make an EFT for the amount due from him.


When payment is made to the wrong vendor or payment made in excess, in that case overpayment has gone to the vendor, So for us it is vendor debit balance.


For debit balance recovery, we can either follow-up with the vendor to send us the excess amount / refund back, or we can adjust that extra amount in future invoices submitted by that vendor


In Case no future transactions, we have to follow-up with the vendor, falling whicch we have to write off this amount.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

12 12679
Q:

Which of the following is a properly defined structure?

A) struct {int a;} B) struct a_struct {int a;}
C) struct a_struct int a; D) struct a_struct {int a;};
 
Answer & Explanation Answer: D) struct a_struct {int a;};

Explanation:

The a_struct is declared as structure name and its data element is a.

Report Error

View Answer Report Error Discuss

Filed Under: C++

12 23837
Q:

Which tag is used to display the numbered list?

 

1) <ol> </ol>    2) <li></li>     3) <ul> </ul>    4) <dl> </dl>

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: A) 1

Explanation:

Use HTML tag <ol> element to define an ordered list.

Use the HTML type attribute to define the numbering type. Use the HTML <li> element to define a list item. Use the HTML <dl> element to define a description list.

 

Hence, as numbered list come under ordered list tag <ol> tag is used for numbered list.

Report Error

View Answer Report Error Discuss

12 21745
Q:

Explain hospitality in terms of hotel industry ?

Answer

Hospitality actually means, taking care of guests in the best possible way.


Organizing, providing services and looking care after guests is included in it.


It means friendly and generous treatment of guests. 


Hospitality industry includes all companies involved in providing services for guests. They provide more mental satisfaction than tangible objects.

Report Error

View answer Workspace Report Error Discuss

Subject: Hospitality

12 4008
Q:

What are the most important values and ethics you demonstrate as a leader? Give me an example of these in practice.

Answer

Tips :


Integrity-being honest and believability and conviction- is one of concrete leadership abilities. The value and morals in personal behavior are the necessaries with an excellent leader and these values and morals need to be brought into organizational training and activities. A successful leader is the one who uses his/her conviction most efficiently. Leaders do not loose confidences or expose potentially dangerous information if they are close with their employees and they are the honest symbols.

Report Error

View answer Workspace Report Error Discuss

12 5312
Q:

What is the importance of finally block in exception handling ?

Answer

A finally block will always be executed, whether or not an exception is actually thrown. Even in the case where the catch statement is missing and an exception is thrown, the finally block will still be executed. Last thing to mention is that the finally block is used to release resources like I/O buffers, database connections, etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

11 5224
Q:

What is conversion operator ?

Answer

Class can have a public method for specific data type conversions.
for example:
class B
{
double value;
public  B(int i )
operator double()
{
return value;
}
};
B BObject;
double i = BObject; // assigning object to variable i of type double.
now conversion operator gets called to assign the value.

Report Error

View answer Workspace Report Error Discuss

11 3607
Q:

The threshold limit upto which coins can be issued as per the Coinage Act 2011 ? 

A) 100 B) 200
C) 500 D) 1000
 
Answer & Explanation Answer: D) 1000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

10 3117