Questions

Q:

Improve the bracketed part of the sentence.
Neha (would be looked) beautiful in Indian attire.

A) had looking B) was looked
C) would look D) No improvement
 
Answer & Explanation Answer: C) would look

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2508
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.


Ants have been living on the earth for more than 100 million years and can be found almost anywhere on the planet. It is estimated that there are about 20000 different species of ants. For this reason ants have been called Earth's most successful species. If you watch ants for any length of time you will see that they really do communicate with each other and very effectively too. Ants communicate by touching each other with their antennae. Ants also use chemicals called pheromones to leave scent trails for other ants to follow. Ants build many different types of homes. Many ants build simple little mounds out of dirt or sand. Other ants use small sticks mixed with dirt and sand to make a stronger mound that offers protection from rain. Western Harvester ants make a small mound on top, but then tunnels up to 15 feet straight down to hibernate during winter. Ant mounds consist of many chambers connected by tunnels. Different chambers are used for nurseries, food storage, and resting places for the worker ants. Some ants live in wood like termites. Army ants don't make a home at all but travel in a large groups searching for food. Ants are social insects which means they live in large colonies or groups. Some colonies consist of millions of ants. There are three types of ants in each species, the queen, the sterile female workers and males. The male ants only serve one purpose, to mate with future queen ants and do not live very long. The queen grows to adulthood, mates, and then spends rest of her life laying eggs. A colony may have only one queen, or there may be many queens depending on the species. Ants go through four stages of development: egg, larva, pupa and adult.

 

What does the Western Harvester do in winter ?

A) It travels B) It builds different types of homes
C) It hibernates D) It searches for food
 
Answer & Explanation Answer: C) It hibernates

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2508
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 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:

Which type of doctor specializes in teeth and jaw alignment?

A) Orthodontist B) Pediatrician
C) Psychiatrist D) Oncologist
 
Answer & Explanation Answer: A) Orthodontist

Explanation:

An orthodontist is the type of doctor that specializes in teeth and jaw alignment. When the teeth don't align properly, it can cause uneven wear in the teeth.

 

The jaw is a hinge joint. Strong muscles in the face open and close the jaw. Teeth are implanted in the jaw and serve to rip, tear and crush food in preparation for swallowing it.

Report Error

View Answer Report Error Discuss

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

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

What is Executive in Windows NT?

Answer

In Windows NT, executive refers to the operating system code that runs in kernel mode.

Report Error

View answer Workspace Report Error Discuss

1 2506
Q:

Metals that are liquid at room temperature?

A) Caesium B) Gallium
C) Rubidium D) Mercury
 
Answer & Explanation Answer: D) Mercury

Explanation:

Mercury is the only metal that is in liqid form at room temperature. Caesium, Gallim and Rubidium are also metals that are in liquid form but at slightly high temperature than the room temperature.

Report Error

View Answer Report Error Discuss

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

1 2506