Questions

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:

Be the embodiment or perfect example of

A) Signify B) Personify
C) Characterise D) Idol
 
Answer & Explanation Answer: B) Personify

Explanation:

One word substitution for Be the embodiment or perfect example of is Personify. Personify means represent or embody (a quality, concept, etc.) in a physical form.

 

Characterise: describe the distinctive nature or features of.

Idol: an image or representation of a god used as an object of worship.

Signify: be an indication of.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

1 4215
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 4213
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 4212
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 4210
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 4209
Q:

...................was conferred Sahitya Akademi Award for his poetry book Khara Zaran

A) Mr. Chinu Modi B) Robin Sharma
C) Gunvant Shah D) Narendra kohli
 
Answer & Explanation Answer: A) Mr. Chinu Modi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4208
Q:

Which of the following definitions describes a chemical hazard?

A) Microorganisms, such as bacteria, fungus, mold, or viruses that can cause illness B) These hazards can lead to injuries to the joints or muscles by way of heavy, frequent lifting, repetitive tasks
C) Can be present in dust, fumes, liquids, solids, mists, vapors, or gases of products used at a site or released during a construction job D) The most commonly thought of hazards for construction
 
Answer & Explanation Answer: C) Can be present in dust, fumes, liquids, solids, mists, vapors, or gases of products used at a site or released during a construction job

Explanation:
Report Error

View Answer Report Error Discuss

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

2 4207