Questions

Q:

Monitoring and Controlling Process Group

What are the Project Management Processes included in Monitoring and Controlling Process Group?

Answer


    • Monitor and Control Project Work

    • Integrated Change Control

    • Scope Verification

    • Scope Control

    • Schedule Control

    • Cost Control

    • Perform Quality Control

    • Manage Project Team

    • Performance Reporting

    • Manage Stakeholders

    • Risk Monitoring and Control

    • Contract Administration


Report Error

View answer Workspace Report Error Discuss

0 2850
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2850
Q:

Where is the Forest Reserve Institute of India located

A) Bhopal B) Dehradum
C) Lucknow D) Delhi
 
Answer & Explanation Answer: B) Dehradum

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

7 2850
Q:

What is the main component of biogas and natural gas?

A) Carbon dioxide B) Butane
C) Hydrogen Sulphide D) Methane
 
Answer & Explanation Answer: D) Methane

Explanation:

Methane is the main component of biogas and natural gas.

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

5 2849
Q:

Which is the longest railway platform in the world?

A) Mumbai B) Gorakhpur
C) Thane D) Kochi
 
Answer & Explanation Answer: B) Gorakhpur

Explanation:

Gorakhpur railway platform in Uttar Pradesh is the longest railway platform in the world.

Report Error

View Answer Report Error Discuss

Filed Under: Longest, Shortest, Deepest
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2849
Q:

Which is India's Largest BPO (Business Process Outsourcing) Company?

A) Piogeon B) Spectramind
C) Technovate D) None of these
 
Answer & Explanation Answer: B) Spectramind

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

12 2847
Q:

Atacama  desert is located in 

A) dense forest B) grassland
C) Scrub D) all of these
 
Answer & Explanation Answer: D) all of these

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2847
Q:

Systems biology is mainly an attempt to

A) simplify complex problems by reducing the system into smaller, less complex units. B) understand the behavior of entire biological systems.
C) analyze genomes from different species. D) speed up the technological application of scientific knowledge.
 
Answer & Explanation Answer: B) understand the behavior of entire biological systems.

Explanation:

Systems biology is mainly an attempt to understand the behavior of entire biological systems by studying interactions among its component parts.

Report Error

View Answer Report Error Discuss

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

0 2847