Interview Questions

Q:

What did you like or dislike about your previous job?

Answer

When you're asked what didn't like about your previous job, don't be too negative. The reason is that you don't want the interviewer to think that you'll speak negatively about the new job or the company when you're ready to move on, if you get this job.Rather, it makes sense to talk about yourself and what you're looking for in a new role.


I enjoyed the people I worked with. It was a friendly and fun atmosphere and I actually enjoyed going into work each morning. I felt the leadership team was great as well.


One of the reasons I am leaving is that I felt I was not challenged enough at the job. As a new employee in the working world, the company offers a great opportunity for a good entry level position. However, after being there for so many years, I felt I was not able to reach my full potential because of the lack of challenge and there was no room for advancement in the company. While I did enjoy working there and appreciate the skills I developed while with the company, I feel my  skill set can be better utilized elsewhere, where my capabilities are more recognized and there is the opportunity for growth.


The people I worked with at ABC Company were top notch at what they do. Through my experience there, I learned a lot about different management styles, and strategies for maintaining cooperation in a large group project setting. I feel that as valuable as that experience has been, I am anxious to work on more specialized projects where I will have the opportunity to be more of a leader.


While the people at XYZ Company were terrific to work with, I felt that the opportunities for me there were limited by the structure and size of the company. I believe that a larger company with an international presence can offer challenges, as well as opportunities unavailable at a smaller firm. The position with your company is a great match for my skill set, and I feel that I would be an asset in your marketing (or HR or IT) department.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Work History

13 4356
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 4354
Q:

Does VB Supports OOPS Concepts?

Answer

Visual Basic is not support Inheritance and Data binding OOPS Concept 

Report Error

View answer Workspace Report Error Discuss

7 4351
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 4348
Q:

What is SLR rate?

Answer

SLR Rate is the minimum amount or percentage of the deposits that a bank has to keep with the RBI in the form of money,gold or any other approved security. In simple terms it is the ratio between cash and some approved security.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

1 4348
Q:

The first step in solving an Ethical Dilemma is to

A) identify the alternatives B) identify an etical situation and ethical issues involved
C) weigh the impact of each alternative on various stakeholders. D) recognize and analyze the principal elements in the situation.
 
Answer & Explanation Answer: B) identify an etical situation and ethical issues involved

Explanation:
Report Error

View Answer Report Error Discuss

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

7 4347
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 4346
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 4340