{"id":28058,"date":"2025-06-20T09:02:44","date_gmt":"2025-06-20T09:02:44","guid":{"rendered":"https:\/\/gaviki.com\/blog\/?p=28058"},"modified":"2025-06-20T09:02:46","modified_gmt":"2025-06-20T09:02:46","slug":"convert-decimal-number-81-and-124-into-binary","status":"publish","type":"post","link":"https:\/\/gaviki.com\/blog\/convert-decimal-number-81-and-124-into-binary\/","title":{"rendered":"Convert decimal number 81 and 124 into binary"},"content":{"rendered":"\n<p>Convert decimal number 81 and 124 into binary, octal and hexadecimal number system?<\/p>\n\n\n\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\"><strong>The correct answer and explanation is:<\/strong><\/mark><\/p>\n\n\n\n<p>Let&#8217;s convert the decimal numbers <strong>81<\/strong> and <strong>124<\/strong> into <strong>binary<\/strong>, <strong>octal<\/strong>, and <strong>hexadecimal<\/strong> number systems, and then provide an explanation.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 <strong>Conversions<\/strong><\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">\ud83d\udd39 Decimal 81:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Binary<\/strong>: 81 \u00f7 2 = <code>1010001<\/code><\/li>\n\n\n\n<li><strong>Octal<\/strong>: 81 \u00f7 8 = <code>121<\/code><\/li>\n\n\n\n<li><strong>Hexadecimal<\/strong>: 81 \u00f7 16 = <code>51<\/code> (since 5\u00d716 + 1 = 81)<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">\ud83d\udd39 Decimal 124:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Binary<\/strong>: 124 \u00f7 2 = <code>1111100<\/code><\/li>\n\n\n\n<li><strong>Octal<\/strong>: 124 \u00f7 8 = <code>174<\/code><\/li>\n\n\n\n<li><strong>Hexadecimal<\/strong>: 124 \u00f7 16 = <code>7C<\/code> (since 7\u00d716 + 12 = 124, and 12 = C in hex)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">\u2705 <strong>Summary Table<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Decimal<\/th><th>Binary<\/th><th>Octal<\/th><th>Hexadecimal<\/th><\/tr><\/thead><tbody><tr><td>81<\/td><td>1010001<\/td><td>121<\/td><td>51<\/td><\/tr><tr><td>124<\/td><td>1111100<\/td><td>174<\/td><td>7C<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">\ud83e\udde0 <strong>Explanation (300 words)<\/strong><\/h3>\n\n\n\n<p>Number systems are different ways to represent numbers using various bases. The <strong>decimal system<\/strong> is base-10, the most common in everyday life, using digits 0\u20139. However, computers use <strong>binary (base-2)<\/strong> because they operate with two states: ON and OFF, represented by 1 and 0.<\/p>\n\n\n\n<p>To convert <strong>decimal to binary<\/strong>, divide the number by 2 repeatedly and record the remainders. Reading the remainders from bottom to top gives the binary number.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>81 \u2192 Binary:\n<ul class=\"wp-block-list\">\n<li>81 \u00f7 2 = 40, remainder 1<\/li>\n\n\n\n<li>40 \u00f7 2 = 20, remainder 0<\/li>\n\n\n\n<li>20 \u00f7 2 = 10, remainder 0<\/li>\n\n\n\n<li>10 \u00f7 2 = 5, remainder 0<\/li>\n\n\n\n<li>5 \u00f7 2 = 2, remainder 1<\/li>\n\n\n\n<li>2 \u00f7 2 = 1, remainder 0<\/li>\n\n\n\n<li>1 \u00f7 2 = 0, remainder 1<br>\u21d2 <strong>1010001<\/strong><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p><strong>Octal (base-8)<\/strong> uses digits 0\u20137. Group binary digits in 3s (from right), then convert to octal. For 81:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Binary: <code>1010001<\/code> \u2192 Pad to 8 bits: <code>01010001<\/code><\/li>\n\n\n\n<li>Groups: <code>010 100 001<\/code> \u2192 2 4 1 \u2192 Octal = <strong>121<\/strong><\/li>\n<\/ul>\n\n\n\n<p><strong>Hexadecimal (base-16)<\/strong> uses 0\u20139 and A\u2013F (where A = 10 to F = 15). Group binary digits in 4s:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Binary of 81: <code>01010001<\/code> \u2192 Groups: <code>0101 0001<\/code> \u2192 5 and 1 \u2192 Hex = <strong>51<\/strong><\/li>\n<\/ul>\n\n\n\n<p>These conversions are essential in computing, as binary is used for logic, octal and hex for simplifying binary representation in programming and hardware.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Convert decimal number 81 and 124 into binary, octal and hexadecimal number system? The correct answer and explanation is: Let&#8217;s convert the decimal numbers 81 and 124 into binary, octal, and hexadecimal number systems, and then provide an explanation. \u2705 Conversions \ud83d\udd39 Decimal 81: \ud83d\udd39 Decimal 124: \u2705 Summary Table Decimal Binary Octal Hexadecimal 81 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-28058","post","type-post","status-publish","format-standard","hentry","category-quiz-questions"],"_links":{"self":[{"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/posts\/28058","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/comments?post=28058"}],"version-history":[{"count":1,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/posts\/28058\/revisions"}],"predecessor-version":[{"id":28061,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/posts\/28058\/revisions\/28061"}],"wp:attachment":[{"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/media?parent=28058"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/categories?post=28058"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gaviki.com\/blog\/wp-json\/wp\/v2\/tags?post=28058"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}