Questions

Q:

In terms of jurisdiction, the Supreme Court has

A) original and appellate B) original and executive
C) legislative and original D) executive and appellate
 
Answer & Explanation Answer: A) original and appellate

Explanation:

Original jurisdiction means that the court has the right to hear the case firsthand while appellate jurisdiction means that the court will hear an appeal that came from a court of original jurisdiction.

 

In terms of jurisdiction, the Supreme Court has Original jurisdiction and appellate jurisdiction.

Report Error

View Answer Report Error Discuss

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

5 2519
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 2519
Q:

Atrophy is a condition that occurs when

A) muscle decreases in size and function because of disease or trauma B) carbon dioxide, lactic acid, and other wastes accumulate in the muscle
C) increased use of skeletal muscle causes an increase in its strength D) the tendons that attach muscle to bone become stretched or injured
 
Answer & Explanation Answer: A) muscle decreases in size and function because of disease or trauma

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

1 2519
Q:

Liquid sodium is being considered as

A) engine coolant B) bleaching agent
C) antiseptic D) None of the above
 
Answer & Explanation Answer: A) engine coolant

Explanation:

Liquid sodium is being considered as engine coolant.

Report Error

View Answer Report Error Discuss

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

2 2519
Q:

Who has become the 1st-ever spinner to bowl the 1st over in a World Cup?

A) Moeen ALi B) Imran Tahir
C) Yuzvendra Chahal D) Rashid Khan
 
Answer & Explanation Answer: B) Imran Tahir

Explanation:

The South African leg-spinner has become the 1st-ever spinner to bowl the 1st over in a World Cup. It took place in the World Cup 2019 against England team at Oval in London where he bowled Bairstow for a DUCK.

the_1st-ever_spinner_to_bowl_the_1st_over_in_a_World_Cup1559630636.jpg image

Report Error

View Answer Report Error Discuss

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

3 2518
Q:

Where is the headquaters of the UN industrial Development Organization

A) Vienna.Austria B) New Delhi
C) Washington DC D) None of these
 
Answer & Explanation Answer: A) Vienna.Austria

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2518
Q:

What is Executive in Windows NT?

Answer

In Windows NT, executive refers to the operating system code that runs in kernel mode.

Report Error

View answer Workspace Report Error Discuss

1 2517
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Learning is the knowledge of that which is not generally known to others, and which we can only derive at second­hand from books or other artificial sources. The knowledge of that which is before us, or about us, which appeals to our experience, passions, and pursuits, to the bosoms and businesses of men, is not learning. Learning is the knowledge of that which none but the learned know. He is the most learned man who knows the most of what is farthest removed from common life and actual observation. The learned man prides himself in the knowledge of names, and dates, not of men or things. He thinks and cares nothing about his next­door neighbours, but he is deeply read in the tribes and castes of the Hindoos and Calmuc Tartars. He can hardly find his way into the next street, though he is acquainted with the exact dimensions of Constantinople and Peking. He does not know whether his oldest acquaintance is a knave or a fool, but he can pronounce a pompous lecture on all the principal characters in history. He cannot tell whether an object is black or white, round or square, and yet he is a professed master of the optics and the rules of perspective.


The passage suggests that a learned man

A) understands his neighbours B) does not know his old acquaintances
C) is not concerned about names and dates D)  is interested in travelling
 
Answer & Explanation Answer: B) does not know his old acquaintances

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2517