CLAT Exam  >  CLAT Notes  >  Quantitative Techniques for CLAT  >  Practice Questions: Number System

Practice Questions: Number System | Quantitative Techniques for CLAT PDF Download

Q1: Find out the value of x for which 7396×51 is divisible by 11? 9?
Ans:
Odd places digits sum= 1+x+9+7 =17+x
Even places digits sum = 5+6+3 =14
Difference between the two sums = 17+x – 14 = 3+x
As per divisibility rule (3+x) should be divisible by 11, therefore 11= x+3
x = 11 – 3 = 8

Q2: What should be subtracted from 2016 to make it completely divisible by 19?
Ans:

Practice Questions: Number System | Quantitative Techniques for CLAT
As we divide 2016 by 19 we get the remainder 2, that means when we subtract 2 from 2016 the number gets completely divisible.

Q3: Find the unit digit of the product (463 * 756 * 414 * 679).
Ans:
For solving unit digit questions we don’t have to use whole numbers of products, only significant digits are of units place.
For such questions multiply all the digits at units place and what you get in the units place of the new number is the digit at units place of multiple of numbers given in question.
Multiple of digits at units place 3*6*4*9 = 18*36
Now here you might find yourself stuck with big numbers but it’s not that complicated. For such big numbers, you can again apply the same trick and it won’t change results i.e., 8*6 = 48
Thus the unit digit of (463 * 756 * 414 * 679) is 8

Q4: What is the total number of Prime factors in (47 * 75 *1111)
Ans:
Given number: 47* 7* 1111
Here we see other than 4, 7 and 11 are prime numbers but we also know that 4 is 2*2 which is a prime number. Thus we can rewrite the numbers as
(2)7  * (7) * (11)11  = 214 *7*1111
The no. of prime numbers would be the sum of numbers in power because that many prime numbers are there in the number ie., 14+5+11 = 30.

Q5: What is the nearest natural number to 8488, which is completely divisible by 77?
Ans:
8470
Practice Questions: Number System | Quantitative Techniques for CLAT
thus we see here 77*110 gives 8470 and 18 becomes remainder. Thus the nearest natural number is 8470.

Q6: Find out the smallest number to be subtracted from 13501, so that the remainder is divisible by 87.
Ans:
16
Practice Questions: Number System | Quantitative Techniques for CLAT
This is again a remainder question with just twisted language. If you find such questions in exam read th question twice-thrice and you would get the trick.

Q7: Find out the smallest 5 digit number which is divisible by 31?
Ans:
The smallest 5 digit number is 10000
Practice Questions: Number System | Quantitative Techniques for CLAT
If 10000 is the smallest number and adding 31-18= 13 would make it divisible by 31.

Q8: Find out the largest 5 digit number which is divisible by 91?
Ans: 
The largest 5 digit number is 99999
Practice Questions: Number System | Quantitative Techniques for CLAT
If 99999 is the largest number and subtracting 81would make it divisible by 91.

Q9: If a number is divided by 56 then the remainder is 29. Find out the remainder if the same number is divided by 8.
Ans:
Suppose a is the number being divided and b be the quotient
a = 56 *b + 29
= 8*7*b + 8*3 +5
= 8 ( 7*b + 3) +5
We need to divide a by 8 for fiding out the remainder, in the above explanation first part 8( 7*b + 3) have a factor 8 but 5 would still remain as remainder.

Q10: Find out how many numbers between 100 to 1000 are divisible by 6.
Ans:
The first 3 digit number that is divisible by 6 is 102 and last would be 996 (you can find these numbers using smallest and largest methods we discussed earlier ).
This becomes an A.P. with a= 102, d=6 and l=996
l= a + (n-1)d
996 = 102 + (n-1) 6
After solving above equation we get n=150. Therefore 150 3 digit numbers which are divisible by 6.

The document Practice Questions: Number System | Quantitative Techniques for CLAT is a part of the CLAT Course Quantitative Techniques for CLAT.
All you need of CLAT at this link: CLAT
56 videos|104 docs|95 tests

Top Courses for CLAT

FAQs on Practice Questions: Number System - Quantitative Techniques for CLAT

1. What are the different types of number systems used in mathematics?
Ans. The different types of number systems used in mathematics are: - Decimal number system: This is the most commonly used number system, where numbers are represented using the digits 0-9. - Binary number system: This number system uses only two digits, 0 and 1, and is widely used in computer systems. - Octal number system: Octal numbers are represented using the digits 0-7. - Hexadecimal number system: Hexadecimal numbers use the digits 0-9 and additional alphabets A-F. - Roman numeral system: This ancient number system uses a combination of letters to represent different values.
2. How do you convert a decimal number to a binary number?
Ans. To convert a decimal number to a binary number, follow these steps: 1. Divide the decimal number by 2 and note down the remainder. 2. Divide the quotient obtained in step 1 by 2 again and note down the remainder. 3. Repeat step 2 until the quotient becomes 0. 4. The binary number is obtained by writing the remainders obtained in reverse order. For example, to convert decimal number 10 to binary: - Dividing 10 by 2 gives a quotient of 5 and a remainder of 0. - Dividing 5 by 2 gives a quotient of 2 and a remainder of 1. - Dividing 2 by 2 gives a quotient of 1 and a remainder of 0. - Dividing 1 by 2 gives a quotient of 0 and a remainder of 1. So, the binary representation of decimal number 10 is 1010.
3. How do you convert a binary number to a decimal number?
Ans. To convert a binary number to a decimal number, follow these steps: 1. Start from the rightmost digit of the binary number and assign powers of 2 to each digit from right to left, starting with 2^0 for the rightmost digit. 2. Multiply each digit of the binary number with its corresponding power of 2. 3. Add up all the products obtained in step 2 to get the decimal equivalent. For example, to convert binary number 1010 to decimal: - The rightmost digit is 0, so 0 * 2^0 = 0. - The next digit is 1, so 1 * 2^1 = 2. - The next digit is 0, so 0 * 2^2 = 0. - The leftmost digit is 1, so 1 * 2^3 = 8. Adding up all the products, we get 0 + 2 + 0 + 8 = 10. So, the decimal equivalent of binary number 1010 is 10.
4. What is the significance of the octal number system in computer programming?
Ans. The octal number system is significant in computer programming as it is often used to represent and manipulate groups of bits, particularly in low-level programming. Octal numbers are used to represent binary values in a more compact form, as each octal digit corresponds to three binary digits. In computer programming, octal numbers are commonly used in conjunction with bitwise operations to manipulate and analyze binary data. Octal representation makes it easier to communicate and understand the values of binary data. Additionally, octal numbers are useful in the context of file permissions in Unix-like operating systems, where each digit of an octal number represents the permission settings for the owner, group, and others.
5. How was the Roman numeral system used in ancient times?
Ans. The Roman numeral system was used in ancient times as a way to represent numbers using a combination of letters. Here are some key points about the usage of Roman numerals: - Roman numerals were widely used in the Roman Empire and throughout Europe until the 14th century. - The system consists of seven basic symbols: I, V, X, L, C, D, and M, which represent the numbers 1, 5, 10, 50, 100, 500, and 1000, respectively. - To represent larger numbers, the symbols were combined. For example, II represents 2, III represents 3, and so on. - Sometimes, a smaller symbol placed before a larger one indicates subtraction. For example, IV represents 4 (5 - 1) and IX represents 9 (10 - 1). - Roman numerals were commonly used in various contexts, such as numbering chapters in books, indicating dates on monuments, and representing monarchs' names.
56 videos|104 docs|95 tests
Download as PDF
Explore Courses for CLAT exam

Top Courses for CLAT

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

shortcuts and tricks

,

Practice Questions: Number System | Quantitative Techniques for CLAT

,

mock tests for examination

,

study material

,

ppt

,

MCQs

,

Practice Questions: Number System | Quantitative Techniques for CLAT

,

Viva Questions

,

Summary

,

Sample Paper

,

Practice Questions: Number System | Quantitative Techniques for CLAT

,

Important questions

,

Exam

,

Semester Notes

,

pdf

,

video lectures

,

Previous Year Questions with Solutions

,

Objective type Questions

,

Extra Questions

,

past year papers

,

practice quizzes

,

Free

;