Questions

Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Create WBS ?

Answer

I. Inputs



  • Organizational process assets

  • Project scope statement

  • Project scope management  plan

  • Approved Change requests


II. Tools and Techniques



  • Work breakdown structure templates

  • Decomposition


III. Outputs



  • Project scope statement(updates)

  • Work breakdown structure

  • WBS dictionary

  • Scope baseline

  • Project scope management plan(updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2073
Q:

Most catches in test cricket by wicket keeper?

A) MV. Boucher B) M.S Dhoni
C) Gilchrist D) IA. Healy
 
Answer & Explanation Answer: A) MV. Boucher

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2072
Q:

When was Zoroastrianism founded?

A) 4th century BCE B) 6th century BCE
C) 8th century BCE D) 10th century BCE
 
Answer & Explanation Answer: B) 6th century BCE

Explanation:

Zoroastrianism is one of the world's oldest extant religions. It is the ancient pre-Islamic religion of Iran that survives there in isolated areas and, more prosperously, in India, where the descendants of Zoroastrian Iranian (Persian) immigrants are known as Parsis, or Parsees.

 

The Iranian prophet and religious reformer Zarathustra flourished before the 6th century BCE more widely known outside Iran as Zoroaster is traditionally regarded as the founder of the religion.

 

Zoroastrianism contains both monotheistic and dualistic features. It likely influenced the other major Western religions—Judaism, Christianity, and Islam.

Report Error

View Answer Report Error Discuss

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

1 2072
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2072
Q:

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2072
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2072
Q:

What would be the output of the following program?

main()

{

    float a = 0.7;

    if ( a < 0.7f )

          printf ( " C ");

    else 

          Printf ( " C++ ");

}

Answer

C++

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2072
Q:

The end products of glycolysis are

A) ATP B) NADH
C) Pyruvate D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Glycolysis involves the breaking down of a sugar into more manageable compounds in order to produce energy.

 

The net end products of glycolysis are two Pyruvate, two NADH, and two ATP.

 

Report Error

View Answer Report Error Discuss

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

2 2072