Questions

Q:

' Ashoka Chakra ' is awarded for 

A) Outstanding contribution to literature B) Gallantry by children
C) Acts of gallantry in the presence of the enemy D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy
 
Answer & Explanation Answer: D) Acts most conspicuous bravery of self saccrifice on land, air or sea but not in the presence of the enemy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

3 4076
Q:

World Soil Day is celebrated on ?

A) July 26 B) June 30
C) August 9 D) December 5
 
Answer & Explanation Answer: D) December 5

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

15 4076
Q:

A machine powered by rotating blades is a

A) Fumerole B) Turbines
C) Solar panel D) None of the above
 
Answer & Explanation Answer: B) Turbines

Explanation:

Turbines are machines powered by rotating blades.

Report Error

View Answer Report Error Discuss

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

4 4076
Q:

Nucleus of Hydrogen atom consists of

A) 2 protons only B) 2 neutrons only
C) 1 proton only D) 1 electron only
 
Answer & Explanation Answer: C) 1 proton only

Explanation:

The nucleus of hydrogen consists of only a single proton.

Its parts are a single negatively-charged electron that circles a single positively-charged nucleus of the hydrogen atom.

The electron is bound to the nucleus by the Coulomb force.

Report Error

View Answer Report Error Discuss

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

4 4075
Q:

Smallest bone of human body is _________

A) Nails B) Fibula
C) Bone of nose D) Stapes
 
Answer & Explanation Answer: D) Stapes

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 4074
Q:

Outward extension of the shoulder bone is the

A) acromion B) foramen
C) cancellous bone D) All of the above
 
Answer & Explanation Answer: A) acromion

Explanation:

Outward extension of the shoulder bone is called as the acromion.

acromion1533537961.jpg image

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

3 4073
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 4073
Q:

Math Logic Challenge

18582095_1309614185812349_1823149961450714717_n1499156071.jpg image

A) 23 B) 26
C) 13 D) 29
 
Answer & Explanation Answer: B) 26

Explanation:

Let the integer be x. Then,

 x2-20x = 156

 

(x + 6)(x - 26) = 0

 

x = 26

 

The integer is 26.

Report Error

View Answer Report Error Discuss

Filed Under: Math Puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

12 4071