Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

68
votes
24answers
3k views

Why do we usually use `||` not `|`, what is the difference?

I'm just wondering why we usually use logical OR || between two booleans not bitwise OR |, though they are both working well. I mean, look at the following: if(true | true) // pass if(true | ...
33
votes
6answers
1k views

why -3==~2 in C#

Unable to understand. Why output is "equal" code: if (-3 == ~2) Console.WriteLine("equal"); else Console.WriteLine("not equal"); output: equal
25
votes
10answers
2k views

A clear, layman's explanation of the difference between | and || in c#?

Ok, so I've read about this a number of times, but I'm yet to hear a clear, easy to understand (and memorable) way to learn the difference between: if (x | y) and if (x || y) ..within the ...
22
votes
40answers
2k views

Real world use cases of bitwise operators

What are some real world use cases of the following bitwise operators? AND XOR NOT OR
22
votes
9answers
2k views

What are bitwise operators?

I'm someone who writes code just for fun and hasn't really delved into it in either an academic or professional setting, so stuff like this really escapes me. I was reading an article about ...
20
votes
2answers
633 views

Why is ( Infinity | 0 ) === 0?

I'm fiddling around with bitwise operators in JavaScript and there is one thing I find remarkable. The bitwise or operator returns 1 as output bit if one of the two input bits are 1. So doing x | 0 ...
16
votes
3answers
568 views

What good does zero-fill bit-shifting by 0 do? (a >>> 0)

I just came across this piece in the Mozilla Javascript documentation: var len = this.length >>> 0; I don't quite understand why this is being done. What good does zero-fill right ...
14
votes
5answers
789 views

Is there a built-in function to reverse bit order

I've come up with several manual ways of doing this, but i keep wondering if there is something built-in .NET that does this. Basically, i want to reverse the bit order in a byte, so that the least ...
12
votes
4answers
260 views

Rounded division by power of 2

I'm implementing a quantization algorithm from a textbook. I'm at a point where things pretty much work, except I get off-by-one errors when rounding. This is what the textbook has to say about ...
12
votes
4answers
1k views

Is it possible to implement bitwise operators using integer arithmetic?

I am facing a rather peculiar problem. I am working on a compiler for an architecture that doesn't support bitwise operations. However, it handles signed 16 bit integer arithmetics and I was wondering ...
11
votes
7answers
2k views

Finding the exponent of n = 2**x using bitwise operations [logarithm in base 2 of n]

Is there a straightforward way to extracting the exponent from a power of 2 using bitwise operations only? EDIT: Although the question was originally about bitwise operations, the thread is a good ...
11
votes
3answers
7k views

C# bitwise rotate left and rotate right

What is the C# equivalent (.NET 2.0) of _rotl and _rotr from C++?
10
votes
4answers
359 views

Is there any difference between && and & with bool(s)?

In C++, is there any difference between doing && (logical) and & (bitwise) between bool(s)? bool val1 = foo(); bool val2 = bar(); bool case1 = val1 & val2; bool case2 = val1 ...
10
votes
8answers
247 views

How to represent 4 boolean possibilities in a single value

I want to store 4 boolean possibilities in a single value. For e.g., I want a single value that tells whether a person is: IsSingle IsGraduate IsMale IsLookingForPartner So is it good to store ...
10
votes
13answers
931 views

practical applications of bitwise operations

What have you used bitwise operations for? why are they so handy? can someone please recommend a VERY simple tutorial?
10
votes
2answers
762 views

why are Javascript negative numbers not always true or false?

-1 == true; //false -1 == false //false -1 ? true : false; //true Can anyone explain the above output? I know I could work round this by comparing to 0 but I'm interested. I'd expect ...
10
votes
7answers
4k views

Good tutorials on Bitwise operations in Java

Can anyone please point me to good online tutorials on Bitwise Operations (preferably in Java)? Before anyone write LMGTFY, I've already Googled it but couldn't find one with good examples. Java's own ...
10
votes
3answers
2k views

Effect of a Bitwise Operator on a Boolean in Java

The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the full range of values ...
10
votes
4answers
6k views

How does the bitwise complement (~) operator work?

Why is it that ~2 is -3?
9
votes
3answers
463 views

Bitwise Operations On Large Strings In PHP

Here's my problem. I'm currently trying to implement a few Cryptography standards in PHP for compatibility reasons. The one I'm working on now is SHA256 and SHA512. They are both reasonably ...
9
votes
5answers
637 views

Why SELECT 2^3 returns 1 in SQL Server?

Why SELECT 2^3 returns 1 in SQL Server ? Above question was an interview question i came across and could not get why does it return 1? After GOOGLEing a bit , i got to know it is a bitwise ...
9
votes
1answer
223 views

What does x >>> 0 do? [closed]

Possible Duplicate: What good does zero-fill bit-shifting by 0 do? (a >>> 0) I've been trying out some functional programming concepts in a project of mine and I was reading about ...
9
votes
3answers
232 views

Fastest way to loop every number with conditions

Given a 64 bit integer, where the last 52 bits to be evaluated and the leading 12 bits are to be ignored, what is the fastest way to loop every single combination of 7 bits on and all other bits off? ...
8
votes
2answers
127 views

32 bit unsigned javascript bitwise operation is 1 short

Why does ((255<<24)|(255<<16)|(255<<8)|255)>>>0 == 4294967295 when Math.pow(256,4) == 4294967296 Notice that the bitwise operation is 1 short. Why is this?!
8
votes
5answers
399 views

Bitwise operator for simply flipping all bits in an integer?

I have to flip all bits in a binary representation of an integer. Given: 10101 The output should be 01010 What is the bitwise operator to accomplish this when used with an integer? For example, ...
8
votes
11answers
1k views

Would you use num%2 or num&1 to check if a number is even?

Well, there are at least two low-level ways of determining whether a given number is even or not: 1. if (num%2 == 0) { /* even */ } 2. if ((num&1) == 0) { /* even */ } I consider the second ...
8
votes
4answers
1k views

Equivalent of Java triple shift operators (>>> and <<<) in C#?

What is the equivalent (in C#) of Java's >>> operator? Just to clarify, I'm not referring to the >> and << operators.
7
votes
3answers
132 views

Why doesn't the operator module have a function for logical or?

In Python 3, operator.or_ is equivalent to the bitwise &, not the logical or. Why is there no operator for the logical or?
7
votes
1answer
178 views

Why use a bitwise AND here?

I was reading through the hadoop code and found this line in a partitioner. (key.hashCode() & Integer.MAX_VALUE) % numReduceTasks Why are they using the bitwise AND?
7
votes
3answers
562 views

Reading and interpreting data from a binary file in Python

i want to read a file byte by byte and check if the last bit of each byte is set: #!/usr/bin/python def main(): fh = open('/tmp/test.txt', 'rb') try: byte = fh.read(1) while ...
7
votes
3answers
230 views

Construction an logical expression which will count bits in a byte

When interviewing new candidates, we usually ask them to write a piece of C code to count the number of bits with value 1 in a given byte variable (e.g. the byte 3 has two 1-bits). I know all the ...
7
votes
8answers
604 views

Getting 32 bit words out of 64-bit values in C/C++ and not worrying about endianness

It's my understanding that in C/C++ bitwise operators are supposed to be endian independent and behave the way you expect. I want to make sure that I'm truly getting the most significant and least ...
7
votes
1answer
2k views

XAML 'NOT' operator?

<Button IsEnabled="{Binding (Not IsDisabled)}" /> Is there a way to do it with pure xaml, or I will have to do it via code? PS. I asked the question knowing that I can create a boolean ...
6
votes
12answers
285 views

What does >> and 0xfffffff8 mean?

I was told that (i >> 3) is faster than (i/8) but I can't find any information on what >> is. Can anyone point me to a link that explains it? The same person told me "int k = i/8, ...
6
votes
3answers
665 views

what does |= (single pipe equal) and &=(single ampersand equal) mean in c# (csharp)

in below lines : //Folder.Attributes = FileAttributes.Directory | FileAttributes.Hidden | FileAttributes.System | FileAttributes.ReadOnly; Folder.Attributes |= FileAttributes.Directory | ...
6
votes
7answers
245 views

Why hasn't my variable changed after applying a bit-shift operator to it?

int main() { int i=3; (i << 1); cout << i; //Prints 3 } I expected to get 6 because of shifting left one bit. Why does it not work?
6
votes
4answers
298 views

How to get the logical right binary shift in python

As revealed by the title. In JavaScript there is a specific operator '>>>'. For example, in JavaScript we will have the following result: (-1000) >>> 3 = 536870787 (-1000) >> 3 = -125 1000 >>> 3 = ...
6
votes
4answers
344 views

What is the most portable way to get/set highest bit of an integer in GNU C

What is the most portable way to get/set highest bit of an integer in GNU C? This is a Bloomberg interview question. I didn't give best answer at that time. Anyone can answer it? Thanks
6
votes
6answers
621 views

Why use the Bitwise-Shift operator for values in a C enum definition?

Apple sometimes uses the Bitwise-Shift operator in their enum definitions. For example, in the CGDirectDisplay.h file which is part of Core Graphics: enum { kCGDisplayBeginConfigurationFlag = (1 ...
6
votes
7answers
534 views

The opposite of 2 ^ n

The function a = 2 ^ b can quickly be calculated for any b by doing a = 1 << b. What about the other way round, getting the value of b for any given a? It should be relatively fast, so logs are ...
5
votes
2answers
112 views

Can parentheses in C cause implicit cast?

Background The last time I asked about whether parentheses were causing implicit cast (here), @pmg was nice enough to point out that "Nothing in C is done below int" But there, the discussion was ...
5
votes
2answers
93 views

Can parentheses in C change the result type of operands of a bitwise operation?

I have fed the following code through a static analysis tool: u1 = (u1 ^ u2); // OK u1 = (u1 ^ u2) & u3; // NOT OK u1 = (u1 ^ u2) & 10; // NOT OK u1 = (u1 ^ u2) & 10U; // NOT OK u1 = ...
5
votes
2answers
171 views

What is the most efficient way of finding the index of the left/right-most unset bit in Java?

Let's assume that we have int x = 371, that is in binary format 101110011. I want to find the index of the left-most unset bit (in this case 7), and the index of the right-most unset bit (in this case ...
5
votes
2answers
123 views

Set digit of a hexadecimal number

How can I set a digit in a hexadecimal number? I currently have this code: int row = 0x00000000; row |= 0x3 << 8; row |= 0x2 << 4; row |= 0x1 << 0; printf("Row: 0x%08x", row); ...
5
votes
7answers
462 views

int max = ~0; What does it mean?

int max = ~0; What does it mean?
5
votes
7answers
410 views

Understanding the behavior of a single ampersand operator (&) on integers

I understand that the single ampersand operator is normally used for a 'bitwise AND' operation. However, can anyone help explain the interesting results you get when you use it for comparison between ...
5
votes
10answers
242 views

How does this C# operator work in this code snippet?

I found this code snippet on SO (sorry I don't have the link to the question/answer combo) bool isDir = (File.GetAttributes(source) & FileAttributes.Directory) == FileAttributes.Directory; ...
5
votes
5answers
816 views

C question: off_t (and other signed integer types) minimum and maximum values

I occasionally will come across an integer type (e.g. POSIX signed integer type off_t) where it would be helpful to have a macro for its minimum and maximum values, but I don't know how to make one ...
5
votes
5answers
392 views

How can I check if a signed integer is positive?

Using bitwise operators and I suppose addition and subtraction, how can I check if a signed integer is positive (specifically, not negative and not zero)? I'm sure the answer to this is very simple, ...
5
votes
6answers
390 views

What is the point of the logical operators in C?

I was just wondering if there is an XOR logical operator in C (something like && for AND but for XOR). I know I can split an XOR into ANDs, NOTs and ORs but a simple XOR would be much better. ...

1 2 3 4 5 7