Questions

Q:

Analog synthesis refers to a technology based on

A) placing brief digital recordings of live sounds under the control of a synthesizer keyboard. B) interfacing synthesizer equipment.
C) representing data in terms of measurable physical quantities. D) representing physical quantities as numbers.
 
Answer & Explanation Answer: C) representing data in terms of measurable physical quantities.

Explanation:

Analog synthesis uses a mixture of complex sounds that are shaped by filtering. It is based on representing data in terms of measurable physical quantities, in this case sound waves.

Report Error

View Answer Report Error Discuss

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

4 2331
Q:

The term central nervous system refers to the

A) brain and spinal cord B) autonomic and peripheral nervous systems
C) brain and cranial nerves D) brain, spinal cord, and cranial nerves
 
Answer & Explanation Answer: A) brain and spinal cord

Explanation:

The central nervous system is that part of the nervous system that consists of the brain and spinal cord. The central nervous system (CNS) is one of the two major divisions of the nervous system. The other is the peripheral nervous system (PNS) which is outside the brain and spinal cord.

central_nervous_system1533036656.jpg image

Report Error

View Answer Report Error Discuss

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

4 2331
Q:

What qualities does a person need to be successful in the field of advertising?

Answer

The following are the qualities required to be successful in the field of advertising:


 - Creativity
 - Strategic focus
 - Knowledge and expertise in the field of advertising
 - Holding a relevant qualification in the field of advertising
 - Market research orientation
 - People skills etc.

Report Error

View answer Workspace Report Error Discuss

6 2331
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 2331
Q:

Where is the genetic information of the cell stored?

A) DNA B) Cell membrane
C) Nucleus D) None of the above
 
Answer & Explanation Answer: C) Nucleus

Explanation:

The genetic information of the cell is DNA and is stored in the nucleus of the cell.

Report Error

View Answer Report Error Discuss

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

2 2331
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 2329
Q:

In which country the hormone gibberellin was discovered?

A) India B) Japan
C) China D) Russia
 
Answer & Explanation Answer: B) Japan

Explanation:

The hormone gibberellin was discovered in the country Japan.

Report Error

View Answer Report Error Discuss

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

0 2328
Q:

Evergreen trees lose their leaves steadily all year.

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

Explanation:

Trees that lose all of their leaves for part of the year are known as deciduous trees. Those that don't are called evergreen trees.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2328