Questions

Q:

Smallest units of meaning in a language

A) Pragmatics B) phoneme
C) morpheme D) syntax
 
Answer & Explanation Answer: C) morpheme

Explanation:

A morpheme is the smallest unit of a word that provides a specific meaning to a string of letters.

Report Error

View Answer Report Error Discuss

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

0 2290
Q:

The monosaccharides important in nutrition are

A) Glucose B) Galactose
C) Fructose D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

There are 3 monosaccharides important in nutrition. They are Glucose, Galactose and Fructose.

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 2290
Q:

Which statement about ultrabook computers is false?

A) Ultrabooks typically weigh less than 3 pounds B) Ultrabooks have the fastest optical drives
C) Ultrabooks do not offer HDMI video output ports D) Utrabooks are equipped with SSD drives for fast start-up
 
Answer & Explanation Answer: B) Ultrabooks have the fastest optical drives

Explanation:

Ultrabooks have the fastest optical drives is the only false statement regarding ultrabooks.

Report Error

View Answer Report Error Discuss

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

3 2289
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 2289
Q:

Tides in the sea are caused by 

A) Effect of Sun B) Effect of Moon
C) Combined effect of Moon and Sun D) Gravitational Force of Earth and Sun
 
Answer & Explanation Answer: C) Combined effect of Moon and Sun

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2289
Q:

Uranus takes _______years to orbit the sun

A) 48 B) 84
C) 50 D) 60
 
Answer & Explanation Answer: B) 84

Explanation:

Uranus is 2,870 million kilometers away from the sun and the time taken to complete one round at a speed of 6.8 km/sec is as  long as 84 years on earth

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2289
Q:

Venus has atmosphere made up of 

A) Ammonia B) Carbon-di-Oxide
C) Helium D) Hydrogen
 
Answer & Explanation Answer: B) Carbon-di-Oxide

Explanation:

Venus has a very high surface temperature of 500o Cand the pressure is 90 times that on the earth.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: CAT
Job Role: Bank PO

0 2288
Q:

Addis Ababa is the Capital city of

A) Angola B) Burundi
C) Chile D) Ethiopia
 
Answer & Explanation Answer: D) Ethiopia

Explanation:

The Capital city of Ethiopia is Addis Ababa.

 

Countries and Capital cities ::

Angola  -  Launda

Burundi  -  Bujumbura

Chile  -  Santiago

Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

2 2288