Python1 Min Read LetuscrackonJune 7, 2024 Divide by 2 for T times using Bitwise Operators The program must accept two integers N and T as the input. The program must divide the integer N by 2 for T…
Python1 Min Read LetuscrackonJune 7, 2024 Decimal Equivalent of Last X Bits using Bitwise Operators The program must accept two integers N and X as the input. The program must print the decimal equivalent of last X bits in…
Python1 Min Read LetuscrackonJune 7, 2024 Number without Pair using Bitwise Operators The program must accept a list of integers as the input. Among these integers, N/2 pairs (two integers having the same value) are…
C1 Min Read LetuscrackonJune 7, 2024 Integers & Operators The program must accept N integers and a string containing N-1 arithmetic operators (+, -, * and /). The program must form an arithmetic…
C Kickstart1 Min Read LetuscrackonJune 6, 2024 Compare Two integers with Logical NOT and AND Operators (Boolean ) Accept two integers X and Y as the input. The program must print 1 if X and Y are not equal and also Xis greater…