May 13, 2025 · 1 min read · В силу тривиальности понимания арифметических операций, нет смысла дополнительно интерпретировать их авторские описания, поэтому в дополнение к предыдущим двум постам просто список всех символов, классифицируемых автором категорией “Арифметика“ со сс...
Join discussionMay 24, 2024 · 8 min read · LOOPS Why Loops? A loop in programming is a fundamental concept used to repeat a block of code multiple times. There are different types of loops, each serving various purposes and offering different ways to control the repetition process. In C++ the...
PPurity commented
Jan 8, 2024 · 4 min read · This piece presents an utterly complicated topic - IEEE754 Standard - in its distilled form, so it's relatively short. I've been prohibited from sharing any of the problems from my lab sessions. Apologies for that. But I've tried hard to subside the ...
Join discussion
Jan 3, 2024 · 4 min read · This piece is a continuation of my previous post on the Computer Number System. Signs For the sake of simplicity, let's suppose all our computers have 8-bit processors. Consider a decimal, 15. In 8 bits, the binary for 15 is 00001111; there's no doub...
Join discussion
Dec 26, 2023 · 5 min read · 'Week 1' at cs.code.in - engineering redefined. The following piece covers the basics of 'Computer Number System.' So, dive in to exercise your intellect🧠 Let's learn to count... again. We are acutely familiar with the symbols: 0, 1, 2, …, 9, which...
Join discussion
Nov 17, 2023 · 8 min read · When we think about numbers, we often picture them in our familiar decimal system (base 10), consisting of digits from 0 to 9. However, in the world of computers, the fundamental language is binary (base 2), which uses just two digits: 0 and 1. In th...
Join discussion
Oct 4, 2023 · 7 min read · INTRODUCTION When I started to learn programming everything seemed to be simple and easy except for floating-point arithmetic. Yeah, you may argue with me that floating-point numbers are just numbers with decimal places like 1.1 and why would someone...
Join discussion
Jul 17, 2023 · 1 min read · To convert decimal numbers to octal numbers, you can follow these steps: 1. Divide the decimal number by 8. 2. Write down the remainder. 3. Divide the quotient by 8. 4. Write down the remainder. 5. Repeat steps 3 and 4 until the quotient is zero. 6. ...
Join discussion
Jun 15, 2023 · 2 min read · GitHub Repository: Konversi Bilangan Repositori ini berisi implementasi dalam bahasa JavaScript yang menyediakan fungsi untuk melakukan konversi bilangan antara sistem bilangan desimal, biner, oktal, dan heksadesimal. Repositori ini dikembangkan oleh...
Join discussion