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 3728
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 3727
Q:

Which states of India have oil fields?

A) Andhra Pradesh & Telangana B) Telangana & Tripura
C) Bihar & Mizoram D) Tamilnadu & Odisha
 
Answer & Explanation Answer: D) Tamilnadu & Odisha

Explanation:

Indian states having oil fields are

  • Andhra Pradesh
  • Arunachal Pradesh
  • Mizoram
  • Odisha
  • Tamilnadu
  • Rajasthan
Report Error

View Answer Report Error Discuss

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

6 3727
Q:

Banaue Rice Terraces in Ifugao is located in which country?

A) Burma B) Brunei
C) Philippines D) India
 
Answer & Explanation Answer: C) Philippines

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

5 3726
Q:

Rearrange the parts of the sentence in correct order.

 


The orbital motion


P : of the earth


Q : uncertain rates


R : can have

 

A) QPR B)  QRP  
C) RQP   D) PRQ
 
Answer & Explanation Answer: D) PRQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 3726
Q:

Which of the following rivers of peninsular India is distinct from the remaining three?

 

A) Narmada B) Cauvery
C) Krishna D) Godavari
 
Answer & Explanation Answer: A) Narmada

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 3724
Q:

Ecology deals with the study of

A) Environment B) Birds
C) Organisms and their Environment D) Living beings
 
Answer & Explanation Answer: C) Organisms and their Environment

Explanation:

ecology_deals_with_the_study_of1553078201.png image

Ecology is the branch of science which deals with the study of Ecosystem (relation between the Organisms and their Environment.)

Report Error

View Answer Report Error Discuss

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

16 3724
Q:

A capillary tube is partially dipped vertically in a vessel containing water. Due to capillarity  water rises in the tube. The height of water rise in the tube can be increased by 

A) decreasing the radius of the capillary tube B) increasing the radius of the capillary tube
C) increasing the height of water in the vessel D) None of these
 
Answer & Explanation Answer: A) decreasing the radius of the capillary tube

Explanation:

The water rise in a capillary tube dipped in water is such that the weight of water in the tube above the surface of water in the vessel is equal to (balances) the upward force due to surface tension. So it is clear that if the the bore (radius) to the tube is decreased, the height of the water column in it must be greater.  So, (a) is correct.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

4 3723