Questions

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

Which layer of the atmosphere contains the ozone layer?

A) Troposphere B) Stratosphere
C) Thermosphere D) Mesosphere
 
Answer & Explanation Answer: B) Stratosphere

Explanation:

The ozone layer is a region of Earth's Stratosphere that absorbs most of the Sun's ultraviolet (UV) radiation. It contains high concentrations of ozone (O3) in relation to other parts of the atmosphere, although still small in relation to other gases in the stratosphere.

 

The Atmosphere is divided into 4 layers according to major changes in temperature. They are :

1. Troposphere,

2. Stratosphere,

3. Mesosphere  and

4. Thermosphere.

The farther away from earth, the thinner the atmosphere gets.

Report Error

View Answer Report Error Discuss

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

14 4170
Q:

IP address refers to

A) A numerical network label B) A dynamic link between two computers
C) A group of networks D) Digital 'know your client'
 
Answer & Explanation Answer: A) A numerical network label

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

44 4170
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 4169
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 4169