Questions

Q:

The criminal was __________ lest he should escape.

A) fetid B) fettered
C) fettled D) feted
 
Answer & Explanation Answer: B) fettered

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

1 2419
Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement is needed, select "no improvement". 
 
she thought she (have rediscovered) her real self after a long time

A) had rediscovered B) Had rediscover
C) had rediscovering D) no improvement
 
Answer & Explanation Answer: A) had rediscovered

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2418
Q:

Improve the bracketed part of the sentence.
He has painted that picture so often that he can do it with his (eyes closed).

A) arms full B) eyes opened
C) mind blank D) No improvement
 
Answer & Explanation Answer: D) No improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2418
Q:

The American cotton textile industry moved from new England to the Southern States because:

A) The latter have a more humid climate B) New England diversified its manufacturing industries
C) The Population growth in the south provided a major market D) The south offered lower coast of prodution
 
Answer & Explanation Answer: D) The south offered lower coast of prodution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2418
Q:

Instrument for measuring light intensity is called

A) Lucimeter B) Cryometer
C) Cyanometer D) Barometer
 
Answer & Explanation Answer: A) Lucimeter

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2418
Q:

The right to privacy protects citizens from

Answer

The right to privacy is alluded to in the Fourth Amendment to the US Constitution, which states that element of various legal traditions to restrain governmental and private actions that threaten the privacy of individuals..


 


 


No one shall be subjected to arbitrary interference with his privacy, family, home or correspondence, nor to attacks upon his honor and reputation. Everyone has the right to the protection of the law against such interference or attacks.

Report Error

View answer Workspace Report Error Discuss

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

1 2417
Q:

What is XPath?

Answer

XPath is an expressions to select a xml node in an XML document.


It allows the navigation on the XML document to the straight to the element where we need to reach and access the attributes.


 

Report Error

View answer Workspace Report Error Discuss

1 2417
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 2417