Interview Questions

Q:

What is Automatic Reference Counting (ARC) ?

Answer

ARC is a compiler-level feature that simplifies the process of managing the lifetimes of Objective-C objects. Instead of you having to remember when to retain or release an object, ARC evaluates the lifetime requirements of your objects and automatically inserts the appropriate method calls at compile time.

Report Error

View answer Workspace Report Error Discuss

Subject: IOS

2 3618
Q:

A budget is best described as

A) A master control device B) The most crucial component of a company evaluation process
C) A formal statement of a company's future plans usually expressed in monetary terms D) An informal statement of company future plans usually expressed in monetary terms
 
Answer & Explanation Answer: C) A formal statement of a company's future plans usually expressed in monetary terms

Explanation:

A Budget is a financial plan of expected cash inflows and outflows that a business generates.
It is generally a long-term statement involving ammual updates. It is best described as A formal statement of a company's future plans usually expressed in monetary terms.

Report Error

View Answer Report Error Discuss

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

0 3616
Q:

What is difference between baseband and broadband transmission?

Answer

In a baseband transmission, the entire bandwidth of the cable is consumed by a single signal. In broadband


transmission, signals are sent on multiple frequencies, allowing multiple signals to be sent simultaneously.

Report Error

View answer Workspace Report Error Discuss

1 3615
Q:

NPA in banking terminology implies ______.

A) Net Performing Assets B) New Performing Assets
C) Non-Performing Assets D) New Pension Act
 
Answer & Explanation Answer: C) Non-Performing Assets

Explanation:
Report Error

View Answer Report Error Discuss

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

5 3605
Q:

Explain storage qualifiers in C++

Answer

i.) Const - This variable means that if the memory is initialised once, it should not be altered by a program. 


ii.) Volatile - This variable means that the value in the memory location can be altered even though nothing in the program code modifies the contents. 


iii.) Mutable - This variable means that a particular member of a structure or class can be altered even if a particular structure variable, class, or class member function is constant.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

1 3605
Q:

What is insider trading and why is it illegal?

Answer

Undergraduates may get this question as feelers of their business knowledge. Insider trading describes the illegal activity of buying or selling stock based on information that is not public information. This is to prevent those with privileged information (company execs, I-bankers and lawyers) from using this information to make a tremendous amount of money unfairly.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

4 3601
Q:

When is the finalize() called ? What is the purpose of finalization ?

Answer

The finalize method is called by the garbage collector, just before releasing the object’s memory. It is normally advised to release resources held by the object inside the finalize method.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 3600
Q:

Define void pointer using C++.?

Answer

In C++, void represents the absence of type, so void pointers are pointers that point to a value that has no type. The void pointers can point to any data type.


You can declare void pointer as follows:


void *p;

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

0 3599