Questions

Q:

Assuming that the phases in a project are concept, development, implementation and termination, which phase typically has the highest degree of uncertainty?

A) Concept B) Development
C) Implementation D) Termination
 
Answer & Explanation Answer: A) Concept

Explanation:

The first phase in a project always has the greatest degree of uncertainty because at this point in time the product is the least well defined. PMBOK, See figure 2-2. [2.1.1]

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4826
Q:

Which is the liquid that shows Capillary fall?

Answer

Mercury

Report Error

View answer Workspace Report Error Discuss

Subject: Physics

8 4825
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 4823
Q:

The 'Neticket' scheme, which allows a passenger to fly without ever visiting a reservation counter has been introduced by :

A) Jet Airwaya B) Sahara Air
C) Indian Airlines D) None of these
 
Answer & Explanation Answer: C) Indian Airlines

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

9 4823
Q:

Who wanted economic freedom with political freedom?

A) Swami Sahajanand Saraswati B) Swami Vivekanand
C) Swami Ramanand D) Swami Dayanand saraswati
 
Answer & Explanation Answer: A) Swami Sahajanand Saraswati

Explanation:
Report Error

View Answer Report Error Discuss

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

7 4822
Q:

Who has become the first Indian to be nominated as a member of the ITTF Umpires and Referees Committee (URC)  ?

A) Raksheet Kota B) Ganeshan Neelakanta Iyer
C) Pankaj Awasthi D) S. Sridhar
 
Answer & Explanation Answer: B) Ganeshan Neelakanta Iyer

Explanation:

Ganeshan Neelakanta Iyer has become the first Indian to be nominated as a member of the ITTF Umpires and Referees Committee (URC). His term will be for two years and is extendable. Iyer is the only assigned competition manager of the International Table Tennis Federation (ITTF) in India. Beside this, Ganeshan has also been recommended as the Technical Commissioner from the Asian Continent to ITTF and his term will be for a period of four years. He is also the chairman of the South Asian Federation technical committee and a member of the Technical Committee of the Commonwealth Table Tennis Federation (CTTF).

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

6 4822
Q:

Who governs the INTERNET ?

A) ISOC B) IETF
C) IAB D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

9 4822
Q:

Why address bus in unidirectional and data bus is bidirectional?

Answer

Because there is no need address traansaction between processor and peripheral device but data bus is needed because data has to be read and write

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

3 4820