Searching for "and"

Q:

The triple constraints of Project Management are frequently discussed in other contextx such as marketing classes and a variety of other subjects. The interaction between _____, ______, and _______can be seen as a triangle, with the three sides impacting the others.

A) quality, resources, time B) money, resources, quality
C) scope, quality, planning D) time, scope, cost
 
Answer & Explanation Answer: D) time, scope, cost

Explanation:

Scope, quality, and cost are the triple constraints. Quality is a function of these three areas and can impact them; however it is not considered one of the components of the triple constraint. Therefore, Answer A, B, and C are incorect.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

The difference between the core process and facilitating processes is 

A) Core process take more time and resources B) Core processes are performed in the same sequence and facilitating processes are intermittent
C) Facilitating processes often require micromanagement in order to be completed on time D) Core Processes are not performed in the same sequence and facilitating processes are
 
Answer & Explanation Answer: B) Core processes are performed in the same sequence and facilitating processes are intermittent

Explanation:

Answer A is incorrect because the core processes do not necessarily take more time and resources than facilitating processes. Answer C is incorrect because core processes are not usually tied with micromanagement of tasks. Answer D is incorrect because core processes are performed in the same sequence on most projects.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

Projects come in all sizes and shapes. Many times, project managers must daw from their "toolbox" of processes, tools, or methodologies. How many knowledge areas are described in the Project Management Body of Knowledge ? 

A) 2 - core processes and facilitating processes B) 9
C) 5 - initiation, planning,execution,control, and closing D) 39
 
Answer & Explanation Answer: B) 9

Explanation:

Answer A is incorrect because it pertains to the processes. Answer C is incorrect because these are the five phases of a project. Answer D is incorrect because there are 39 processes, not knowledge areas.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

The book "The Man who knew Infinity" by Robert Kanigel and extensively reviewed in Indian newspapers is the biography of 

A) Vikram Sarabhai B) Sir Homi J Bhabha
C) Sir CV Raman D) Srinivasa Ramanujan
 
Answer & Explanation Answer: D) Srinivasa Ramanujan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

'Grand Slam' in Tennis Consists of which of the following combinations?

A) Wimbledon, French Open, Italian Open, Australian Open B) Wimbledon, Australian Open, Japan Open, US Open
C) Australian Open, French Open, Wimbledon, US Open D) Wimbledon, South Africa Open, French Open
 
Answer & Explanation Answer: C) Australian Open, French Open, Wimbledon, US Open

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

Which of the following groups of alphabets should replace the blank spaces so that the group of alphabets, given in bold, follow a logical pattern from the preceding and the following group of alphabets?

b w _ y z a,  d s t u v _ ,  _ o p q r e 

A) x, e, d B) x, c, f
C) x, e, n D) x, c, d
 
Answer & Explanation Answer: B) x, c, f

Explanation:

b w x y z a d s t u v cf o p q r e

Report Error

View Answer Report Error Discuss

Filed Under: Number Series

Q:

What is the importance of finally block in exception handling ?

Answer

A finally block will always be executed, whether or not an exception is actually thrown. Even in the case where the catch statement is missing and an exception is thrown, the finally block will still be executed. Last thing to mention is that the finally block is used to release resources like I/O buffers, database connections, etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What is the difference between Serial and Throughput Garbage collector ?

Answer

The throughput garbage collector uses a parallel version of the young generation collector and is meant to be used with applications that have medium to large data sets. On the other hand, the serial collector is usually adequate for most small applications (those requiring heaps of up to approximately 100MB on modern processors).

Report Error

View answer Workspace Report Error Discuss

Subject: Java