Questions

Q:

In the question below, there is a word given in bold which is followed by five options. In each of the options, a pair of words is given which is either the pair of synonyms or antonyms or synonym & antonym of the word given in bold. Choose that pair as your answer.

Zealous

A) Droopy, Gigantic B) Tenacity, Assiduity
C) Fervent, Apathetic D) Conceited, Capacious
 
Answer & Explanation Answer: C) Fervent, Apathetic

Explanation:

The meanings of the given words are as follows:
Zealous: having or showing zeal
Droopy: hanging down limply
Gigantic: of very great size or extent; huge or enormous
Tenacity: the quality or fact of being able to grip something firmly; grip
Assiduity: constant or close attention to what one is doing
Fervent: having or displaying a passionate intensity
Apathetic: showing or feeling no interest, enthusiasm, or concern
Conceited: excessively proud of oneself; vain
Capacious: having a lot of space inside; roomy
Hilarity: extreme amusement, especiallywhen expressed by laughter
Livid: furiously angry
Therefore, it can be observed that option C i.e. ‘fervent, apathetic’ forms a synonym- antonym pair of ‘zealous’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2354
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph. Integrating diversity

P: governance which is firmly grounded

Q: in international human rights law

R: goes hand in hand with

A) QPR B) RPQ
C) PRQ D) QRP
 
Answer & Explanation Answer: B) RPQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2353
Q:

Consumers that eat both plants and animals are

A) Carnivores B) Herbivores
C) Omnivores D) Tertiary consumers
 
Answer & Explanation Answer: C) Omnivores

Explanation:

An omnivore is an animal that eats food from both plants and animals.

Animals that eat other animals are called carnivores. Carnivores that eat herbivores are called secondary consumers, and carnivores that eat other carnivores are called tertiary consumers.

Report Error

View Answer Report Error Discuss

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

2 2353
Q:

Planning Process Group

What are the Project Management Processes included in the Planning Process Group?

Answer



      • Develop Project Management Plan

      • Scope Planning

      • Scope Definition

      • Create WBS

      • Activity Definition

      • Activity Sequencing

      • Activity Resource Estimating

      • Activity Duration Estimating

      • Schedule Development

      • Cost Estimating

      • Cost Budgeting

      • Quality Planning

      • Human Resource Planning

      • Communications Planning

      • Risk Management Planning

      • Risk Identification

      • Qualitative Risk Analysis

      • Quantitative Risk Analysis

      • Risk Response Planning

      • Plan purchases and Acquisitions

      • Plan Contracting



Report Error

View answer Workspace Report Error Discuss

0 2353
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 2353
Q:

Which of the following is UN special agency and not programme

A) UNDP B) UNIFEM
C) IBRD D) UNFPA
 
Answer & Explanation Answer: A) UNDP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

3 2352
Q:

What compound directly provides energy for cellular work?

A) ATP B) ADP
C) NADP D) NADH
 
Answer & Explanation Answer: A) ATP

Explanation:

ATP - Adinosine Triphosphate is the compound that directly provides energy for cellular work.

Report Error

View Answer Report Error Discuss

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

1 2352
Q:

Process of gaining electrons is known as _____.

A) oxidation B) reduction
C) radiation D) both oxidation and reduction
 
Answer & Explanation Answer: B) reduction

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2352