Questions

Q:

Final goods and services refer to

A) goods and services purchased by ultimate users, rather than for resale or further processing B) goods and services whose value has been adjusted for changes in the price level
C) the excess of U.S. exports over U.S. imports D) goods and services that are unsold and therefore added to inventories
 
Answer & Explanation Answer: A) goods and services purchased by ultimate users, rather than for resale or further processing

Explanation:

Final goods and services refer to goods and services that have been purchased for final use and that cannot be resaled.

Report Error

View Answer Report Error Discuss

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

2 2338
Q:

Regarding the Magna Carta, which statement is false?

A) The document assured all English citizens freedom of speech. B) The document required trial by a jury of one's peers.
C) The meeting of the English Barons and King John occurred at Runnymede. D) King John was forced to sign the document.
 
Answer & Explanation Answer: B) The document required trial by a jury of one's peers.

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

Where is the headquaters of the Universal postal Union

A) Switzerland B) UK
C) Iran D) India
 
Answer & Explanation Answer: A) Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2337
Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

Mahatma Gandhi is called as the Father of the Nation.

A) called Father of the Nation B) called the Father of the Nation
C) Father of the Nation D) No improvement
 
Answer & Explanation Answer: D) No improvement

Explanation:

No improvement required. Sentence is idiomatically correct.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2337
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.
 
The teacher should check the homework

A)

The homework should be checked by the teacher

B)

The homework is checked by the teacher

C)

The teacher is responsible for checking homework

D)

The homework will be checked by the teacher

 
Answer & Explanation Answer: A)

The homework should be checked by the teacher



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

0 2337
Q:

Cold foods should be kept at a temperature of

A) < 5 deg Celcius B) > 18 deg Celcius
C) > 41 deg Celcius D) < -18 deg Celcius
 
Answer & Explanation Answer: A) < 5 deg Celcius

Explanation:

To reduce the risk of bacterial contamination, many foods must be stored in the refrigerator and thus kept below 5 degrees Celsius. These foods are often classified as ‘high-risk foods’ and include – meat, poultry, dairy, seafood, eggs, smallgoods and cooked rice and pasta. This also refers to ready-to-eat foods that have high-risk foods as ingredients and include – casseroles, quiche, pasta salad, pizza, sandwiches and many cakes.

 

By keeping these high-risk foods under 5 degrees Celsius it stops them from entering the ‘danger-zone’ – temperatures between 5 degrees Celsius and 60 degrees Celsius. The danger-zone is the temperature zone which provides bacteria with the perfect environment to rapidly grow and multiply to numbers that cause food poisoning.

 

Report Error

View Answer Report Error Discuss

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

2 2337
Q:

Gestalt psychology attempted to discover

A) the overall patterns of perceptions and thoughts B) the unconscious motivations for human functioning
C) how the mind helped people adapt to the world D) the basic building blocks of consciousness
 
Answer & Explanation Answer: A) the overall patterns of perceptions and thoughts

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2336
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 2336