Questions

Q:

Who among the following introduced the subsidiary alliance system in India?

A) Lord Cunningham B) Lord Cliv
C) Lord Wellesley D) Lord Canning
 
Answer & Explanation Answer: C) Lord Wellesley

Explanation:

The doctrine of the subsidiary alliance was introduced by Lord Wellesley, British Governor-General of India from 1798 to 1805.

The Nizam of Hyderabad was the first to enter into such an alliance in 1798. Tipu Sultan of Mysore refused to do so, but after the British victory in the Fourth Anglo-Mysore War, Mysore was forced to become a subsidiary state in 1799.

The Nawab of Awadh was the next to accept the Subsidiary Alliance, in 1801.

Report Error

View Answer Report Error Discuss

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

14 4427
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 4427
Q:

Select the correct statement about the pharynx.

A) The auditory tube drains into the nasopharynx B) The laryngopharynx blends posteriorly into the nasopharynx
C) The palatine tonsils are embedded in the lateral walls of the nasopharynx D) The pharyngeal tonsil is located in the laryngopharynx
 
Answer & Explanation Answer: A) The auditory tube drains into the nasopharynx

Explanation:
Report Error

View Answer Report Error Discuss

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

3 4427
Q:

Is water a Pure substance?

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

Explanation:

True, Water is a Pure substance and not a mixture.


 


We know that, A mixture is when two or more substances combine physically together. You can find that the mixture retains the properties of the original components.


In water, two hydrogen atoms combine with one oxygen atom chemically, forming a new substance that has properties different from hydrogen alone or oxygen alone.


 


Therefore, water is not a mixture; it is a compound and it is pure.

Report Error

View Answer Workspace Report Error Discuss

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

3 4426
Q:

The Prestigious 'Ramanujan Mathematics Award' at Eighth National Mathematical Convention on January 28, 2014,  was awarded to

A) Mr. Sushanta Kumar B) Mr. Anand Kumar
C) Mr. Vinod Kumar Singh D) None of the above
 
Answer & Explanation Answer: B) Mr. Anand Kumar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

5 4426
Q:

When a computer prints a report this output is called

A) Soft copy B) Hard copy
C) Printing D) Program
 
Answer & Explanation Answer: B) Hard copy

Explanation:

Hard copy is the output which is printed by the computer.

Report Error

View Answer Report Error Discuss

3 4425
Q:

Hormones are chemicals secreted and regulated by the endocrine system.

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

Explanation:

True. Hormones are chemicals secreted and regulated by the endocrine system.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

4 4424
Q:

The shortest air route from Moscow to San Francisco is

A) Over the Atlantic Ocean B) Over the Pacific via Siberia
C) Over the North Pole D) Through the latitude which passes through them
 
Answer & Explanation Answer: A) Over the Atlantic Ocean

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

5 4423