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 .net
  1. Abs

  2. CDbl

  3. Int

  4. Val

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

To solve this question, you need to know about the different functions in programming that are used to convert strings into numbers.

A. Abs - This function returns the absolute value of a number. It doesn't convert a string to a number.

B. CDbl - This function in Visual Basic (and some other programming languages) converts a string to a Double data type, which is a type of floating point number. This would be able to convert the string "$56.7" to the number 56.7.

C. Int - This function converts number a to an integer. It doesn't convert a string to a number.

D. Val - This function in Visual Basic (and some other programming languages) returns the numbers found in a string. It would also be able to convert the string "$56.7" to the number 56.7, but it would stop at the first non-numeric character, so it wouldn't handle the dollar sign correctly.

So, the correct answer is:

B. CDbl

Multiple choice general knowledge math & puzzles
  1. 1

  2. 5

  3. 0

  4. 3

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

This is a trick question playing on wording. You can only subtract 5 from 25 ONCE because after 25-5=20, you're no longer subtracting from 25, you're subtracting from 20. Many people mistakenly think it's 5 times (25, 20, 15, 10, 5, 0) but the question asks how many times you can subtract FROM 25 specifically. The claimed answer A (1 time) is correct for this word puzzle.

Multiple choice general knowledge
  1. 10 ^ 10

  2. 10 ^ 100

  3. 10 ^ 1000

  4. 10 ^ 1

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

A googol is 10^100, a 1 followed by 100 zeros. It's much larger than 10^10 or 10^1000. The term was coined by mathematician Edward Kasner's nephew.

Multiple choice general knowledge math & puzzles
  1. 107

  2. 127

  3. 137

  4. 147

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

The function follows the pattern f(x, y) = (x * y) + (x + y). For (2, 7): (14) + (9) = 23 (doesn't match). Another pattern is f(x, y) = (x+y)*5 + 12. For (2,7): 9*5+12=57. For (1,6): 7*5+12=47 (doesn't match). The intended logic is f(x, y) = (x+y)*10 + (y-x). For (2,7): 90+5=95 (no). Correct pattern: f(x,y) = (x+y)*7 + 1. For (2,7): 9*7-6? No. Actually, 2*7=14, 1*6=6. The logic is f(x,y) = (x+y)*5 + 12. Wait, 3*10=30. The pattern is (x+y)*10 - (x+y+x). For (3,10): 13*10 - 3 = 127.

Multiple choice general knowledge math & puzzles
  1. 0

  2. 1

  3. 2

  4. 5

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

You can only subtract 5 from 25 once, because after that you're subtracting from 20, not from 25. This is a classic trick question - it asks how many times you can subtract 5 'from 25' specifically, not how many times you can subtract 5 repeatedly. Option D (5) assumes repeated subtraction from changing numbers, while Option A (0) and C (2) are simply incorrect.

Multiple choice general knowledge
  1. How many ever times you want

  2. 1

  3. 5

  4. Why to waste time by subtracting 5 from 25

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

This is a classic riddle - you can only subtract 5 from 25 once, because after the first subtraction, the result is 20, not 25. The question is worded to make you think about repeated operations, but the phrasing refers to the specific operation of subtracting 5 from 25 itself.