Mathematics · Quantitative Aptitude

Algebraic Expressions and Polynomials

292 Questions

Algebraic expressions and polynomials form the foundation of algebra, involving variables, constants, and mathematical operations. This topic is heavily tested in the quantitative aptitude sections of SSC, banking, and state exams. Use these questions to practice expanding, factoring, and simplifying various polynomial expressions.

Expanding algebraic expressionsFactoring polynomialsAlgebraic identitiesFinding common factorsSimplifying numerical statements

Algebraic Expressions and Polynomials Questions

Multiple choice php
  1. $a *= pow (2, 2);
  2. $a >>= 2;
  3. $a <<= 2;
  4. $a = $a $a;
Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

In PHP, '$a <<= 2' shifts the bits of $a two places to the left, which is equivalent to multiplying by 2 squared (4). The first option '$a *= pow(2, 2)' also results in $a * 4. Since this is a multiple-choice question with two correct options, both are valid logic.

Multiple choice six-sigma green-belt
  1. 10

  2. 16

  3. 36

  4. 13

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In a full factorial design, the total number of trials equals the product of all factor levels. Here: X1 (3 levels) × X2 (3 levels) × X3 (4 levels) = 3 × 3 × 4 = 36 trials. This ensures every possible combination of factor levels is tested. The other options (10, 16, 13) don't match this calculation.

Multiple choice general knowledge math & puzzles
  1. a^6+5a^6b+20a^3b^2+10a^2b^3+15a^5b^4+8ab^5+b^6+0a^1+0b^6

  2. a^6-5a^6b+20a^3b^2-10a^2b^3+15a^5b^4-8ab^5+b^6

  3. a^6+5a^5b+10a^4b^3+10a^3b^4+5ab^5+b^6

  4. a^6+6a^5b+15a^4b^2+20a^3b^3+15a^2b^4+6ab^5+b^6

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

According to the Binomial Theorem, the coefficients for (a+b)^6 follow the 6th row of Pascal's Triangle: 1, 6, 15, 20, 15, 6, 1. Option 39352 correctly applies these coefficients and decreasing/increasing powers for a and b respectively.

Multiple choice general knowledge math & puzzles
  1. 6x^3y^4z^3

  2. 24xy^2z^2

  3. 18x^2y^2z^3

  4. 6xy^2z^2

  5. 6x^3y^4z^4

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To find GCD, take the lowest power of each common variable: for coefficient, GCD of 12, 18, 24 is 6. For x: lowest power is x (x^1 from third term). For y: lowest power is y^2 (from second term). For z: lowest power is z^2 (from first term). So GCD = 6xy^2z^2, which is option D.

Multiple choice general knowledge math & puzzles
  1. -500

  2. -250

  3. -600

  4. -200

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The series consists of 100 terms which can be grouped into 50 pairs: (1-6), (2-7), (3-8), and so on. Each pair simplifies to -5. Multiplying the value of one pair (-5) by the total number of pairs (50) results in -250. Other options are incorrect because they miscalculate the number of pairs or the value per pair.

Multiple choice general knowledge math & puzzles
  1. Perfect Number

  2. Rational Number

  3. None of the options

  4. Sublime Number

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A sublime number is a number where the total count of its divisors is a perfect number and the sum of its divisors is also a perfect number. 12 has 6 divisors (perfect) and they sum to 28 (perfect).

Multiple choice general knowledge math & puzzles
  1. Perfect Number

  2. Rational Number

  3. None of the options

  4. Sublime Number

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A sublime number is a positive integer which has a perfect number of positive divisors, and the sum of its divisors is also a perfect number. 12 has 6 divisors (6 is perfect) and their sum is 28 (28 is perfect).

Multiple choice general knowledge math & puzzles
  1. 8

  2. 6

  3. 4

  4. 2

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Following order of operations (PEMDAS/BODMAS), multiplication comes before addition. First calculate 2 X 2 = 4, then add 2 to get 6.