Interview Questions

Q:

How much the bug is affecting the functionality of the application?

Answer

EX:


- High Priority and Low Severity:


Company logo is not properly displayed on their website.


- High Priority and High Severity:


Suppose you are doing online shopping and filled payment information, but after submitting the form, you get a message like "Order has been cancelled."


- Low Priority and High Severity:


If we have a typical scenario in which the application get crashed, but that scenario exists rarely.


- Low Priority and Low Severity:


There is a mistake like "You have registered success" instead of successfully, success is written.

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

6 4072
Q:

What do you mean by friend function in C++ ?

Answer

Friends can be either functions or other classes. The class grants friends unlimited access privileges.

* The declaration of the function should be preceded by the keyword 'friend'.
* The function definition will not use the keyword or the scope operator '::'.


Thus, a friend function is an ordinary function or a member of another class.

Report Error

View answer Workspace Report Error Discuss

15 4066
Q:

 Which is the largest foreign bank in India   ?

A) HDFC Bank B) American Express Bank Ltd
C) DBS Bank Ltd D) Standard Chartered Bank
 
Answer & Explanation Answer: D) Standard Chartered Bank

Explanation:

Standard Chartered Bank 
Standard Chartered Bank have been operating in India since 1858.

Report Error

View Answer Report Error Discuss

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

5 4060
Q:

Why do you want to work in our hospital and/or community?

Answer

Tips :


Use your background research to support your answer. Look at aspects such as the commitment to health care provision, innovations in patient care, the community it serves.

Report Error

View answer Workspace Report Error Discuss

6 4055
Q:

What is DataStage?

Answer

- A tool for designing Extraction, Transformation and Loading


- An ideal tool for data integration projects system migrations


- Importing, extracting and creating metadata are within these jobs


- Data stage allows scheduling, monitoring and running the jobs 


- Allows to administer the development and execution in a single environment


 

Report Error

View answer Workspace Report Error Discuss

1 4055
Q:

How JavaScript timers work? What is a drawback of JavaScript timers?

Answer

Timers allow you to execute code at a set time or repeatedly using an interval. This is accomplished with the setTimeout, setInterval, and clearInterval functions. The setTimeout(function, delay) function initiates a timer that calls a specific function after the delay; it returns an id value that can be used to access it later. The setInterval(function, delay) function is similar to the setTimeout function except that it executes repeatedly on the delay and only stops when cancelled. The clearInterval(id) function is used to stop a timer. Timers can be tricky to use since they operate within a single thread, thus events queue up waiting to execute.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 4035
Q:

What is RAROC?

Answer

RAROC is a risk-adjusted framework for profitability measurement and profitability management. It is a tool for measuring risk-adjusted financial performance. And it provides a uniform view of profitability across businesses (Strategic Business Units / divisions). RAROC and related concepts such as RORAC and RARORAC are mainly used within (business lines of) banks and insurance companies. RAROC is defined as the ratio of risk-adjusted return to economic capital.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

0 4033
Q:

What is SQLCA?

Answer

- SQLCA stands for SQL Communication Area


- SQLCA is a structure of variables which are updated after every SQL statement’s execution


- Exactly only one SQLCA need to be provided to an application that contains executable SQL statements


- SQLCA is not applicable to JAVA application


- More than one SQLCA need to be provided for FORTRAN application

Report Error

View answer Workspace Report Error Discuss

0 4031