Searching for "he"

Q:

Why Do You Want to Work Here?

Answer

The interviewer is listening for an answer that indicates you've given this some thought and are not sending out resumes just because there is an opening. For example, "I've selected key companies whose mission statements are in line with my values, where I know I could be excited about what the company does, and this company is very high on my list of desirable choices."

Report Error

View answer Workspace Report Error Discuss

Subject: About Yourself

Q:

Explain the process of creating a menu using the MainMenu component

Answer

MainMenu component is a component that allows the display of Menus at runtime on a form.


Process of creating Menu using MainMenu Component:


a. Add MainMenu component on Windows Form.


b. Menu designer allows deciding the structure of the main menu by selecting the Type Here area and adding the Menu Items to be displayed on the menu.


c. Add functionality to Menu Items as required

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

Q:

Explain how garbage collection manages the reclamation of unused memory?

Answer

The garbage collector assumes that all objects in the managed heap are garbage. It starts walking the roots and builds a graph of all objects reachable from the roots recursively. It stops when it attempts to add an object to the graph that it previously added. The graph contains the set of all objects that are reachable from the application's roots. Any object/s that is not in the graph is not accessible by the application, and is considered garbage. Collection only occurs when the heap is full. In such a case, each and every garbage object calls the Finalize method and reclaims the unused memory

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

Q:

The present of Rs.169 due in 2years at 4% per annum compound interest is

A) Rs.150.50 B) Rs.154.75
C) Rs.156.25 D) Rs.158
 
Answer & Explanation Answer: C) Rs.156.25

Explanation:

Present worth = 169/(1+4/100)^n = 156.25

Report Error

View Answer Report Error Discuss

Filed Under: Simple Interest
Exam Prep: GRE
Job Role: Analyst

Q:

What are the ways of preserving data on a Web Form in ASP.NET?

Answer

These objects provide two levels of scope:


Application State


Data stored in the application object can be shared by all the sessions of the application.


Application object stores data in the key value pair.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

Q:

When do you use :: Operator in C++?

Answer

:: is the scope resolution operator. When local variable and global variable are having same name, local variable gets the priority. C++ allows flexibility of accessing both the variables through a scope resolution operator

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

The principal that amounts to Rs.4913 in 3 years at 413% per annum compound interest compounded annually is

A) Rs.3096 B) Rs.4076
C) Rs.4085 D) Rs.4096
 
Answer & Explanation Answer: D) Rs.4096

Explanation:

principal = A=4913,T=3, R=413

P=A1+R100T

 

 = Rs.4096

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: GRE

Q:

The compound interest on rs.30000 at 7% per annum is Rs.4347. The period is

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

Explanation:

Amount = Rs.(30000+4347) = Rs.34347

 

let the time be n years

 

Then,30000(1+7/100)^n = 34347

 

(107/100)^n = 34347/30000 = 11449/10000 = (107/100)^2

 

n = 2years

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: GRE