Mathematics · Quantitative Aptitude

Number Operations and Properties

974 Questions

Improve your quantitative aptitude with these number operations and properties questions. The topics range from basic subtraction and division to highest common factor and roman numerals. Regular practice of these fundamentals builds speed for exams.

Basic arithmetic operationsHCF and number propertiesRoman numeral calculationsNumber series evaluation

Number Operations and Properties Questions

Multiple choice technology programming languages
  1. 10

  2. 20

  3. 30

  4. 3

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

Evaluating a list literal inside parenthesized syntax in a scalar context triggers the comma operator, which discards all but the last element. Thus, $scalar is assigned 30. Distractors like 10 or 3 assume array size or first-element behavior.

Multiple choice technology web technology
  1. -11

  2. -10

  3. -10.5

  4. error

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

CEILING(-10.4) returns the smallest integer greater than or equal to -10.4, which is -10. The CEILING function rounds up towards zero for negative numbers.

Multiple choice technology programming languages
  1. 1}

  2. It will give error

  3. 10

  4. -10

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

X is defined as PIC 99 (2-digit integer). When SUBTRACT 20 FROM X executes, X starts at 10, and 10 - 20 = -10. Since PIC 99 cannot hold negative values, COBOL truncates/ignores the sign, resulting in 10. No error occurs - this is how COBOL handles overflow in unsigned fields.

Multiple choice technology testing
  1. 17

  2. 19

  3. 24

  4. 21

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

For a valid range of 18-25, the equivalence classes are: valid (18-25), invalid below (less than 18), and invalid above (greater than 25). Option A (17) is invalid because it's below the minimum valid value of 18. Options B (19), C (24), and D (21) are all valid values within the accepted range.

Multiple choice
  1. 534

  2. 1403

  3. 1623

  4. 1513

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

The pattern involves reversing both numbers, then adding corresponding digits column-wise: reverse(137)=731, reverse(276)=672. Adding column digits: 7+6=13, 3+7=10, 1+2=3 gives 1-3-10-3, which rearranges to 1623. This pattern applied to 731+672: reverse(731)=137, reverse(672)=276, adding column digits: 1+2=3, 3+7=10, 7+6=13 gives 3-10-13, rearranging to 1623.

Multiple choice
  1. 90

  2. 95

  3. 100

  4. 110

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

In 97, digit at tens place is 9 and decider is 7, which is greater than 5. Thus, 97 rounded off to the nearest ten is 100.

Multiple choice
  1. 3.2 × 1010

  2. 3.2 × 108

  3. 3.2 × 104

  4. 3.2 × 103

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

32000 = 3.2 × 10000 = 3.2 × 10^4. The decimal point moved 4 places to the left (from after the last zero to between 3 and 2), giving exponent 4.