HTML Diff
1 added 2 removed
Original 2026-01-01
Modified 2026-02-28
1 - <p>164 Learners</p>
1 + <p>205 Learners</p>
2 <p>Last updated on<strong>September 30, 2025</strong></p>
2 <p>Last updated on<strong>September 30, 2025</strong></p>
3 <p>The binary is a numerical system that allows the use of only two digits: 0 and 1. The binary representation of 2 is 10, represented 2 = 1 x 2^1 + 0 x 2^0. Each place value represents a power of 2 starting from 2^0 to the right. For example, 102 = 210. The binary number system is fundamental in computing because digital systems operate using two states: on (1) and off (0).</p>
3 <p>The binary is a numerical system that allows the use of only two digits: 0 and 1. The binary representation of 2 is 10, represented 2 = 1 x 2^1 + 0 x 2^0. Each place value represents a power of 2 starting from 2^0 to the right. For example, 102 = 210. The binary number system is fundamental in computing because digital systems operate using two states: on (1) and off (0).</p>
4 <h2>2 in Binary Conversion</h2>
4 <h2>2 in Binary Conversion</h2>
5 <p>To convert the<a>number</a>2 into binary, we have to follow the following steps:</p>
5 <p>To convert the<a>number</a>2 into binary, we have to follow the following steps:</p>
6 <p><strong>Step 1:</strong>Start by dividing the number (2) by 2, the<a>base</a><a>of</a>the binary system. 2 ÷ 2 = 1 with a<a>remainder</a>of 0.</p>
6 <p><strong>Step 1:</strong>Start by dividing the number (2) by 2, the<a>base</a><a>of</a>the binary system. 2 ÷ 2 = 1 with a<a>remainder</a>of 0.</p>
7 <p><strong>Step 2:</strong>Write down the remainder (0) as the least significant value (bit) or the rightmost bit of the<a>binary number</a>.</p>
7 <p><strong>Step 2:</strong>Write down the remainder (0) as the least significant value (bit) or the rightmost bit of the<a>binary number</a>.</p>
8 <p><strong>Step 3:</strong>Take the<a>quotient</a>(1) and divide it by 2 again: 1 ÷ 2 = 0 with a remainder of 1.</p>
8 <p><strong>Step 3:</strong>Take the<a>quotient</a>(1) and divide it by 2 again: 1 ÷ 2 = 0 with a remainder of 1.</p>
9 <p><strong>Step 4:</strong>Write down this remainder (1) to the left of the previous bit.</p>
9 <p><strong>Step 4:</strong>Write down this remainder (1) to the left of the previous bit.</p>
10 <p><strong>Step 5:</strong>Since the quotient is now 0, the process stops</p>
10 <p><strong>Step 5:</strong>Since the quotient is now 0, the process stops</p>
11 <p>Reading the remainders from bottom to top gives the binary representation of 2 which is, 10.</p>
11 <p>Reading the remainders from bottom to top gives the binary representation of 2 which is, 10.</p>
12 <h2>2 in Binary Chart</h2>
12 <h2>2 in Binary Chart</h2>
13 <p>To understand the concept of binary, let us see the chart of various numbers as to how it is written in binary:</p>
13 <p>To understand the concept of binary, let us see the chart of various numbers as to how it is written in binary:</p>
14 Numerical System Binary Conversion 0 0000 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 10 1010<p>The above table shows the binary conversions of the numbers from 1 to 10. In the above chart, 2 is represented as, 0010 or 10.</p>
14 Numerical System Binary Conversion 0 0000 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 10 1010<p>The above table shows the binary conversions of the numbers from 1 to 10. In the above chart, 2 is represented as, 0010 or 10.</p>
15 <h2>How to Write 2 in Binary</h2>
15 <h2>How to Write 2 in Binary</h2>
16 <p>2 can be written in binary by using 2 ways, the expansion method and grouping method. Let us now see how we can use these two methods to write 2 in binary.</p>
16 <p>2 can be written in binary by using 2 ways, the expansion method and grouping method. Let us now see how we can use these two methods to write 2 in binary.</p>
17 <h3>Explore Our Programs</h3>
17 <h3>Explore Our Programs</h3>
18 - <p>No Courses Available</p>
 
19 <h3>Expansion Method</h3>
18 <h3>Expansion Method</h3>
20 <p>The step-by-step process of using the expansion method to convert 2 to binary is given below:</p>
19 <p>The step-by-step process of using the expansion method to convert 2 to binary is given below:</p>
21 <p><strong>Step 1:</strong>Understand the binary place values Binary numbers are expressed as<a>powers</a>of 2. The place values from left to right are: 20 = 1, 21 = 2, 22 = 4, 23 = 8 and so on.</p>
20 <p><strong>Step 1:</strong>Understand the binary place values Binary numbers are expressed as<a>powers</a>of 2. The place values from left to right are: 20 = 1, 21 = 2, 22 = 4, 23 = 8 and so on.</p>
22 <p><strong>Step 2:</strong>Find the largest power of 2<a>less than</a>or equal to 2 The largest power of 2 that fits into 2 is 21 = 2.</p>
21 <p><strong>Step 2:</strong>Find the largest power of 2<a>less than</a>or equal to 2 The largest power of 2 that fits into 2 is 21 = 2.</p>
23 <p><strong>Step 3:</strong>Write a 1 in that place Since 21 = 2, place a 1 in the 21 position.</p>
22 <p><strong>Step 3:</strong>Write a 1 in that place Since 21 = 2, place a 1 in the 21 position.</p>
24 <p><strong>Step 4:</strong>Subtract the value of 21 from the number 2 - 2 = 0.</p>
23 <p><strong>Step 4:</strong>Subtract the value of 21 from the number 2 - 2 = 0.</p>
25 <p><strong>Step 5:</strong>Move to the next lower<a>place value</a>(20): Since there is no remainder, place a 0 in the position of 20.</p>
24 <p><strong>Step 5:</strong>Move to the next lower<a>place value</a>(20): Since there is no remainder, place a 0 in the position of 20.</p>
26 <p><strong>Step 6:</strong>Write the binary number: Reading the bits from left to right, the binary number of 2 is 10.</p>
25 <p><strong>Step 6:</strong>Write the binary number: Reading the bits from left to right, the binary number of 2 is 10.</p>
27 <h3>Grouping Method</h3>
26 <h3>Grouping Method</h3>
28 <p>The step-by-step process of using the grouping method to convert 2 to binary is given below:</p>
27 <p>The step-by-step process of using the grouping method to convert 2 to binary is given below:</p>
29 <p><strong>Step 1:</strong>Start with the number The given number is 2.</p>
28 <p><strong>Step 1:</strong>Start with the number The given number is 2.</p>
30 <p><strong>Step 2:</strong>Divide by 2 and record the remainder 2 ÷ 2 = 0 The remainder is 0 The remainder (0) becomes the rightmost (least significant) bit.</p>
29 <p><strong>Step 2:</strong>Divide by 2 and record the remainder 2 ÷ 2 = 0 The remainder is 0 The remainder (0) becomes the rightmost (least significant) bit.</p>
31 <p><strong>Step 3:</strong>Divide the quotient by 2 1 ÷ 2 = 1 The remainder is 1 The remainder (1) becomes the next bit to the left.</p>
30 <p><strong>Step 3:</strong>Divide the quotient by 2 1 ÷ 2 = 1 The remainder is 1 The remainder (1) becomes the next bit to the left.</p>
32 <p><strong>Step 4:</strong>Group the remainders Read the remainders from bottom to top: 10</p>
31 <p><strong>Step 4:</strong>Group the remainders Read the remainders from bottom to top: 10</p>
33 <p><strong>Step 5:</strong>Write the binary number The binary representation of 2 is 10.</p>
32 <p><strong>Step 5:</strong>Write the binary number The binary representation of 2 is 10.</p>
34 <h2>Rules for Binary Conversion of 2</h2>
33 <h2>Rules for Binary Conversion of 2</h2>
35 <p>There are various rules the students must follow for converting numbers into binary. The rules are as follows:</p>
34 <p>There are various rules the students must follow for converting numbers into binary. The rules are as follows:</p>
36 <p><strong>Rule 1: Place Value Method:</strong></p>
35 <p><strong>Rule 1: Place Value Method:</strong></p>
37 <p>This method involves representing a number as a<a>sum</a>of powers of 2:</p>
36 <p>This method involves representing a number as a<a>sum</a>of powers of 2:</p>
38 <ul><li>Identify the largest power of 2 which is less than or equal to the given number.</li>
37 <ul><li>Identify the largest power of 2 which is less than or equal to the given number.</li>
39 </ul><ul><li>Subtract the value of this power of 2 from the given number.</li>
38 </ul><ul><li>Subtract the value of this power of 2 from the given number.</li>
40 </ul><ul><li>Write a “1” in the binary place corresponding to 21 and “0” for all other powers.</li>
39 </ul><ul><li>Write a “1” in the binary place corresponding to 21 and “0” for all other powers.</li>
41 </ul><ul><li>Repeat the process for all the remaining values until all the powers are used (does not apply to number 0).</li>
40 </ul><ul><li>Repeat the process for all the remaining values until all the powers are used (does not apply to number 0).</li>
42 </ul><p><strong>Rule 2: Division by 2 Method:</strong></p>
41 </ul><p><strong>Rule 2: Division by 2 Method:</strong></p>
43 <p>This method involves dividing the number by 2 and then recording the remainders:</p>
42 <p>This method involves dividing the number by 2 and then recording the remainders:</p>
44 <ul><li>Divide the given number by 2 and note the quotient and remainder.</li>
43 <ul><li>Divide the given number by 2 and note the quotient and remainder.</li>
45 </ul><ul><li>Divide the quotient by 2 again and note the new remainder</li>
44 </ul><ul><li>Divide the quotient by 2 again and note the new remainder</li>
46 </ul><ul><li>Continue dividing the quotient by 2 until the quotient becomes 0</li>
45 </ul><ul><li>Continue dividing the quotient by 2 until the quotient becomes 0</li>
47 </ul><ul><li>Write the binary number by reading the remainders from bottom to top.</li>
46 </ul><ul><li>Write the binary number by reading the remainders from bottom to top.</li>
48 </ul><p><strong>Rule 3: Representation Method:</strong></p>
47 </ul><p><strong>Rule 3: Representation Method:</strong></p>
49 <p>This method uses the binary place values directly:</p>
48 <p>This method uses the binary place values directly:</p>
50 <ul><li>Write down the powers of 2 in decreasing order, starting from the left.</li>
49 <ul><li>Write down the powers of 2 in decreasing order, starting from the left.</li>
51 </ul><ul><li>Allocate “1” or “0” in each place based on whether the corresponding power of 2 is included in the number.</li>
50 </ul><ul><li>Allocate “1” or “0” in each place based on whether the corresponding power of 2 is included in the number.</li>
52 </ul><ul><li>Combine the binary digits to form the binary number.</li>
51 </ul><ul><li>Combine the binary digits to form the binary number.</li>
53 </ul><p><strong>Rule 4: Limitation Rule:</strong></p>
52 </ul><p><strong>Rule 4: Limitation Rule:</strong></p>
54 <p>This rule shows the different limitations that occur during binary conversions:</p>
53 <p>This rule shows the different limitations that occur during binary conversions:</p>
55 <ul><li>Finite Representation: Only<a>integers</a>can be represented in binary system precisely,<a>fractions</a>require additional complicated methods like binary fractions.</li>
54 <ul><li>Finite Representation: Only<a>integers</a>can be represented in binary system precisely,<a>fractions</a>require additional complicated methods like binary fractions.</li>
56 </ul><ul><li>Memory Limitation: Computers have a fixed<a>set</a>of bits to represent binary numbers, if the number is too large it leads to overflow.</li>
55 </ul><ul><li>Memory Limitation: Computers have a fixed<a>set</a>of bits to represent binary numbers, if the number is too large it leads to overflow.</li>
57 </ul><ul><li>Precision for fractions: Non-integers values like 0.1 in<a>decimal</a>cannot be represented precisely in binary, which results in rounding off errors.</li>
56 </ul><ul><li>Precision for fractions: Non-integers values like 0.1 in<a>decimal</a>cannot be represented precisely in binary, which results in rounding off errors.</li>
58 </ul><ul><li>Complexity: The conversions of fractions and large numbers can be difficult to compute without additional tools like automation or computational tools.</li>
57 </ul><ul><li>Complexity: The conversions of fractions and large numbers can be difficult to compute without additional tools like automation or computational tools.</li>
59 </ul><h2>Tips and Tricks for Binary numbers till 2</h2>
58 </ul><h2>Tips and Tricks for Binary numbers till 2</h2>
60 <p><strong>Understand the Base-2 System:</strong></p>
59 <p><strong>Understand the Base-2 System:</strong></p>
61 <p>Unlike our normal<a>number system</a>(Base-10) binary numbers uses only two digits: 0 and 1. Each position of a binary number represents a power of 2.</p>
60 <p>Unlike our normal<a>number system</a>(Base-10) binary numbers uses only two digits: 0 and 1. Each position of a binary number represents a power of 2.</p>
62 <p><strong>Master Repeated Division Method:</strong></p>
61 <p><strong>Master Repeated Division Method:</strong></p>
63 <p>Students must practice the repeated<a>division</a>method, which is, consistent division of the given number by 2 until the quotient becomes 0. The students must then record the remainders (0 or 1) in each step. The binary number is then read by the remainders from bottom to top. </p>
62 <p>Students must practice the repeated<a>division</a>method, which is, consistent division of the given number by 2 until the quotient becomes 0. The students must then record the remainders (0 or 1) in each step. The binary number is then read by the remainders from bottom to top. </p>
64 <p><strong>Practice with Small Numbers:</strong></p>
63 <p><strong>Practice with Small Numbers:</strong></p>
65 <p>Students must learn to always start with small numbers, like from 1 to 20. Then when they understand the concept of conversions, they can move on to larger numbers.</p>
64 <p>Students must learn to always start with small numbers, like from 1 to 20. Then when they understand the concept of conversions, they can move on to larger numbers.</p>
66 <p><strong>Use Online Calculators (initially):</strong></p>
65 <p><strong>Use Online Calculators (initially):</strong></p>
67 <p>Students can use<a>calculators</a>to verify their answers and check the manual calculations. The students must analyze how the online converter performs the conversions to gain knowledge of the concept. This tip is only for extra knowledge, do not use the calculators indefinitely as it will hinder the student's manual calculations.</p>
66 <p>Students can use<a>calculators</a>to verify their answers and check the manual calculations. The students must analyze how the online converter performs the conversions to gain knowledge of the concept. This tip is only for extra knowledge, do not use the calculators indefinitely as it will hinder the student's manual calculations.</p>
68 <p><strong>Connect to Real-World Applications:</strong></p>
67 <p><strong>Connect to Real-World Applications:</strong></p>
69 <p>Students can apply the concept of binary conversions to real-world applications like computer science and electronics. This helps students to understand the concept of binary conversions and how they are used in different fields.</p>
68 <p>Students can apply the concept of binary conversions to real-world applications like computer science and electronics. This helps students to understand the concept of binary conversions and how they are used in different fields.</p>
70 <h2>Common Mistakes and How to Avoid Them in 2 in Binary Conversion</h2>
69 <h2>Common Mistakes and How to Avoid Them in 2 in Binary Conversion</h2>
71 <p>NA</p>
70 <p>NA</p>
72 <h3>Problem 1</h3>
71 <h3>Problem 1</h3>
73 <p>Convert the number 10 into binary.</p>
72 <p>Convert the number 10 into binary.</p>
74 <p>Okay, lets begin</p>
73 <p>Okay, lets begin</p>
75 <p>10 in binary is, 1010</p>
74 <p>10 in binary is, 1010</p>
76 <h3>Explanation</h3>
75 <h3>Explanation</h3>
77 <p>Divide 10 by 2 repeatedly:</p>
76 <p>Divide 10 by 2 repeatedly:</p>
78 <p>10/2 = 5 remainder is 0</p>
77 <p>10/2 = 5 remainder is 0</p>
79 <p>5/2 = 2 remainder is 1</p>
78 <p>5/2 = 2 remainder is 1</p>
80 <p>2/2 = 1 remainder is 0</p>
79 <p>2/2 = 1 remainder is 0</p>
81 <p>1/2 = 0 remainder is 1</p>
80 <p>1/2 = 0 remainder is 1</p>
82 <p>Read the remainders from bottom to top: 1010.</p>
81 <p>Read the remainders from bottom to top: 1010.</p>
83 <p>Well explained 👍</p>
82 <p>Well explained 👍</p>
84 <h3>Problem 2</h3>
83 <h3>Problem 2</h3>
85 <p>Convert the number 25 into binary.</p>
84 <p>Convert the number 25 into binary.</p>
86 <p>Okay, lets begin</p>
85 <p>Okay, lets begin</p>
87 <p>25 in binary is, 11001.</p>
86 <p>25 in binary is, 11001.</p>
88 <h3>Explanation</h3>
87 <h3>Explanation</h3>
89 <p>Divide 25 by 2 repeatedly: </p>
88 <p>Divide 25 by 2 repeatedly: </p>
90 <p>25/2 = 12 remainder is 1</p>
89 <p>25/2 = 12 remainder is 1</p>
91 <p>12/2 = 6 remainder is 0</p>
90 <p>12/2 = 6 remainder is 0</p>
92 <p>6/2 = 3 remainder is 0</p>
91 <p>6/2 = 3 remainder is 0</p>
93 <p>3/2 = 1 remainder is 1</p>
92 <p>3/2 = 1 remainder is 1</p>
94 <p>½ = 0 remainder is 1</p>
93 <p>½ = 0 remainder is 1</p>
95 <p>Read the remainders from bottom to top: 11001.</p>
94 <p>Read the remainders from bottom to top: 11001.</p>
96 <p>Well explained 👍</p>
95 <p>Well explained 👍</p>
97 <h3>Problem 3</h3>
96 <h3>Problem 3</h3>
98 <p>Convert the number 50 into binary.</p>
97 <p>Convert the number 50 into binary.</p>
99 <p>Okay, lets begin</p>
98 <p>Okay, lets begin</p>
100 <p>50 in binary is, 110010.</p>
99 <p>50 in binary is, 110010.</p>
101 <h3>Explanation</h3>
100 <h3>Explanation</h3>
102 <p>Divide 50 by 2 repeatedly:</p>
101 <p>Divide 50 by 2 repeatedly:</p>
103 <p>50/2 = 25 remainder is 0</p>
102 <p>50/2 = 25 remainder is 0</p>
104 <p>25/2 = 12 remainder is 1</p>
103 <p>25/2 = 12 remainder is 1</p>
105 <p>12/2 = 6 remainder is 0</p>
104 <p>12/2 = 6 remainder is 0</p>
106 <p> 6/2 = 3 remainder is 0</p>
105 <p> 6/2 = 3 remainder is 0</p>
107 <p>3/2 = 1 remainder is 1</p>
106 <p>3/2 = 1 remainder is 1</p>
108 <p>1/2 = 0 remainder is 1</p>
107 <p>1/2 = 0 remainder is 1</p>
109 <p>Read the remainders from bottom to top: 110010.</p>
108 <p>Read the remainders from bottom to top: 110010.</p>
110 <p>Well explained 👍</p>
109 <p>Well explained 👍</p>
111 <h3>Problem 4</h3>
110 <h3>Problem 4</h3>
112 <p>Convert the number 128 into binary.</p>
111 <p>Convert the number 128 into binary.</p>
113 <p>Okay, lets begin</p>
112 <p>Okay, lets begin</p>
114 <p>128 in binary is, 10000000.</p>
113 <p>128 in binary is, 10000000.</p>
115 <h3>Explanation</h3>
114 <h3>Explanation</h3>
116 <p>Divide 128 by 2 repeatedly:</p>
115 <p>Divide 128 by 2 repeatedly:</p>
117 <p>128/2 = 64 remainder is 0</p>
116 <p>128/2 = 64 remainder is 0</p>
118 <p>64/2 = 32 remainder is 0</p>
117 <p>64/2 = 32 remainder is 0</p>
119 <p>32/2 = 16 remainder is 0</p>
118 <p>32/2 = 16 remainder is 0</p>
120 <p>16/2 = 8 remainder is 0</p>
119 <p>16/2 = 8 remainder is 0</p>
121 <p>8/2 = 4 remainder is 0</p>
120 <p>8/2 = 4 remainder is 0</p>
122 <p>4/2 = 2 remainder is 0</p>
121 <p>4/2 = 2 remainder is 0</p>
123 <p>2/2 = 1 remainder is 1</p>
122 <p>2/2 = 1 remainder is 1</p>
124 <p>Read the remainders from bottom to top: 10000000.</p>
123 <p>Read the remainders from bottom to top: 10000000.</p>
125 <p>Well explained 👍</p>
124 <p>Well explained 👍</p>
126 <h3>Problem 5</h3>
125 <h3>Problem 5</h3>
127 <p>Convert the number 21 into binary.</p>
126 <p>Convert the number 21 into binary.</p>
128 <p>Okay, lets begin</p>
127 <p>Okay, lets begin</p>
129 <p>21 in binary is, 10101</p>
128 <p>21 in binary is, 10101</p>
130 <h3>Explanation</h3>
129 <h3>Explanation</h3>
131 <p>Divide 21 by 2 repeatedly:</p>
130 <p>Divide 21 by 2 repeatedly:</p>
132 <p>21/2 = 10 remainder is 1</p>
131 <p>21/2 = 10 remainder is 1</p>
133 <p>10/2 = 5 remainder is 0</p>
132 <p>10/2 = 5 remainder is 0</p>
134 <p>5/2 = 2 remainder is 1</p>
133 <p>5/2 = 2 remainder is 1</p>
135 <p>2/2 = 1 remainder is 0</p>
134 <p>2/2 = 1 remainder is 0</p>
136 <p>1/2 = 0 remainder is 1</p>
135 <p>1/2 = 0 remainder is 1</p>
137 <p>Read the remainders from bottom to top: 10101.</p>
136 <p>Read the remainders from bottom to top: 10101.</p>
138 <p>Well explained 👍</p>
137 <p>Well explained 👍</p>
139 <h2>FAQs in 2 in Binary</h2>
138 <h2>FAQs in 2 in Binary</h2>
140 <h3>1.What is the binary conversion of 2?</h3>
139 <h3>1.What is the binary conversion of 2?</h3>
141 <h3>2.What is the significance of 10 in binary?</h3>
140 <h3>2.What is the significance of 10 in binary?</h3>
142 <p>10 in binary represents the number 2.</p>
141 <p>10 in binary represents the number 2.</p>
143 <h3>3.What is the base of the binary number system?</h3>
142 <h3>3.What is the base of the binary number system?</h3>
144 <h3>4.How many digits are used in binary number system?</h3>
143 <h3>4.How many digits are used in binary number system?</h3>
145 <h3>5.How do you convert 2 into binary?</h3>
144 <h3>5.How do you convert 2 into binary?</h3>
146 <p>Divide 2 by 2: 2/2 = 1 remainder is 0</p>
145 <p>Divide 2 by 2: 2/2 = 1 remainder is 0</p>
147 <p>Divide 1 by 2: 1/2 = 0 remainder is 1</p>
146 <p>Divide 1 by 2: 1/2 = 0 remainder is 1</p>
148 <p>Read the remainders from bottom to top: 10.</p>
147 <p>Read the remainders from bottom to top: 10.</p>
149 <h2>Important Glossaries for 2 in Binary</h2>
148 <h2>Important Glossaries for 2 in Binary</h2>
150 <ul><li><strong>Binary:</strong>A number system that uses two digits: 0 and 1.</li>
149 <ul><li><strong>Binary:</strong>A number system that uses two digits: 0 and 1.</li>
151 </ul><ul><li><strong>Digit:</strong>A single symbol used to represent a number.</li>
150 </ul><ul><li><strong>Digit:</strong>A single symbol used to represent a number.</li>
152 </ul><ul><li><strong>Binary digit (bit):</strong>The smallest unit of information in computing, represented by 0 or 1.</li>
151 </ul><ul><li><strong>Binary digit (bit):</strong>The smallest unit of information in computing, represented by 0 or 1.</li>
153 </ul><ul><li><strong>Remainder:</strong>The amount left over after division.</li>
152 </ul><ul><li><strong>Remainder:</strong>The amount left over after division.</li>
154 </ul><p>What Are Numbers? 🔢 | Fun Explanation with 🎯 Real-Life Examples for Kids | ✨BrightCHAMPS Math</p>
153 </ul><p>What Are Numbers? 🔢 | Fun Explanation with 🎯 Real-Life Examples for Kids | ✨BrightCHAMPS Math</p>
155 <p>▶</p>
154 <p>▶</p>
156 <h2>Hiralee Lalitkumar Makwana</h2>
155 <h2>Hiralee Lalitkumar Makwana</h2>
157 <h3>About the Author</h3>
156 <h3>About the Author</h3>
158 <p>Hiralee Lalitkumar Makwana has almost two years of teaching experience. She is a number ninja as she loves numbers. Her interest in numbers can be seen in the way she cracks math puzzles and hidden patterns.</p>
157 <p>Hiralee Lalitkumar Makwana has almost two years of teaching experience. She is a number ninja as she loves numbers. Her interest in numbers can be seen in the way she cracks math puzzles and hidden patterns.</p>
159 <h3>Fun Fact</h3>
158 <h3>Fun Fact</h3>
160 <p>: She loves to read number jokes and games.</p>
159 <p>: She loves to read number jokes and games.</p>