Interview Questions

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 3258
Q:

How can you find a PL/SQL block, if the cursor is open?

Answer

By use of %ISOPEN status variable.


 

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

0 3253
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 3252
Q:

What determines the value of an item?

A) the capital required to build the factory B) the unlimited wants of the consumers
C) the resources consumed in production D) the amount of goods that are produced
 
Answer & Explanation Answer: A) the capital required to build the factory

Explanation:

Value is the monetary worth of something, in this case, it is an item.

In option A, since it is talking about capital which is measured in monetary terms.

The value of an item is determined by its quality and its age. Often antiques with good quality are sold in the market with a high value and are sometimes auctioned.

Report Error

View Answer Report Error Discuss

Filed Under: Accounts Receivable
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 3251
Q:

What is immutable object? Can you write immutable object ?

Answer

Immutable classes are Java classes whose objects can not be modified once created. Any modification in Immutable object result in new object. For example is String is immutable in Java. Mostly Immutable are also final in Java, in order to prevent sub class from overriding methods in Java which can compromise Immutability. You can achieve same functionality by making member as non final but private and not modifying them except in constructor.

Report Error

View answer Workspace Report Error Discuss

3 3243
Q:

What does a special set of tags do in PHP?

Answer The output is displayed directly to the browser.
Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 3243
Q:

what is the difference between the terms 'credit' and 'debit' from the customer point of view?

Answer

 From the customer point of view, credit is the amount which is deposited into her or his account. And debit refers to that amount which is taken from the account of the customer.

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

2 3242
Q:

What is the impact of declaring a method as final?

Answer A method declared as final can't be overridden. A sub-class can't have the same method signature with a different implementation.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 3242