Questions

Q:

Improve the bracketed part of the sentence.
We (are looking forward for) a positive response from you.

A) are looking forward to B) have been looking forward at
C) should look forward at D) No improvement
 
Answer & Explanation Answer: A) are looking forward to

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

In the following code in which order the functions would be called?

a = ( f1 ( 23,14 ) * f2 ( 12/4) ) + f3() ;

Answer

The order may vary from compiler to compiler.


Here the multiplication will happen before the addition , but in which order the functions would be called is undefined. In an arithmetic expression the parentheses tell the compiler which operands go with which operators but do not force the compiler to evaluate everything within the parentheses first.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2124
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

But this does not mean

X-phenomena to the body
Y-is a meaningless expression
Z-that the reference of mental

A) YZX B) ZXY
C) YXZ D) XZY
 
Answer & Explanation Answer: B) ZXY

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2124
Q:

What is the SI unit of heat energy?

A) Joule B) Newton
C) Calorie D) Kelvin
 
Answer & Explanation Answer: A) Joule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2124
Q:

Photorespiration lowers the efficiency of photosynthesis by

A) consuming carbon dioxide B) removing ribulose bisphosphate molecules
C) releasing RuBP carboxylase molecules D) None of the above
 
Answer & Explanation Answer: B) removing ribulose bisphosphate molecules

Explanation:

photorespiration lowers the efficiency of photosynthesis by removing ribulose bisphosphate molecules.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2123
Q:

The question below consists of a set of labelled sentences. These sentences, when properly sequenced form a coherent paragraph. Select the most logical order of sentences from among the options.

 

P: We need to be more physically healthy and fit to win the current environmental challenges.
Q: It keeps us away from the diseases, infections and other lethal diseases by reducing extra kilos, improving the strength of muscle and bones, increasing immunity level, and maintaining the healthy functioning of our major body organs.
R: In the modern time, where pollution, global warming and other environmental issues have covered us, the importance of health and fitness has increased to a great extent.
S: It helps us to look better with lots of patience and confidence level.

A) PQRS B) QPRS
C) RPQS D) PRQS
 
Answer & Explanation Answer: C) RPQS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2123
Q:

In each of the following question, find out which part has an error. Mohan is one of those boys

A) / who has expressed B) / willingness for joining
C) / the educational tour. D) No error
 
Answer & Explanation Answer: A) / who has expressed

Explanation:

‘has’ should be replaced with ‘have’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2123
Q:

How would you find the length of each string in the following Program?

main()

{

    char *str[] = { "Frogs", "Do", "Not" , "Die" , "They" , "Croak!"};

    printf ("%d%d", sizeof (str), sizeof (str[0]));

}

Answer

main()


{


   char *str[] = { "Frogs", "Do", "Not", "Die." , "They", "Croak!" };


   int i;


         for ( i = 0;i<=5;i++)


         printf ("\n%s%d", str[i], strlen( str[i]));


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2123