Questions

Q:

What is the cause of most boating accidents?

what_is_the_cause_of_most_boating_accidents1538570800.jpg image

A) Machinery failure B) Alcohol use
C) Lack of proper look-out D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The main causes for the boat accidents are ::

1. Excessive speed

2. Machinery failure

3. Operator inexperience

4. Alcohol use

5. Operator inattention

6. Lack of proper look-out

7. Careless/reckless behavior and hull failure

8. Hazardous waters

and some more...

Report Error

View Answer Report Error Discuss

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

0 2507
Q:

National Press Day 2017 Theme

A) Challenges before media B) Keeping Power in Check: Media, Justice and The Rule of Law
C) National security against terrorism D) None of the above
 
Answer & Explanation Answer: A) Challenges before media

Explanation:

The Theme of National Press Day 2017 is "Challenges before media".

Report Error

View Answer Report Error Discuss

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

0 2507
Q:

Valve between the left ventricle and Aorta?

A) Pulmonic valve B) Tricuspid valve
C) Aortic valve D) Mitral valve
 
Answer & Explanation Answer: C) Aortic valve

Explanation:

The Aortic valve - located between the left ventricle and the aorta

The Mitral valve - located between the left atrium and left ventricle

The Tricuspid valve - located between the right atrium and the right ventricle (and) 

The Pulmonary (pulmonic) valve - located between the right ventricle and the pulmonary artery.

Report Error

View Answer Report Error Discuss

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

5 2507
Q:

Time period of a seconds pendulum is

A) 2 seconds B) 4 seconds
C) 1 seconds D) 0 seconds
 
Answer & Explanation Answer: A) 2 seconds

Explanation:

A seconds pendulum is a pendulum whose period is precisely two seconds i.e, one second for a swing in one direction and one second for the return swing.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

4 2507
Q:

The force exerted on an object is 200 N and its mass is 100 kg. Find the acceleration of the object.

A) 2 m/s B) 2 m
C) 2 m/sq.s D) 2 s
 
Answer & Explanation Answer: C) 2 m/sq.s

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: CAT , Bank Exams , AIEEE

0 2507
Q:

The book Taste of India is written by

A) Ramachandra Guha B) Khushwanth Singh
C) Chetan Bhagat D) Madhur Jaffrey
 
Answer & Explanation Answer: D) Madhur Jaffrey

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2507
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 2506
Q:

Voiceless it cries, wingless flutters, toothless bites, mouth-less mutters.

What is it?

Answer

It is The Wind which cries without a voice, flutters without wings, bites toothless and mutters mouthless.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , GRE
Job Role: Analyst , Bank PO

1 2506