Interview Questions

Q:

What do you think you will be doing during your first year in investment banking?

Answer

Much of your answer to this question will depend on your role – so do some careful research into your chosen department. In M&A, you might spend much of your time on financial models related to the deals you’re working on, while in a trading role you might start out by assisting more senior members of the team before being given the chance to manage a trading book yourself. Beyond that, it’s important to show that you’ll be keen to take on responsibilities, but that you also recognise that your first year is about learning the ropes, usually means include following instructions from others and completing some mundane tasks.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview

0 3225
Q:

Does the order of public and static declaration matter in main() method?

Answer No. It doesn't matter but void should always come before main().
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 3224
Q:

The shortcut key to quit from tally is

A) CTRL + Q B) CTRL + ESC
C) CTRL + T D) CTRL + P
 
Answer & Explanation Answer: A) CTRL + Q

Explanation:
Report Error

View Answer Report Error Discuss

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

1 3223
Q:

When an already listed organisation makes fresh issue of securities to the public, it is known as ________.

A) IPO B) Preferential Issue
C) Rights Issue D) FPO
 
Answer & Explanation Answer: D) FPO

Explanation:

FPO (Follow on Public Offer) is a process by which a company, which is already listed on an exchange, issues new shares to the investors or the existing shareholders, usually the promoters. FPO is used by companies to diversify their equity base. A follow-on public offer (FPO) is also called Further Public Offer.

Report Error

View Answer Report Error Discuss

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

4 3220
Q:

What is the use of controller object UIApplication?

Answer

Controller object UIApplication is used without subclassing to manage the application event loop.


It coordinates other high-level app behaviors. 


It works along with the app delegate object which contains app-level logic.

Report Error

View answer Workspace Report Error Discuss

2 3216
Q:

What JSON framework is supported by iOS (iPhone OS) ?

Answer

  • SBJson framework is supported by iOS.

  • It is a JSON parser and generator for Objective-C (Objective-C is the primary programming language you use when writing software for OS X and iOS. It is a superset of the C-programming language and provides object-oriented capabilities and a dynamic runtime).

  • SBJson provides flexible API's and additional control that makes JSON handling easy.

Report Error

View answer Workspace Report Error Discuss

8 3214
Q:

What are defaults? Is there a column to which a default can’t be bound?

Answer

A default is a value which will be used by a column, if no value is supplied to that column while inserting data.


Yes, IDENTITY and TIMESTAMP columns are free from the bounds of default.

Report Error

View answer Workspace Report Error Discuss

Subject: SQL

0 3214
Q:

Explain include(), include_once, require() and require_once.

Answer

include()
The include() function takes all the content in a specified file and includes it in the current file. If an error occurs, the include() function generates a warning, but the script will continue execution.

include_once()
File will not be included more than once. If we want to include a file once only and further calling of the file will be ignored then we have to use the PHP function include_once().

require()
The require() function is identical to include(), except that it handles errors differently. The require() generates a fatal error, and the script will stop.

require_once()
The required file is called only once when a page is open and further calling of the file will be ignored.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 3214