Searching for "US"

Q:

A sum of money amounts to Rs. 9800 after 5 years and Rs. 12005 after 8 years at the same rate of simple interest. The rate of interest per annum is:

A) 5% B) 8%
C) 12% D) 15%
 
Answer & Explanation Answer: C) 12%

Explanation:

 

S.I. for 3 years = Rs. (12005 - 9800) = Rs. 2205.

 

S.I. for 5 years = Rs.22053×5= Rs.3675

 

Principle = Rs.(9800-3675) = Rs.6125

 

Hence, Rate = 100×36756125×5 =12%

Report Error

View Answer Report Error Discuss

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

Q:

50 men took a dip in a water tank 40 m long and 20 m broad on a religious day. If the average displacement of water by a man is 4 cu.m , then the rise in the water level in the tank will be:

A) 20 cm B) 25 cm
C) 35 cm D) 50 cm
 
Answer & Explanation Answer: B) 25 cm

Explanation:

Total volume of water displaced =(4 x 50) cu.m = 200 cu.m

 

Rise in water level = 20040×20=0.25m = 25cm

Report Error

View Answer Report Error Discuss

Q:

The diagonal of a rectangle is sqrt(41) cm.  and its area is 20 sq. cm. The perimeter of the rectangle must be:

A) 9 cm B) 18 cm
C) 20 cm D) 41 cm
 
Answer & Explanation Answer: B) 18 cm

Explanation:

l2+b2 = diagonal2=40

Also, lb=20

 

l+b2=l2+b2+2lb = 41 + 40 =81 

(l + b) = 9.

Perimeter = 2(l + b) = 18 cm.

Report Error

View Answer Report Error Discuss

Q:

A rectangular park 60 m long and 40 m wide has two concrete crossroads running in the middle of the park and rest of the park has been used as a lawn. If the area of the lawn is 2109 sq. m, then what is the width of the road?

A) 2.91 m B) 3 m
C) 5.82 m D) None of these
 
Answer & Explanation Answer: B) 3 m

Explanation:

Area of the park = (60 x 40) = 2400 sq.m  

Area of the lawn = 2109  sq.m 

Area of the crossroads = (2400 - 2109) = 291 sq.m   

 

Let the width of the road be x metres. Then,   

60x + 40x - (x * x) = 291  

=>(x * x) - 100x + 291 = 0    

=>(x - 97)(x - 3) = 0  

=>x=3

Report Error

View Answer Report Error Discuss

Q:

Classify the Hashing Functions based on the various methods by which the key value is found.

Answer

Direct method,


 Subtraction method,


 Modulo-Division method,


 Digit-Extraction method,


 Mid-Square method,


 Folding method,


Pseudo-random method

Report Error

View answer Workspace Report Error Discuss

Subject: Technology

Q:

List out few of the applications that make use of Multilinked Structures?

Answer

Sparse matrix,


Index generation

Report Error

View answer Workspace Report Error Discuss

Subject: Technology

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++

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