Interview Questions

Q:

As per the provisions of Section 12 of the Banking Regulation Act, 1949, the minimum ratio between authorized, subscribed and paid-up capital of a banking company should be

A) 2 : 2 : 1 B) 4 : 2 : 1
C) 2 : 1 : 4 D) 1 : 1 : 1
 
Answer & Explanation Answer: B) 4 : 2 : 1

Explanation:

As per the provisions of Section 12 of the Banking Regulation Act, 1949, the minimum ratio should be 4:2:1.

Report Error

View Answer Report Error Discuss

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

3 7051
Q:

How many ways of reusing are there in class hierarchy?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

Class hierarchies promote reuse in two ways. They are code sharing and interface sharing.

Report Error

View Answer Report Error Discuss

Filed Under: C++

0 6989
Q:

In RDBMS, what is the efficient data structure used in the internal storage representation?

A) Stack B) Queue
C) B+ tree structure D) AVL tree Structure
 
Answer & Explanation Answer: C) B+ tree structure

Explanation:

B+ tree. Because in B+ tree, all the data is stored only in leaf nodes, that makes searching easier. This corresponds to the records that shall be stored in leaf nodes

Report Error

View Answer Report Error Discuss

Filed Under: Java

0 6978
Q:

What is PHP’s configuration file called ?

Answer

PHP’s configuration file is called php.ini.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

50 6959
Q:

What is the role of QA in a project development?

Answer

QA stands for QUALITY ASSURANCE. QA team assures the quality by monitor the whole development process. QA tracks the outcomes and adjusting process to meet the expectation.


The role of Quality Assurance is discussed below:


- QA team is responsible for monitoring the process to be carried out for development.


- Responsibilities of QA team are planning testing execution process.


- QA Lead creates the time tables and agrees on a Quality Assurance plan for the product.


- QA team communicated QA process to the team members.


- QA team ensures traceability of test cases to requirements.

Report Error

View answer Workspace Report Error Discuss

Subject: QA Testing

0 6939
Q:

why did you choose HR? what do you want to make your career as HR?

Answer

HR-Human Resources:



To be a good HR person we need to have excellent  communication skills,interpersonal skills, good friendly attitude, talkative, decision-making skills etc.


An HR is the backbone of a  company. Right from recruiting the suitable person to training and then efficiency appraisal and then compensation and then exit interview...everything every step involves an HR.



So, if you wish to be a soul of the company not just a part of it, you should be an HR.

Report Error

View answer Workspace Report Error Discuss

Subject: Human Resources

7 6923
Q:

Define "Correlated Subqueries" ?

Answer

In a SQL Database, a 'correlated subquery' is a kind of sub query yet connected subquery is dependent on another query for a value that is returned. In case of execution, the sub query is executed first and afterwards the correlated query will be executed.

Report Error

View answer Workspace Report Error Discuss

8 6912
Q:

What is the data structures used to perform recursion?

Answer

Stack. Because of its LIFO (Last In First Out) property it remembers its ‘caller’ so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the function calls. Every recursive function has its equivalent iterative (non-recursive) function. Even when such equivalent iterative procedures are written, explicit stack is to be used.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

3 6911