Questions

Q:

Peacock was declared National Bird of India in which year?

A) 1963 B) 1960
C) 1953 D) 1950
 
Answer & Explanation Answer: A) 1963

Explanation:

In 1963, the peacock was declared theNational Bird of India because of its rich religious and legendary involvement in Indian traditions.

Report Error

View Answer Report Error Discuss

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

20 2212
Q:

Stress is a factor that contributes to heart disease risk.

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

Explanation:

True, Stress is a factor that contributes to heart disease risk.


More factors that contributes to heart disease risk are blood pressure, cholesterol, smoking, physical inactivity and overeating.

Report Error

View Answer Workspace Report Error Discuss

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

0 2212
Q:

Which sentence is correcty puctuated with a semicolon?

A) He ate, however; he didn't sleep. B) He ate however, he; didn't sleep.
C) He ate; however, he didn't sleep. D) None of the above
 
Answer & Explanation Answer: C) He ate; however, he didn't sleep.

Explanation:

Like commas, semicolons indicate an audible pause — slightly longer than a comma's, but short of a period's full stop.

 

Rules for Semicolon ::


1. A semicolon can replace a period if the writer wishes to narrow the gap between two closely linked sentences.


2. Use a semicolon before such words and terms as namely, however, therefore, that is, i.e., for example, e.g., for instance, etc., when they introduce a complete sentence. It is also preferable to use a comma after these words and terms.

 

3. Avoid a semicolon when a dependent clause comes before an independent clause.

 

4. Use a semicolon to separate units of a series when one or more of the units contain commas.

 

Hence according to rule no. 2) option (C) He ate; however, he didn't sleep is correctly puctuated with a semicolon.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

1 2212
Q:

Write a program for matrix multiplication in c

Answer

#include <stdio.h>


int main() {


  int a[5][5], b[5][5], c[5][5], i, j, k, sum = 0, m, n, o, p;


  printf( "\nEnter the row and column of first matrix" );


  scanf( "%d %d", &m, &n );


  printf( "\nEnter the row and column of second matrix" );


  scanf( "%d %d", &o, &p );


  if(n!=o) {


      printf( "Matrix mutiplication is not possible" );


      printf( "\nColumn of first matrix must be same as row of second matrix" );


  }


  else {


      printf( "\nEnter the First matrix" );


      for( i=0; i<m; i++ )


      for( j=0; j<n; j++ )


           scanf( "%d", &a[i][j] );


      printf( "\nEnter the Second matrix" );


      for( i=0; i<o; i++ )


      for( j=0; j<p; j++ )


           scanf( "%d", &b[i][j] );


      printf( "\nThe First matrix is\n" );


      for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<n; j++ ) {


           printf( "%d\t", a[i][j] );


      }


      }


      printf( "\nThe Second matrix is\n" );


      for( i=0; i<o; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", b[i][j] );


      }       


      }


      for( i=0; i<m; i++ )


      for( j=0; j<p;j++ )


           c[i][j] = 0;


      for( i=0; i<m; i++ ) { //row of first matrix


      for( j=0; j<p; j++ )  {  //column of second matrix


           sum = 0;


           for( k=0; k<n; k++ )


               sum = sum + a[i][k]*b[k][j];


           c[i][j] = sum;


      }


      }


  }


  printf( "\nThe multiplication of two matrix is\n" );


  for( i=0; i<m; i++ ) {


      printf("\n");


      for( j=0; j<p; j++ ) {


           printf( "%d\t", c[i][j] );


      }


  }


  return 0;


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2211
Q:

Which macronutrient is vital for every function of the body?

A) Fats B) Carbohydrates
C) Water D) Proteins
 
Answer & Explanation Answer: C) Water

Explanation:

The macronutrient water is the most essential nutrient which plays a vital role in every function of the body. Macronutrients are those nutrients that are required in excess amounts for the development and functioning of the body.

Report Error

View Answer Report Error Discuss

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

3 2211
Q:

M is a 7 letter word, M is impossible for GOD, The poor have M and The rich look for M from the poor, If you eat M you will die, M is more important than your life. I swear i will give you M if you get the answer. What is M?

Answer

The required 7 letter English word is NOTHING.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

7 2210
Q:

I am the first on earth, the second in heaven. I appear twice in a week, though you can only see me once in a year. What am I?

Answer

It is the letter 'e', that is the first on earth, the second in heaven.


It appears twice in a week, that appears once in a year.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

11 2210
Q:

Find the correctly spelt word?

A) Addulation B) Ominous
C) Adlation D) Omineous
 
Answer & Explanation Answer: B) Ominous

Explanation:

Ominous is the correctly spelt word in the given options. It means that giving the worrying impression that something bad is going to happen.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

1 2209