Searching for "at____"

Q:

The compound interest on Rs. 30,000 at 7% per annum is Rs. 4347. The period (in years) is:

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

Explanation:

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

Let the time be n years.

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

n= 2 years

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: Bank Exams
Job Role: Bank PO

Q:

What is the difference between the compound interests on Rs. 5000 for 112 years at 4% per annum compounded yearly and half-yearly?

A) Rs.3.06 B) Rs.2.04
C) Rs.3.65 D) Rs.5.40
 
Answer & Explanation Answer: B) Rs.2.04

Explanation:

 C.I. when interest compounded yearly

Rs.5000*1+4100*1+12*4100

 Rs.5000*2625*5150

=Rs.5034

 

C.I. when interest iscompounded half-yearly 

 Rs.5000*1+21003

= Rs. 5306.04

Difference = Rs. (5306.04 - 5304) = Rs. 2.04

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: Bank Exams
Job Role: Bank PO

Q:

There is 60% increase in an amount in 6 years at simple interest. What will be the compound interest of Rs. 12,000 after 3 years at the same rate

A) Rs.4972 B) Rs.3972
C) Rs.5972 D) Rs.2972
 
Answer & Explanation Answer: B) Rs.3972

Explanation:

 

Let P = Rs. 100. Then, S.I. Rs. 60 and T = 6 years.

 

R=100*60100*6 =10% p.a

 

Now, P = Rs. 12000. T = 3 years and R = 10% p.a.

 

C.I=Rs.12000*1+101003-1
       =Rs.3972

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: Bank Exams
Job Role: Bank PO

Q:

What is the managed execution process?

Answer

Managed execution process is a process where CLR executes the managed code. The steps involved in this process are:



  1.  Choosing the right compiler

  2.  Compiling the code to MSIL. This also generates the required metadata.

  3.  Compile the MSIL ode to native machine code.

  4. Executing the code with the variety of services available

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

Explain how to configure Trace switches in the application’s .config file.?

Answer

switches are configured using the .config file


<system.diagnostics>


<switches>


<add name="MyTraceSwitch" value="1" />


<add name="TraceSwitch2" value="1" />


</switches>


</system.diagnostics>


both are on.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

How to create a Delegate?

Answer

public delegate void Del<T>(T item);


Del<int> d1 = new Del<int>(Notify);

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

Lala lajapathi rai is the author of the book

A) India Divided B) Hind Swaraj
C) Unhappy India D) Mother India
 
Answer & Explanation Answer: C) Unhappy India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

Q:

What is a delegate?

Answer

A delegate declares a ref type that references a named of anonymous method. Delegates are secure and type-safe. Consider them as type safe function pointers.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET