Questions

Q:

The shorter i am, the bigger i am.

What am I?

Answer

A Temper.

Report Error

View answer Workspace Report Error Discuss

8 4600
Q:

Bhel commissions another 600Mw thermal unit in which state ?

A) Telangana B) Andhra Pradesh
C) Chattisgarh D) Karnataka
 
Answer & Explanation Answer: A) Telangana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , GATE , GRE
Job Role: Bank Clerk , Bank PO , IT Trainer , Network Engineer

6 4596
Q:

The price that you charge for your project is

A) equal to the cost estimate plus a fixed percentage. B) essentially the same as the cost estimate.
C) typically 1.5 - 2.5 times the cost estimate in order to account for corporate overhead costs D) a business decision that considers the cost estimate together with other factors.
 
Answer & Explanation Answer: D) a business decision that considers the cost estimate together with other factors.

Explanation:

Overhead costs should be figured into the cost estimate. Desired profit considered together with other factors such as market demand, availability of resources, prior experience are then used to determine the optimal price.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4593
Q:

Which is the most southerly test match grounds of England

A) The Lords B) The Oval
C) The Veears D) The Lyra
 
Answer & Explanation Answer: A) The Lords

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

9 4592
Q:

In which one among the following districts is the highest point of Eastern Ghats located?

A) Ganjam B) Visakhapatnam
C) Kurnool D) North Arcot
 
Answer & Explanation Answer: B) Visakhapatnam

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

10 4589
Q:

The Buckingham Canal, which has been declared a National Waterway of India recently, is a canal running from

A) Punjab to Haryana B) Mumbai to goa
C) Vijayawada to Villupuram D) Cochin to Kozhikode
 
Answer & Explanation Answer: C) Vijayawada to Villupuram

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

3 4588
Q:

Can I increase the size of a dynamically allocated array? < Yes / No> if yes, how?

Answer

Yes, using the realloc() function as shown below:


main()


{


        int *p;


        p = ( int *) malloc (20) ;


        t = p;


        t = (int *) realloc ( p, 40);


        if ( t == NULL )


        Printf (" Cannot reallocate, leaves previous allocated region unchanged ");


       else


       {


              if ( p ==t )


              ;  / * the array expanded at the same region */


             else


            { 


                 free ( p ); / * deallocate the original array */


                 p = t;  /* set p to newly allocated region */


             }


      }


}  

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4587
Q:

Why are risk tolerances and thresholds important to identify in the risk management Plan?

A) Tolerances and thresholds, when documented, can help to define the target by which the project team can measure the effectiveness of the risk response plan execution B) Tolerances and thresholds help to define how often the risk management process will be performed
C) Tolerances and thresholds determine what tools and data sources will be used in risk management D) Tolerances and thresholds provide the basis for costing the risk management process as well as defining how risk activities will be recorded
 
Answer & Explanation Answer: A) Tolerances and thresholds, when documented, can help to define the target by which the project team can measure the effectiveness of the risk response plan execution

Explanation:

Answer B defines the timing that should be addressed in the risk management plan. Answer C defines the methodology that should be identified in a risk management plan. Answer D touches on the budgeting and tracking that should be defined in the risk management plan.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4587