Searching for "If"

Q:

The length of a rectangular plot is 20 metres more than its breadth. If the cost of fencing the plot @ 26.50 per metre is Rs. 5300, what is the length of the plot in metres?

A) 40 B) 120
C) 50 D) None of these
 
Answer & Explanation Answer: D) None of these

Explanation:

Let breadth = x metres.

Then, length = (x + 20) metres.

Perimeter = 5300 m = 200 m. 26.50

2[(x + 20) + x] = 200

2x + 20 = 100

2x = 80

x = 40.

Hence, length = x + 20 = 60 m.

Report Error

View Answer Report Error Discuss

Q:

The difference between the length and breadth of a rectangle is 23 m. If its perimeter is 206 m, then its area is:

A) 1520 sq.m B) 2420 sq.m
C) 2480 sq.m D) 2520 sq.m
 
Answer & Explanation Answer: D) 2520 sq.m

Explanation:

We have: (l - b) = 23 and 2(l + b) = 206 or (l + b) = 103. 

Solving the two equations, we get: l = 63 and b = 40. 

Area = (l x b) = (63 x 40) sq.m

= 2520 sq.m

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:

The ratio between the perimeter and the breadth of a rectangle is 5 : 1. If the area of the rectangle is 216 sq. cm, what is the length of the rectangle?

A) 16cm B) 18cm
C) 24cm D) .Data inadequate
 
Answer & Explanation Answer: B) 18cm

Explanation:

2(l+b)/b = 5/1 

=> 2l + 2b = 5b  

=> 3b = 2l  

=> b =(2/3) x l

 Then, Area = 216 sq.cm 

 

l x b = 216  

=> l x [(2/3)x l] =216  

=> l x l = 324 

=> l = 18 cm.

Report Error

View Answer Report Error Discuss

Q:

The ratio between the length and the breadth of a rectangular park is 3 : 2. If a man cycling along the boundary of the park at the speed of 12 km/hr completes one round in 8 minutes, then the area of the park (in sq. m) is:

A) 15360 B) 153600
C) .30720 D) 307200
 
Answer & Explanation Answer: B) 153600

Explanation:

Perimeter = Distance covered in 8 min. = (12000/60) * 8 = 1600m 

Let length = 3x metres and breadth = 2x metres.  

Then, 2(3x + 2x) = 1600 or x = 160.  

Length = 480 m and Breadth = 320 m.

Area = (480 x 320) = 153600 

Report Error

View Answer Report Error Discuss

Q:

If the ratio of the ages of two friends A and B is in the ratio 3 : 5 and that of B and C is 3 : 5 and the sum of their ages is 147, then how old is B?

A) 27 Years B) 75 Years
C) 45 Years D) 49 Years
 
Answer & Explanation Answer: C) 45 Years

Explanation:

The ratio of the ages of A and B is 3 : 5.
The ratio of the ages of B and C is 3 : 5.

B's age is the common link to both these ratio. Therefore, if we make the numerical value of the ratio of B's age in both the ratios same, then we can compare the ages of all 3 in a single ratio.

The can be done by getting the value of B in both ratios to be the LCM of 3 and 5 i.e., 15.

The first ratio between A and B will therefore be 9 : 15 and
the second ratio between B and C will be 15 : 25.

Now combining the two ratios, we get A : B : C = 9 : 15 : 25.

Let their ages be 9x, 15x and 25x.
Then, the sum of their ages will be 9x + 15x + 25x = 49x

The question states that the sum of their ages is 147.
i.e., 49x = 147 or x = 3.

Therefore, B's age = 15x = 15*3 = 45

Report Error

View Answer Report Error Discuss

Filed Under: Ratios and Proportions
Exam Prep: GRE

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:

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