Questions

Q:

Heat energy is transferred by conduction whenever molecules

A) collide each other B) means of photons
C) particles replaces there places D) All of the above
 
Answer & Explanation Answer: A) collide each other

Explanation:

Heat energy can be transferred by three major methods. They are 

 

1. Conduction,

2. Convection and

3. Radiation.

 

Conduction is the movement of heat through a substance by the collision of molecules

Convection occurs when particles with a lot of heat energy in a liquid or gas move and take the place of particles with less heat energy.

Radiation is the transfer of energy by means of photons in electromagnetic waves governed by the same laws. It occurs through a vacuum or any transparent medium.

Report Error

View Answer Report Error Discuss

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

1 2320
Q:

Magnetism in materials is due to

A) Displacement of electrons B) Circular motion of electrons
C) Charges of neutrons D) All of the above
 
Answer & Explanation Answer: B) Circular motion of electrons

Explanation:

Magnetism in materials is due to circular motion of electrons.

Report Error

View Answer Report Error Discuss

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

4 2320
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 2320
Q:

Which part of the respiratory system does emphysema damage?

A) Nose B) Lungs
C) Trachea D) Mouth
 
Answer & Explanation Answer: B) Lungs

Explanation:

Emphysema is a condition that involves damage to the walls of the air sacs (alveoli) of the lung i.e, primarily causes shortness of breath due to over-inflation of the alveoli.

 

First, emphysema causes holes to gradually form inside the lungs' air sacs, thereby weakening their internal structure and inhibiting the exchange of oxygen and carbon dioxide.

Report Error

View Answer Report Error Discuss

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

1 2319
Q:

The playback singer who is certified as the 'Most Recorded Artist' in the world (2009) by the World Records Academy is ________

Answer

Asha Bhosle . She  is the sister of Latha Mangeshkar

Report Error

View answer Workspace Report Error Discuss

0 2319
Q:

The first country to make a constitution

A) Russia B) United States
C) France D) North Korea
 
Answer & Explanation Answer: B) United States

Explanation:

The United States Constitution, ratified June 21, 1788, was influenced by the writings of Polybius, Locke, Montesquieu, and others. The document became a benchmark for republicanism and codified constitutions written thereafter. The Polish–Lithuanian Commonwealth Constitution was passed on May 3, 1791.

Report Error

View Answer Report Error Discuss

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

2 2319
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 2318
Q:

What are the different job scheduling in operating systems?

Answer

Scheduling is the activity of the deciding when process will receive the resources they request.


FCS ---> FCSFS stands for First Come First Served. In FCFS the job that has been waiting the longest is served next.


Round Robin Scheduling--->Round Robin scheduling is a scheduling method where each process gets a small quantity of time to run and then it is preempted and the next process gets to run. This is called time-sharing and gives the effect of all the processes running at the same time


Shortest Job First ---> The Shortest job First scheduling algorithm is a nonpreemptive scheduling algorithm that chooses the job that will execute the shortest amount of time.


Priority Scheduling--->Priority scheduling is a scheduling method where at all times the highest priority process is assigned the resource.

Report Error

View answer Workspace Report Error Discuss

0 2318