Given an integer N, the task is to check if its equivalent binary number has an equal frequency of consecutive blocks of 0 and 1.… Read More
Tag Archives: binary-representation
Given an integer n, the task is to count the total lucky numbers smaller than or equal to n. A number is said to be… Read More
Given that N person (numbered 1 to N) standing as to form a circle. They all have the gun in their hand which is pointed… Read More
Given a number N. The task is to find the sum of the decimal equivalent of all the pairs formed from the binary representation of… Read More
Binary is a base-2 number system that uses two states 0 and 1 to represent a number. We can also call it to be a… Read More
The IEEE Standard for Floating-Point Arithmetic (IEEE 754) is a technical standard for floating-point computation which was established in 1985 by the Institute of Electrical… Read More
When doing addition/subtraction on binary numbers in other representations we need to apply different logics (circuits) to perform addition and subtraction. In 2s-complement representation, we… Read More
In Computer Architecture 2’s Complement format is widely used. The discussion of overflow here mainly will be with respect to 2’s Complement representation for signed… Read More
Prerequisite – Base conversions, 1’s and 2’s complement of a binary number, 2’s complement of a binary string Suppose the following fragment of code, int… Read More
Given two integers ‘L’ and ‘R’, write a program to find the total numbers that are having prime number of set bits in their binary… Read More
Given a decimal number n. Find the gray code of this number in decimal form. Examples: Input : 7 Output : 4 Explanation: 7 is represented as… Read More
Given the Binary code of a number as a decimal number, we need to convert this into its equivalent Gray Code. Assume that the binary number… Read More
Given n, find the greatest number which is strictly not more than n and whose binary representation consists of m consecutive ones, then m-1 consecutive… Read More
The problem is to check whether the decimal representation of the given binary number is divisible by 10 or not. Take care, the number could… Read More
Given two integers ‘L’ and ‘R’, we need to write a program that finds the count of numbers having the prime number of set bits… Read More