Questions

Q:

Baburnama was written in which language?

A) Chagatai Turkic B) Bahrani Arabic
C) Para-Mongolic D) Hijazi Arabic
 
Answer & Explanation Answer: A) Chagatai Turkic

Explanation:

Baburnama was the autobiography of founder of the Mughal Empire Babur. It is wrtten in Chagatai Turkic language, which is his mother tongue.

Report Error

View Answer Report Error Discuss

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

4 4180
Q:

What is at the end of a rainbow?

Answer

The logical answer for a puzzle is that the letter 'W'.


 


A rainbow is a spectrum of light that appears in the sky when sunlight is refracted through raindrops or other drops of moisture in the Earth's atmosphere. They have inspired much popular folklore, including the belief that a leprechaun can be found with a pot of gold at the end of a rainbow.

Report Error

View answer Workspace Report Error Discuss

3 4180
Q:

In the electrical circuit of a house, the fuse acts as

A) a load B) a thermopile
C) a safety device D) a step down device
 
Answer & Explanation Answer: C) a safety device

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

9 4180
Q:

Wild animals are not considered a natural resource.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

The given statement is False. Wild animals are considered as a natural resource.


Natural resources are resources taken from nature to satisfy our needs. These natural resources are:


1) Air


2) Water


3) Soil


4) Plants


5) Animals


6) Minerals


7) Forests


8) Natural Gas


9) Coal


10) Petroleum.

Report Error

View Answer Workspace Report Error Discuss

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

1 4179
Q:

The Pahari School , Rajput School, Mughal School, and Kangra School represent different styles of Indian

A) Music B) Dancing
C) Painting D) Architecture
 
Answer & Explanation Answer: C) Painting

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 4178
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 4177
Q:

A research team of 6 people is to be formed from 10 chemists,5 politicians, 8 economists and 15 biologists.How many teams have atleast 5 chemists?

A) 7350 B) 6400
C) 6379 D) 7266
 
Answer & Explanation Answer: D) 7266

Explanation:

10C5 x 28C1 x 10C6 = 7266

Report Error

View Answer Report Error Discuss

0 4176
Q:

Who has become the first woman Chief Justice of Delhi High Court?

A) Justice R. Banumathi B) Justice K.K.Usha
C) Justice G.Rohini D) Justice T. Meena Kumari
 
Answer & Explanation Answer: C) Justice G.Rohini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4173