Questions

Q:

What is the structure of an Italian sonnet?

A) Octave B) Pentagon
C) Hexane D) Quadrapul
 
Answer & Explanation Answer: A) Octave

Explanation:

Italian sonnets have 14 lines and are written in iambic pentameter. They are divided into two sections: the octave and the sestet. The octave of an Italian sonnet consists of the first eight lines of the poem. It follows an ABBAABBA rhyme pattern.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

1 2249
Q:

Which of the following is a polymer?

A) Glycerol B) Amino acid
C) Nucleic acid D) Fatty acid
 
Answer & Explanation Answer: C) Nucleic acid

Explanation:

Nucleic acid is a polymer among the given options.

Report Error

View Answer Report Error Discuss

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

1 2247
Q:

CM is about managing the different items in the product, and changes in them.

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

Explanation:

Configuration Management is a support for software in managing the different items in the product, and changes in them.

Report Error

View Answer Workspace Report Error Discuss

2 2247
Q:

Which macronutrient is vital for every function of the body?

A) Fats B) Carbohydrates
C) Water D) Proteins
 
Answer & Explanation Answer: C) Water

Explanation:

The macronutrient water is the most essential nutrient which plays a vital role in every function of the body. Macronutrients are those nutrients that are required in excess amounts for the development and functioning of the body.

Report Error

View Answer Report Error Discuss

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

3 2247
Q:

What occurs during the appropriations process?

A) Congress acquires requested oversight material from the executive. B) Congress instructs the president to eliminate federal agencies.
C) Congress grants funds to federal agencies. D) Congress makes laws.
 
Answer & Explanation Answer: C) Congress grants funds to federal agencies.

Explanation:

Appropriations are annual decisions made by Congress about how the federal government spends some of its money. In general, the appropriations process addresses the discretionary portion of the budget – spending ranging from national defense to food safety to education to federal employee salaries, but excludes mandatory spending, such as Medicare and Social Security, which is spent automatically according to formulas.

 

Hence, congress grants funds to federal agencies and programs during the appropriations process.

Report Error

View Answer Report Error Discuss

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

2 2246
Q:

A simple rule concerning water and electrolyte regulation is

A) water passively follows salt B) salt actively follows water
C) water actively follows salt D) salt passively follows water
 
Answer & Explanation Answer: A) water passively follows salt

Explanation:

A simple rule concerning water and electrolyte regulation is water passively follows salt.

Report Error

View Answer Report Error Discuss

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

2 2245
Q:

Goosebumps are caused by contractions of the

A) Muscles B) Nerves
C) Bones D) All of the above
 
Answer & Explanation Answer: A) Muscles

Explanation:

Goosebumps are caused by the contraction of the tiny muscles attached to hair follicles. These muscles are arrectores pilorum muscles.

 

Goosebumps_are_caused_by_contractions_of_the1560862968.png image

Report Error

View Answer Report Error Discuss

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

6 2245
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 2245