Questions

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

Which is the first bank established in India?

A) General Bank of India B) Bank of Calcutta
C) Bank of Hindustan D) Bank of Baroda
 
Answer & Explanation Answer: C) Bank of Hindustan

Explanation:

The first bank established in India in the year 1770 was Bank of Hindustan followed by the General Bank of India in the year 1786. The State Bank of India (SBI) was the still existing oldest bank which was established in the year 1806 in the name of Bank of Calcutta.

Which_is_the_first_bank_established_in_India1559281065.jpg image

Report Error

View Answer Report Error Discuss

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

5 4177
Q:

Which state has the highest number of 55770 fully covered tribal habitations with the safe drinking water in the country followed by Odisha and Jharkhand?

A) Tamilnadu B) Kerala
C) Manipur D) Madhya Pradesh
 
Answer & Explanation Answer: D) Madhya Pradesh

Explanation:

Madhya Pradesh has the highest number of 55770 fully covered tribal habitations with the safe drinking water in the country followed by Odisha and Jharkhand.

Report Error

View Answer Report Error Discuss

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

13 4177
Q:

The Union Territories get representation in

A) Lok Sabha B) Rajya Sabha
C) Both A & B D) Supreme Court
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The Union Territories get representation in Both the houses of Parliament i.e, The Lok Sabha and The Rajya Sabha.

Report Error

View Answer Report Error Discuss

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

13 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 4175
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 4174
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 4172
Q:

In 1955, Imperial Bank of India, a leadimg commercial bank of that time was nationalised and renamed as:

A) Central Bank of India B) Bank of India
C) Indian Bank D) State Bank of India
 
Answer & Explanation Answer: D) State Bank of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

16 4171