Questions

Q:

Guess which number should be replaced by the "?" in the given series 0,10,1110,3110,132110,?

Answer

1113122110


In given series 2nd number gives number of  which digits present in the 1st number and so on continues for 3rd ,4th,...


Here 1st no. has only one zero, so  2nd no. is 10 and 2nd no. has one 1 and one 0,so 3rd no. is 1110, so like that 5th no. has one 1,one 3,one 2,two 1's and one 0.So the next no. is 1113122110. 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Math Puzzles Exam Prep: CAT
Job Role: Bank PO

13 4432
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 4432
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 4431
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 4430
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 4430
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 4428
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 4427
Q:

Harmful bacteria in drinking water cannot be destroyed by 

A) Chlorination B) boiling
C) adding caustic soda D) ozonisation
 
Answer & Explanation Answer: C) adding caustic soda

Explanation:

Water containing caustic soda cannot be used for drinking

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 4427