Searching for "CH"

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 length of a rectangle is halved, while its breadth is tripled. What is the percentage change in area?

A) 25% increase B) 50% increase
C) 50% decrease D) 75% decrease
 
Answer & Explanation Answer: B) 50% increase

Explanation:

Let original length = x and original breadth = y.

Original area = xy.

 

New length = x/2 and New breadth = 3y.

New area = (x/2 * 3y) = (3/2 )xy

 

Therefore,  Increase % = [(1/2)xy * (1/xy) * 100] % = 50%

Report Error

View Answer Report Error Discuss

Q:

A towel, when bleached, was found to have lost 20% of its length and 10% of its breadth. The percentage of decrease in area is:

A) 10% B) 10.08%
C) 20% D) 28%
 
Answer & Explanation Answer: D) 28%

Explanation:

Let original length = x and original breadth = y. 

 

Decrease in area = xy -[(80/100x) * (90/100y)]  

=[(xy-(18/25)xy)]

=(7/25)xy

Decrease % =[(7/25)xy * (1/xy) * 100] =28%

Report Error

View Answer Report Error Discuss

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:

Which is the simplest file structure?

A) Sequential B) Indexed
C) Random D) None
 
Answer & Explanation Answer: A) Sequential

Explanation:

Sequential is the simplest file structure

Report Error

View Answer Report Error Discuss

Filed Under: Software Testing

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 the areas in which data structures are applied extensively?

Answer

Compiler Design,


 Operating System,


 Database Management System,


Statistical analysis package,


Numerical Analysis,


 Graphics,


 Artificial Intelligence,


 Simulation

Report Error

View answer Workspace Report Error Discuss

Subject: C++

Q:

Should government jobs in rural areas have more incentives

Arguments:

1. Yes. Incentives are essential for attracting government servants there

2. No. Rural areas are already cheaper,healthier and less complex than big cities .So,why offer extra incentives!

A) Only 1 is true B) Only 2 is true
C) Either 1 or 2 is true D) Neither 1 or 2 is true
 
Answer & Explanation Answer: A) Only 1 is true

Explanation:

Government jobs in rural are underlined with several difficulties in love of these .In lieu of these ,extra incentives are needed

Report Error

View Answer Report Error Discuss

Filed Under: Statement and Arguments
Exam Prep: GRE