Interview Questions

Q:

How can u write programmatically value help to a field without using search help and match code?

Answer

By using two types of function modules to be called in SAP Script:

1)HELP_OBJECT_SHOW_FOR_FIELD
2)HELP_OBJECT_SHOW

Report Error

View answer Workspace Report Error Discuss

Subject: ABAP

0 3347
Q:

What is the BEST WAY to write test cases?

Answer

1) List down usecases (taken from business cases) from function specs. For each use case write a test case and categorize them into sanity tests, functionality, GUI, performance etc. Then for each test case, write its workflow. 


2) For a GUI application - make a list of all GUI controls. For each control start writing test cases for testing of the control UI, functionality (impact on the whole application), negative testing (for incorrect inputs), performance etc. 


 

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

0 3340
Q:

Who is a more senior creditor, a bondholder or stockholder?

Answer

According to the classification, the claim of bond holder should be accounted first. After fulfilling all the claims of bond holder company should look after the stock holder.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

0 3338
Q:

What is an error-first callback ?

Answer

Error-first callbacks are used to pass errors and data as well. You have to pass the error as the first parameter, and it has to be checked to see if something went wrong. Additional arguments are used to pass data.


 


fs.readFile(filePath, function(err, data) {
if (err) {
// handle the error, the return is important here
// so execution stops here
return console.log(err)
}
// use the data object
console.log(data)
})

Report Error

View answer Workspace Report Error Discuss

2 3330
Q:

What do you mean by ‘foreign draft’?

Answer

Foreign draft is an alternative to foreign currency; it is generally used to send money to a foreign country. It can be purchased from the commercial banks, and they will charge according to their banks rules and norms. People opt for ‘foreign draft’ for sending money as this method of sending money is cheaper and safer. It also enables receiver to access the funds quicker than a cheque or cash transfer.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

0 3329
Q:

What is 'Three-Way Match' refers in Acconting ?

Answer

In accounting, the Three-way Match refers to a procedure used when processing an invoice received from a vendor or supplier. The three-way match is an important step in safeguarding an organization's assets. The purpose of the three-way match is to avoid paying incorrect and perhaps fraudulent invoices.


Here Three-way refers to the three documents involved :


* Vendor's invoice which was received and will become part of an organization's accounts        payable if approved.


* Purchase order that was prepared by the organization.


* Receiving report that was prepared by the organization.


And Match refers to the comparison of the quantities, price per unit, terms, etc. appearing on the vendor's invoice to the information on the purchase order and to the quantities actually received.


After the vendor's invoice has been validated by the three-way match, it can be further processed for payment.

Report Error

View answer Workspace Report Error Discuss

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

9 3327
Q:

When do you override hashcode and equals() ?

Answer

HashCode method return int value. So the Hash value is the int value returned by the hash function .


If you want to do equality check or want to use your object as key in HashMap, we must override hashcode and equals() method.

Report Error

View answer Workspace Report Error Discuss

Subject: Java
Job Role: Analyst , IT Trainer

5 3322
Q:

What is the purpose of UIWindow object?

Answer

The presentation of one or more views on a screen is coordinated by UIWindow object..

Report Error

View answer Workspace Report Error Discuss

Subject: IOS

7 3321