Questions

Q:

Project Cost Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Cost Estimating ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets 

  • Project scope statement

  • Work breakdown structure

  • WBS dictionary 

  • Project management plan


             - Schedule management plan


             - Staffing management plan


             - Risk register


II. Tools and Techniques



  • Analogous estimating

  • Determine resource cost rates

  • Bottom-up estimating

  • Parametric estimating

  • Project management software

  • Vendor bid analysis

  • Reserve analysis

  • Cost of quality


III. Outputs



  • Activity cost estimates 

  • Activity cost estimate supporting detail 

  • Requested changes

  • Cost management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2028
Q:

What can you hear but not touch or see?

Answer

The sound is what can you hear but not touch or see.

Report Error

View answer Workspace Report Error Discuss

2 2028
Q:

Explain compiler?

Answer

compiler is used to translate the high-level language program into machine code at a time. It doesn't require special instruction to store in a memory, it stores automatically. the execution time is less compared interpreter.


A compiler is a program that translates a source program written in some high-level programming langualge (such as Java) into machine code for some computer architecture (such as the Inter Pentium archiecture).

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2027
Q:

VPN's are implemented to provide

A) A secure connection through public networks B) Additional security for selected computers
C) A secure connection within a private network D) Additional encryption by using IPSec
 
Answer & Explanation Answer: A) A secure connection through public networks

Explanation:

VPNs_are_implemented_to_provide1561554026.png image

 

VPN's are implemented to provide a secure connection through public networks. A virtual private network extends a private network across a public network, and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.

Report Error

View Answer Report Error Discuss

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

3 2027
Q:

Who is the leader of the Legislative branch?

A) Vice President of USA B) Senate
C) President of USA D) House of Representatives
 
Answer & Explanation Answer: A) Vice President of USA

Explanation:

Legislative branch is made of two houses. 

1. Congress - the Senate and

2. House of Representatives.

 

Senate- composed of 100 senators two for each states - Vice President of USA is president of Senate.

House of Representatives - The House of Representatives is made up of 435 elected members, divided among the 50 states in proportion to their total population.

Report Error

View Answer Report Error Discuss

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

3 2027
Q:

Which chemical is not found in DNA nucleotides?

A) Thymine B) Uracil
C) Adenine D) All of the above
 
Answer & Explanation Answer: B) Uracil

Explanation:

A nucleotide is an organic molecule that is the building block of DNA and RNA. They also have functions related to cell signaling, metabolism, and enzyme reactions. A nucleotide is made up of three parts: a phosphate group, a 5-carbon sugar, and a nitrogenous base. The four nitrogenous bases in DNA are adenine, cytosine, guanine, and thymine. RNA contains uracil, instead of thymine. 

 

A nucleotide within a chain makes up the genetic material of all known living things.

Report Error

View Answer Report Error Discuss

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

1 2027
Q:

What is the world's least densely populated country?

Answer

Mongolia

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2026
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2026