Questions

Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Integrated Change Control Phase?

Answer

I. Inputs



  • Project management plan

  • Requested changes

  • Work performance information

  • Recommended preventive actions

  • Recommended corrective actions

  • Recommended defect repair

  • Deliverables


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Approved change requests

  • Rejected change requests

  • Project management plan(updates)

  • Project scope statement (updates)

  • Approved corrective actions

  • Approved preventive actions

  • Approved defect repair

  • Validated defect repair

  • Deliverables 

Report Error

View answer Workspace Report Error Discuss

0 2380
Q:

Which state became 1st to launch a pan-India single emergency no. 112?

A) Haryana B) Himachal Pradesh
C) Madhya Pradesh D) Uttar Pradesh
 
Answer & Explanation Answer: B) Himachal Pradesh

Explanation:

Himachal Pradesh state became 1st to launch a pan-India single emergency no. 112 where all kinds of immediate help can be sought in urgent matters.

 

Under this project, an Emergency Response Centre (ERC) has been established in Shimla along with 12 district command centres (DCCs), covering the entire state. The ERC has been integrated with police (100), fire (101), health (108) and women (1090) helpline numbers to provide emergency services through the emergency number '112'.

Report Error

View Answer Report Error Discuss

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

1 2380
Q:

The first Finance Minister of India?

A) RK Shanmukham Chetty B) P Chidambaram
C) Jawaharlal Nehru D) Vallabhai Patel
 
Answer & Explanation Answer: A) RK Shanmukham Chetty

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2380
Q:

The 106th Indian Science Congress 2019 will held in which place?

A) Hyderabad B) Punjab
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Punjab

Explanation:

The 106th Indian Science Congress 2019 will held in Lovely Professional University in Jalandhar, Punjab from 3rd January 2019 to 7th January 2019. PM Narendra Modi is going to inaugarate this.

Report Error

View Answer Report Error Discuss

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

1 2379
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

The Alaska pipeline starts at the frozen edge of the Arctic Ocean. It stretches southward across the largest and northernmost state in the United States, ending at a remote ice-free seaport village nearly 800 miles from where it begins. It is massive in size and extremely complicated to operate. The steel pipe crosses windswept plains and endless miles of delicate tundra that tops the frozen ground. It weaves through crooked canyons, climbs sheer mountains, plunges over rocky crags, makes its way through thick forests, and passes over or under hundreds of rivers and streams. The pipe is 4 feet in diameter, and up to 2 million barrels (or 84 million gallons) of crude oil can be pumped through it daily. Resting on H-shaped steel racks called "bents", long sections of the pipeline follow a zigzag course high above the frozen earth. Other long sections drop out of sight beneath spongy or rocky ground and return to the surface later on. The pattern of the pipeline's up-and-down route is determined by the often harsh demands of the arctic and subarctic climate, the tortuous lay of the land, and the varied compositions of soil, rock, or permafrost (permanently frozen ground). A little more than half of the pipeline is elevated above the ground. The remainder is buried anywhere from 3 to 12 feet, depending largely upon the type of terrain and the properties of the soil. One of the largest in the world, the pipeline cost approximately $8 billion and is by far the biggest and most expensive construction project ever undertaken by private industry. In fact, no single business could raise that much money, so 8 major oil companies formed a consortium in order to share the costs. Each company controlled oil rights to particular shares of land in the oil fields and paid into the pipeline-construction fund according to the size of its holdings. Today, despite enormous problems of climate, supply shortage, equipment breakdowns, labour disagreements, treacherous terrain, a certain amount of mismanagement, and even theft, the Alaska pipeline has been completed and is operating.


What is the capacity of the Alaskan pipeline?

A) 2 million gallons of crude oil B) 4 million barrels of crude oil
C) 84 million gallons of crude oil D) 84 billion barrels of crude oil
 
Answer & Explanation Answer: C) 84 million gallons of crude oil

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2379
Q:

Process of gaining electrons is known as _____.

A) oxidation B) reduction
C) radiation D) both oxidation and reduction
 
Answer & Explanation Answer: B) reduction

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2379
Q:

Siachen is a

A) frontier zone between India and Myanmar B) desert frontier zone between India and Pakistan
C) glacier frontier zone between India and Pakistan D) frontier zone between China and India
 
Answer & Explanation Answer: C) glacier frontier zone between India and Pakistan

Explanation:

Siachen is a glacier frontier zone between India and Pakistan.

Siachen_is_a1554289418.jpg image

Report Error

View Answer Report Error Discuss

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

4 2379
Q:

Write a program for matrix multiplication in c

Answer

#include <stdio.h>


int main() {


  int a[5][5], b[5][5], c[5][5], i, j, k, sum = 0, m, n, o, p;


  printf( "\nEnter the row and column of first matrix" );


  scanf( "%d %d", &m, &n );


  printf( "\nEnter the row and column of second matrix" );


  scanf( "%d %d", &o, &p );


  if(n!=o) {


      printf( "Matrix mutiplication is not possible" );


      printf( "\nColumn of first matrix must be same as row of second matrix" );


  }


  else {


      printf( "\nEnter the First matrix" );


      for( i=0; i<m; i++ )


      for( j=0; j<n; j++ )


           scanf( "%d", &a[i][j] );


      printf( "\nEnter the Second matrix" );


      for( i=0; i<o; i++ )


      for( j=0; j<p; j++ )


           scanf( "%d", &b[i][j] );


      printf( "\nThe First matrix is\n" );


      for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<n; j++ ) {


           printf( "%d\t", a[i][j] );


      }


      }


      printf( "\nThe Second matrix is\n" );


      for( i=0; i<o; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", b[i][j] );


      }       


      }


      for( i=0; i<m; i++ )


      for( j=0; j<p;j++ )


           c[i][j] = 0;


      for( i=0; i<m; i++ ) { //row of first matrix


      for( j=0; j<p; j++ )  {  //column of second matrix


           sum = 0;


           for( k=0; k<n; k++ )


               sum = sum + a[i][k]*b[k][j];


           c[i][j] = sum;


      }


      }


  }


  printf( "\nThe multiplication of two matrix is\n" );


  for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", c[i][j] );


      }


  }


  return 0;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2379