Questions

Q:

Deep fried foods are carcinogenic because they are rich in

A) Nicotine B) Hydrocarbons
C) Fats D) All of the above
 
Answer & Explanation Answer: C) Fats

Explanation:

Deep fried foods are carcinogenic because they are rich in fats.

Report Error

View Answer Report Error Discuss

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

12 2281
Q:

Select the antonym of
horrify

A) affright B) petrify
C) appall D) soothe
 
Answer & Explanation Answer: D) soothe

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2281
Q:

Which aricle of the UN charterr established the International Trusteeship system

A) 78 B) 79
C) 75 D) 74
 
Answer & Explanation Answer: C) 75

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2281
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 2281
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 2280
Q:

Which of these did progressives support?

Answer

One of the thing that progressive support would be: Direct election of senators.


 


The progressive wanted this so they could the candidate based on the person and not the party.
Direct election of senators will make it easier for them to elect the person that represent their value for the position.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2279
Q:

What is IGP?

Answer

It is any routing protocol used within an autonomous system.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2279
Q:

The pH of pure water is nearly 7.It will increase on the addition of

A) ammonia B) cane sugar
C) common salt D) hydrochloric acid
 
Answer & Explanation Answer: A) ammonia

Explanation:

Ammonia is a base. One adding ammonia to water,the resulting solution will become basic. pH of an alkaline solution is 7. So the pH will increase

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2278