Mathematics · Quantitative Aptitude
Algebra and Arithmetic
406 Questions
Algebra and arithmetic questions cover fundamental mathematical operations, inequalities, and binomial products. They assess core quantitative reasoning skills required for various aptitude tests. Solving these problems strengthens the understanding of number systems and algebraic identities.
Binomial productsLinear inequalitiesLeast common multipleQuadratic equationsInteger properties
Algebra and Arithmetic Questions
-
Positive
-
Negative
-
Infinity
-
Zero
B
Correct answer
Explanation
Adding zero to any negative number preserves its negative value because zero is the additive identity. For example, -5 + 0 = -5. Zero doesn't change the sign or magnitude of any number. The result cannot be positive, zero, or infinity.
-
Zero
-
a fraction with the zero as denominator
-
positive or negative number
-
Infinity
B
Correct answer
Explanation
Division by zero is undefined in mathematics. When any non-zero number is divided by zero, the result is represented as a fraction with zero as the denominator, which is undefined. In limit contexts it may approach infinity, but technically the operation itself has no meaning in standard arithmetic.
-
a^2=bc
-
b^2=ac
-
c^=ab
-
abc=1
B
Correct answer
Explanation
Assuming 'S.I on o' is a typo for 'S.I on b': if b = ar (SI on a) and c = br (SI on b) at same rate r and time, then c = ar^2. This gives b^2 = (ar)^2 = a(ar^2) = ac.
-
a^2=bc
-
b^2=ac
-
c^=ab
-
abc=1
B
Correct answer
Explanation
Assuming 'S.I on o' is a typo for 'S.I on b': if b = ar (SI on a) and c = br (SI on b) at same rate r and time, then c = ar^2 and b^2 = a(ar^2) = ac. This is a duplicate of question 94628.
-
3+7/2
-
4*8
-
15*6/3
-
None of these
D
Correct answer
Explanation
Using order of operations (BODMAS/PEMDAS), multiplication comes before addition. So 7*2=14, then 8+14=22. None of the options A, B, or C equal 22, making D the correct choice.
-
=A1 + A2
-
=Add(A1+A2)
-
=together(A1:A2)
-
A1 plus A2
B
Correct answer
Explanation
XOR (exclusive OR) returns 1 only when exactly one input is 1. With a=0 and b=1, exactly one input is 1, so the result is 1. XOR would return 0 only if both inputs were the same (both 0 or both 1).
-
Positive
-
Negative
-
Infinity
-
Zero
B
Correct answer
Explanation
When you add zero to any number, the result is that same number. Since we're adding zero to a negative number, the result is still negative. Zero is neither positive nor negative, it's neutral.
-
A is always greater than D
-
C is always greater than D
-
B is always less than D
-
None of the above
-
(a+b+c)(a^2+b^2+c^2-ab-bc-ca)
-
(a^2+b^2+c^2-ab-bc-ca)
-
(a^2+b^2+c^2+ab+bc+ca)
-
none of these
A
Correct answer
Explanation
This is a fundamental algebraic identity. The factorization a³+b³+c³-3abc = (a+b+c)(a²+b²+c²-ab-bc-ca) is always true and useful for simplifying cubic expressions. Note that if a+b+c=0, then a³+b³+c³=3abc.
-
(a^2+b^2+c^2)
-
(a^2+b^2+c^2+ab+bc+ca)
-
all of these
-
(a^2+b^2+c^2+2ab+2bc+2ca)
A,B,C
Correct answer
Explanation
In various programming and database languages (such as SQL and PL/SQL), the operators <>, !=, and ^= are all valid representations of the 'not equal to' comparison operator.
-
Equal to 0
-
Greater than or equal to 1
-
Less than or equal to 0
-
Greater than or equal to 0
D
Correct answer
Explanation
Not negative includes zero and all positive numbers. Zero is neither positive nor negative, but it is definitively not negative, so the correct interpretation is greater than or equal to 0.
B
Correct answer
Explanation
Two consecutive minus signs would mean subtracting a negative number. In SQL, this is written as "value - (-another_value)" which simplifies to addition. The statement's phrasing doesn't represent standard SQL syntax.