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 softskills creativity
  1. True

  2. False

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

To solve this problem, the user needs to know basic arithmetic and how to find the sum of two numbers. The user must check whether any two numbers in the given list add up to thirteen.

Let's go through each option:

A. True: This option is correct. By checking the given numbers, we can see that 2 of them add up to 13. 6 and 7 add up to 13. Thus, option A is the correct answer.

B. False: This option is incorrect. There are actually two numbers in the given list that add up to 13.

Therefore, the answer is:

The Answer is: A

Multiple choice softskills creativity
  1. 25

  2. 70

  3. 12

  4. 40

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

Half means 0.5, so 30 divided by 0.5 = 30 × 2 = 60. Then 60 + 10 = 70. The common mistake is dividing by 2 instead of dividing by 0.5. 25 would come from 30 ÷ 2 + 10. 40 would come from 30 ÷ 0.5 × 2/3 roughly. 12 is unclear but wrong.

Multiple choice technology databases
  1. 15

  2. -15

  3. -3

  4. 3

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

The mod function returns the remainder of division. -15 ÷ 4 = -3 with remainder -3, since -3 × 4 = -12 and -15 - (-12) = -3. Different languages handle negative operands differently, but -15 and 4 would typically give remainder -3 or 1 depending on implementation.

Multiple choice technology mainframe
  1. SORT FIELDS=COPY OUTREC FIELDS=(1:1,24,25,6,ZD,MUL,+0.97,TO=ZD,LENGTH=6,31:31,185)

  2. SORT FIELDS=COPY OUTREC FIELDS=(1:1,24,25,6,ZD,MUL,+97,DIV,+100,TO=ZD,LENGTH=6,31:31,185)

  3. SORT FIELDS=COPY OUTREC FIELDS=(1:1,24,25,6,ZD,DIV,+100,MUL,+97,TO=ZD,LENGTH=6,31:31,185)

  4. All of the above

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

In DFSORT, decimal multiplication is simulated using integer arithmetic. Multiplying by 97 and dividing by 100 in OUTREC correctly scales the value. Both options B and C represent valid syntax configurations for this operation.

Multiple choice technology mainframe
  1. Yes

  2. No

  3. X(245) can be refined to X(250)

  4. Author should learn COBOL

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

REDEFINES allows redefining a data item with another of equal or smaller length. Redefining X(250) with X(245) is valid - the smaller length is permitted. The reverse (X(245) to X(250)) would not be allowed.