Questions

Q:

What is one way you can increase CTRs?

Answer

Add negative keywords to the ad group to reduce irrelevant impressions.

Report Error

View answer Workspace Report Error Discuss

0 2250
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 2249
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:

Human body main organ of balance is located in

A) Brain B) Eyes
C) Ears D) Nose
 
Answer & Explanation Answer: C) Ears

Explanation:

Labyrinth which is part of the ear is the main organ of balance in the human 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

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

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 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 2246