Questions

Q:

Which occurs during transcription?

A) Proteins are produced B) Ribosomes produces
C) DNA information is copied to RNA D) All of the above
 
Answer & Explanation Answer: C) DNA information is copied to RNA

Explanation:

Transcription is the process of copying the genetic material or information that is the DNA to messenger RNA (mRNA.

 

transcription_translation1531736868.jpg image

Report Error

View Answer Report Error Discuss

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

4 2188
Q:

All enzymes are proteins.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

All enzymes are proteins but all proteins are not enzymes since, enzymes are subset of proteins.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

0 2188
Q:

Importance of project life cycle?

Answer

A project has a beginning and an end and passes through several phases of development known as life cycle phases. Every project has certain phases of development. A clear understanding of these phases allows managers and executives to maintain control of the project more efficiently.
These phases are varied depending upon the industry involved but all follow the same basic steps.


 


How Important is Project Life Cycle::


1. This is a tried and tested method for delivering projects on time, within budget and to the expected quality targets.


2. Aids communication and helps define roles within the project organisation as it provides a framework for the project that is visible and understood by all members of the project.


3. The project lifecycle will allow the project manager to link progress directly to each phase and recognise the completion of each phase


4. The phases within the project lifecycle provide an understanding of the evolution of the project, being able to identify areas that need greater attention at different times such as risk management in the early stages and more Project Evaluation Reviews during the Implementation stage.


5. At each stage, approval is generally required from outside the project team before proceeding to the next stage.


6. The project life cycle also allows for the gate procedure to be used.


7. At each stage, approval is generally required from outside the project team before proceeding to the next stage.

Report Error

View answer Workspace Report Error Discuss

6 2188
Q:

What can you break but not touch?

A) Mirror B) Word
C) Promise D) All of the above
 
Answer & Explanation Answer: C) Promise

Explanation:

A promise. 

 

The Promise made to somebody by you can be break but you cannot touch it.

Report Error

View Answer Report Error Discuss

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

In the aggregate expenditures model, it is assumed that investment

in_the_aggregate_expenditures_model_it_is_assumed_that_investment1553493949.jpg image

A) does not change when real GDP changes B) does not respond to changes in interest rates
C) changes by less in percentage terms than changes in real GDP D) automatically changes in response to changes in real GDP
 
Answer & Explanation Answer: A) does not change when real GDP changes

Explanation:

In the aggregate expenditures model, it is assumed that investment does not change when real GDP changes.

 

  • The aggregate expenditure is the sum of all the expenditures undertaken in the economy by the factors during a specific time period.

 

  • The aggregate expenditure determines the total amount that firms and households plan to spend on goods and services at each level of income.
Report Error

View Answer Report Error Discuss

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

0 2187
Q:

Air contains water in a gaseous form called

A) vapour B) droplets
C) humidity D) None of the above
 
Answer & Explanation Answer: A) vapour

Explanation:

Air contains water in a gaseous form called water vapour.

Report Error

View Answer Report Error Discuss

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

5 2187
Q:

The main excretory organs of insects and spiders are

A) Malphigian tubues B) Maxillary glands
C) Coxal glands D) Antennal glands
 
Answer & Explanation Answer: A) Malphigian tubues

Explanation:

The main excretory organs of insects and spiders are Malpighian tubules.

Report Error

View Answer Report Error Discuss

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

3 2186