Questions

Q:

In which layer of the atmosphere does weather occur?

A) Troposphere B) Stratosphere
C) Ionosphere D) Mesosphere
 
Answer & Explanation Answer: A) Troposphere

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2064
Q:

Agronomy is a branch of agriculture that deals with

A) Study of crops B) Study of soil
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Agronomy is a branch of agriculture that deals with the study of crops and the soils in which they are produced.

Report Error

View Answer Report Error Discuss

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

2 2063
Q:

Project Cost Management - Processes

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

Answer

I. Inputs



  • Project scope statement

  • Work breakdown structure

  • WBS dictionary

  • Activity cost estimates

  • Activity cost estimate supporting detail

  • Project schedule 

  • Resource calendars 

  • Contract

  • Cost management plan


II. Tools and Techniques



  • Cost aggregation

  • Reserve analysis

  • Parametric estimating 

  • Funding limit reconciliation


III. Outputs



  • Cost baseline 

  • Project funding requirements 

  • Cost management plan (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2063
Q:

Southerners who were for redemption wanted which of the following?

A) remove blacks from politics B) remove republicans from politics
C) hold political power D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2063
Q:

In Geography, who propounded the theory of convectional current Hypothesis?

A) Carl Ritter B) Immanuel Kant
C) Arthur Holmes D) Arnaldo Faustini
 
Answer & Explanation Answer: C) Arthur Holmes

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2063
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 2062
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 2062
Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2062