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.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

0 2727
Q:

Define a temp table.

Answer

In a nutshell, a temp table is a temporary storage structure. It means you can use a temp table to store data temporarily so you can manipulate and change it before it reaches its destination format.


In table_user.gender column change ‘male to female’ and ‘female to male’ in one SQL statement.


UPDATE table_user


SET gender =


CASE gender


WHEN ‘male’ THEN ‘female’


WHEN ‘female’ THEN ‘male’


ELSE gender


END

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

1 2726
Q:

What is a Parked Report ?

Answer

You can use document parking to enter and store (park) incomplete documents in the SAP System without carrying out extensive entry checks.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

8 2722
Q:

Will comparison of string "10" and integer 11 work in PHP?

Answer Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

1 2717
Q:

What Is Requirement Traceability Matrix ?

Answer

Requirements tracing, a process of documenting the links between the requirements and the work products developed to implement and verify those requirements. Requirement Traceability Matrix (RTM) is a document which records the mapping between the high-level requirements and the test cases in the form of a table. The RTM captures all requirements and their traceability in a single document delivered at the conclusion of the life cycle. 


That’s how it ensures that the Test Plan covers all the requirements and links to their latest version.

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

2 2716
Q:

How does IDMS insure data integrity?

Answer

IDMS uses record locks to prevent another run-unit from updating the same record.

Report Error

View answer Workspace Report Error Discuss

0 2716
Q:

A customer is repeatedly using abusive language, but he has a valid point; what would you do?

Answer



Reply I agree with Your answer and I am so sorry you've got been disappointed. Let's find a solution to work this out. statement let's thrusting you and the person as a group working together to solve the issue.


 

Report Error

View answer Workspace Report Error Discuss

2 2714
Q:

Can a source file contain more than one class declaration?

Answer Yes a single source file can contain any number of Class declarations but only one of the class can be declared as public.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2711