Questions

Q:

A projectile launched at____ degree angle has the greatest range?

Report Error

View answer Workspace Report Error Discuss

Subject: Physics

3 2453
Q:

Where does glycolysis take place?

A) Mitichondria B) Cytoplasm
C) Mitochondrial outer membrane D) None of above
 
Answer & Explanation Answer: B) Cytoplasm

Explanation:

"Glycolysis" means the splitting of glucose. The first step of the process occurs in the cytoplasm of the cell and yields a small amount of energy (measured in units of ATP) and two molecules of pyruvate.

The other steps occur in the mitochondria. It is an ongoing process as your cells have a constant need for energy.

Report Error

View Answer Report Error Discuss

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

3 2453
Q:

What are the flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary carry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sing flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2453
Q:

Which of these birds cannot fly?

A) Kiwi B) Penguin
C) Ostrich D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

9 2453
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 2452
Q:

In which state president rule has been imposed in 2018 December?

A) Haryana B) Delhi
C) Telangana D) Jammu & Kashmir
 
Answer & Explanation Answer: D) Jammu & Kashmir

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2452
Q:

In Paramecium, the food is moved to a specific spot by the movement of ______ which cover the entire surface of the cell.

A) cilia B) villi
C) pseudopodia D) vacuole
 
Answer & Explanation Answer: A) cilia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

7 2452
Q:

The criminal was __________ lest he should escape.

A) fetid B) fettered
C) fettled D) feted
 
Answer & Explanation Answer: B) fettered

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

1 2451