Searching for "="

Q:

Find: S.l on Rs 68000 at 1623 1 % per annum for 9 months

A) 6500 B) 7500
C) 8500 D) 9500
 
Answer & Explanation Answer: C) 8500

Explanation:

P = 68000, R =503%  & T = 9 months (3/4 years)  

 S.I=p×r×t100=(6800×503×34)100=Rs.8500

Report Error

View Answer Report Error Discuss

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

Q:

A person borrows Rs. 5000 for 2 years at 4% p.a. simple interest. He immediately lends it to another person at 614 p.a for 2 years. Find his gain in the transaction per year

A) Rs. 112.50 B) Rs.150.25
C) Rs.167.50 D) Rs.170
 
Answer & Explanation Answer: A) Rs. 112.50

Explanation:

 gain in 2 years =Rs.5000*254*2100-5000*4*2100  

= Rs. (625 - 400) 

= Rs. 225 

 gain in 1 year =Rs.2252=112.50

Report Error

View Answer Report Error Discuss

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

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:

A metallic sheet is of rectangular shape with dimensions 48 m x 36 m. From each of its corners, a square is cut off so as to make an open box. If the length of the square is 8m, the volume of the box (in m3) is:

A) 4830 B) 5120
C) 6420 D) 8960
 
Answer & Explanation Answer: B) 5120

Explanation:

ke

Report Error

View Answer Report Error Discuss

Q:

The diagonal of the floor of a rectangular closet is 712 feet. The shorter side of the closet is 412 feet. What is the area of the closet in square feet?

A) 5 .5 B) 13.5
C) 27 D) 37
 
Answer & Explanation Answer: C) 27

Explanation:

Other side=1522-922ft  =2254-814ft  =1444= 6ft

 

Area of closet =(6 x 4.5)sq.ft = 27 sq.ft 

 

Report Error

View Answer Report Error Discuss

Q:

main()

{

float me = 1.1;

double you = 1.1;

if(me==you)

printf("yes");

else

printf("No");

}

A) Yes B) No
C) Both D) Compilation error
 
Answer & Explanation Answer: B) No

Explanation:

For floating point numbers (float, double, long double) the values cannot be predicted exactly. Depending on the number of bytes, the precession with of the value represented varies. Float takes 4 bytes and long double takes 10 bytes. So float stores 0.9 with less precision than long double.

Report Error

View Answer Report Error Discuss

Filed Under: Software Testing
Job Role: Software Architect

Q:

main()

{

char s[ ] = "man";

int i;

for( i=0; s[ i ]; i++)

printf( "n%c%c%c%c", s[ i ], *(s+i), *(i+s), i[s] );

}

A) mmmm aaaa nnnn B) aaaa mmmm nnnn
C) nnnn aaaa mmmm D) None
 
Answer & Explanation Answer: A) mmmm aaaa nnnn

Explanation:

s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea.Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i].

Report Error

View Answer Report Error Discuss

Filed Under: Programming

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