Questions

Q:

Rearrange the parts of the sentence in correct order.
It is for the government,
P-especially one with such a
Q-significant majority, to have the
R-intelligence and leadership to think long term

A) QRP B) PQR
C) RPQ D) QPR
 
Answer & Explanation Answer: B) PQR

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

A shopkeeper mixed two verities of rice at Rs. 40/kg and Rs.60/kg in the ratio 3: 2 and sold the mixture at 10% profit. Find the  price per kg at which he sold the mixture?

A) Rs. 56 B) Rs. 58.8
C) Rs. 54 D) Rs. 52.8
 
Answer & Explanation Answer: D) Rs. 52.8

Explanation:

Ans.  CP of mixture = {(40*3+60*2)/2+3} = 48 SP of the mixture = 1.1 48 =52.8

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL

0 2125
Q:

The Daily Weather Map of India is prepared and printed at___________

A) Kolkata B) Mumbai
C) New Delhi D) Pune
 
Answer & Explanation Answer: D) Pune

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2124
Q:

Which is not true about the Cabinet?

A) It came about to fill a need. B) It is not mentioned in the Constitution.
C) It is mentioned in Article II of the Constitution. D) It has grown over time.
 
Answer & Explanation Answer: C) It is mentioned in Article II of the Constitution.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2124
Q:

Arrange the following compounds in order of increasing acidity?

A) o-cresol < phenol < o-nitrophtenol B) phenol < o-nitrophtenol < o-cresol
C) o-nitrophtenol < o-cresol < phenol D) None of the above
 
Answer & Explanation Answer: A) o-cresol < phenol < o-nitrophtenol

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2123
Q:

Project Human Resource Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Human Resource Planning?

Answer

I. Inputs



  • Enterprise Environmental factors

  • Organizational process assets

  • Project management plan


                  - Activity resource requirements


II. Tools and Techniques



  • Organization charts and position descriptions 

  • Networking

  • Organizational theory


III. Outputs



  • Roles and responsibilities

  • Project organization charts

  • Staffing management plan

Report Error

View answer Workspace Report Error Discuss

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