Questions

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

Clossing Process Group

What are the Project Management Processes included in Closing Process Group?

Answer


    • Close Project

    • Contract Closure



 

Report Error

View answer Workspace Report Error Discuss

0 2328
Q:

Arrange the given words in the sequence in which they occur in the dictionary.

1. Ropped
2. Roster
3. Roasted
4. Road
5. Roller

A) 35412 B) 45312
C) 34512 D) 43512
 
Answer & Explanation Answer: D) 43512

Explanation:
Report Error

View Answer Report Error Discuss

0 2328
Q:

In the following question, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select 'No Error'.

Akshay kumar being a (1)/ good actor he is (2)/ presented with the National Award. (3)/ No Error (4)/

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

2 2328
Q:

Which of the following is present in a prokaryotic cell?

A) Ribosomes B) Chloroplast
C) Mitochondria D) None
 
Answer & Explanation Answer: A) Ribosomes

Explanation:

Ribosomes are present in prokaryotic cells. These are organelles which consist of two subunits. They are present in both Eukaryotic and Prokaryotic cells. They are made up of RNA and proteins and present in the cytoplasm and on the membranes and are involved in protein synthesis.

Report Error

View Answer Report Error Discuss

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

1 2327
Q:

Which statement is true of all atoms that are anions?

A) The atom has more electrons than protons B) The atom has more protons than electrons
C) The atom has equal number of protons and electrons D) All of the above
 
Answer & Explanation Answer: A) The atom has more electrons than protons

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2326
Q:

The credit of inventing the television goes to

A) Philo Farnsworth B) John Logie Baird
C) Charles Francis Jenkins D) None of the above
 
Answer & Explanation Answer: A) Philo Farnsworth

Explanation:

The credit of inventing the television goes to Philo Farnsworth. Electronic television was first successfully demonstrated in San Francisco on Sept. 7, 1927.

 

The_credit_of_inventing_the_television_goes_to1549279715.jpg image

Report Error

View Answer Report Error Discuss

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

0 2326