Questions

Q:

In India, country's 1st Owl Festival held in

A) Hyderabad B) Pune
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Pune

Explanation:

In India, country's 1st Owl Festival held in Pune, for two days i.e, on Nov 29 and Nov 30. It is a first-of-its-kind festival in the country that is being organised with the intention of creating awareness about owl as a bird and debunking numerous superstitions associated with it.

Report Error

View Answer Report Error Discuss

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

3 2336
Q:

Which of the following is part of the axial skeleton?

A) Thigh bone B) Shoulder bones
C) Vertebral column D) Foot bones
 
Answer & Explanation Answer: C) Vertebral column

Explanation:

The axial skeleton is the part of the skeleton that consists of the bones of the head and trunk of a vertebrate. In the human skeleton, it consists of 80 bones and is composed of six parts; the skull bones, the ossicles of the middle ear, the hyoid bone, the rib cage, sternum and the vertebral column.

 

Bones of shoulder, thigh and foot are the part of appendicular skeleton. 

  

Hence, Vertebral column is the part of axial skeleton.

Report Error

View Answer Report Error Discuss

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

3 2336
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

Reporters and city officials gathered at a Chicago railroad station one afternoon in 1953. The person they were meeting was the 1952 Nobel Peace Prize winner. A few minutes after the train came to a stop, a giant of a man - six feet four inches - with bushy hair and a large moustache stepped out from the train. Cameras flashed. City officials approached him with hands outstretched. Various people began telling him how honoured they were to meet him.

The man politely thanked them and then, looking over their heads, asked if he could be excused for a moment. He quickly walked through the crowd until he reached the side of an elderly black woman who was struggling with two large suitcases. He picked up the bags with a smile, escorted the woman to a bus. After helping her aboard, he wished her a safe journey. As he returned to the greeting party he apologized, "Sorry to have kept you waiting." Not many whites would have done what he did.

The man was Dr. Albert Schweitzer, the famous missionary doctor who had spent his life helping the poor in Africa. In response to Dr. Schweitzer's action, one member of the reception committee said with great admiration to the reporter standing next to him, "That's the first time I ever saw a sermon walking."


Dr. Albert delighted _____ .

A) in being helped by others B) in not being honoured
C) in being honoured D) in helping others
 
Answer & Explanation Answer: D) in helping others

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2335
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 2335
Q:

Which country is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018?

A) North Korea B) India
C) China D) Pakistan
 
Answer & Explanation Answer: B) India

Explanation:

India is the 2nd largest importer of weapons in the world, as per 'Trends in International Arms Transfers 2018.

Report Error

View Answer Report Error Discuss

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

3 2334
Q:

Where is the headquaters of the Universal postal Union

A) Switzerland B) UK
C) Iran D) India
 
Answer & Explanation Answer: A) Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2333
Q:

The playback singer who is certified as the 'Most Recorded Artist' in the world (2009) by the World Records Academy is ________

Answer

Asha Bhosle . She  is the sister of Latha Mangeshkar

Report Error

View answer Workspace Report Error Discuss

0 2333
Q:

Antipsychotic drugs have proved helpful in the treatment of

A) Epilepsy B) Schizophrenia
C) Psoriasis D) Eczema
 
Answer & Explanation Answer: B) Schizophrenia

Explanation:

Antipsychotic drugs have proved helpful in the treatment of schizophrenia and other psychotic disorders, inhibits dopamine, reduces delusions, hallucinations, thought disorganization.

Report Error

View Answer Report Error Discuss

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

3 2333