Questions

Q:

Whenever people are looking for a job, they frequently see "program manager wanted" and "project manager wanted" when reading the job listings in their local newspaper. Which of the following statements best describes the relationship between projects and programs?

A) There are no differences between the two;they are just different terms for the same thing B) A project is composed of one or more related programs.
C) A program is composed of one or more related projects. D) A project is a temporary endeavor, where as a program is permanent
 
Answer & Explanation Answer: C) A program is composed of one or more related projects.

Explanation:

Answer A is incorrect because there is a definite difference between the two terms. Answer B is incorrect because just the opposite is true. Answer D is incorrect because a program is a group of projects, which are temporary endeavors.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4217
Q:

Which of the following is a Project to develop watersheds in India?

A) DRDO B) CARE
C) AVARD D) NWDPRA
 
Answer & Explanation Answer: C) AVARD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

5 4216
Q:

Which planet has maximum satellite?

A) Saturn B) Earth
C) Jupiter D) Mars
 
Answer & Explanation Answer: C) Jupiter

Explanation:

Jupiter has 67 natural satellites. Eight of Jupiter's moons are regular satellites, with 4 large, spherical moons, and 4 smaller moons that orbit closer to Jupiter. Jupiter has an additional 55 tiny irregular satellites.

 

The planet with the second highest number of moons is Saturn, with 61 moons.

Earth has only one natural satellite i.e, Moon.

Mercury and Venus have no satellites.

Report Error

View Answer Report Error Discuss

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

0 4214
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4213
Q:

Which of the following is the regulator of the credit rating agencies in india?

A) RBI B) SBI
C) SIDBI D) SEBI
 
Answer & Explanation Answer: D) SEBI

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank PO

4 4212
Q:

Grand Central Terminal Park Avenue is the world's

A) smallest railway station B) largest railway station
C) longest railway station D) None of above
 
Answer & Explanation Answer: B) largest railway station

Explanation:

Grand Central Terminal also referred to as Grand Central Station or Grand Central is the world’s largest railway station in terms of platforms in New York City with 44 platforms covering 48 acres.

Report Error

View Answer Report Error Discuss

4 4210
Q:

Which feature do Prokaryotic and Eukaryotic cells share

A) Nucleus B) DNA
C) Nuclear membrane D) Membrane bound Organelles
 
Answer & Explanation Answer: B) DNA

Explanation:

Prokaryotic and Eukaryotic cells do share a feature of DNA.

Both prokaryotic and eukaryotic cells have structures in common.

All cells have a plasma membrane, ribosomes, cytoplasm, and DNA.

Prokaryotic cells are primitive cells which have no true nucleus and membrane bound organelles, while Eukaryotic cells are cells that have true nucleus, membrane bound organelles and well defined structures and layouts.

Report Error

View Answer Report Error Discuss

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

5 4210
Q:

Who is named as 'Captain of the year' in the 10th annual ESPNcricinfo Awards ?

A) Quinton de Kock B) Hayley Williams
C) Ben Stokes D) Virat Kohli
 
Answer & Explanation Answer: D) Virat Kohli

Explanation:

Indian international cricketer Virat Kohli has named as the 'Captain of the Year' at the 10th annual ESPNcricinfo Awards. Kohli led India to nine wins out of 12 Tests in the year 2016.

♦ The ESPNcricinfo awards honour the best batting and bowling performances across the international formats of the game in the preceding calendar year.
♦ This year ESPNcricinfo introduced awards for women’s cricket across all three international formats.

Report Error

View Answer Report Error Discuss

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

10 4208