XOR

차노·2023년 8월 17일
0

JS

목록 보기
58/96

XOR stands for 'exclusive or' and it's a logical operattion that returns true if the number of true operands is odd

or를 제외하는 것을 의미하며, true operands의 수가 홀수이면, true를 반환하는 논리 연산자이다.

In other words, it returns true if the operands are not eqal.

다른 말로, operands가 동일하지 않을 경우 true를 반환한다.

In binary representation, XOR compares the corresponding bits of two operands.

바이너리 표현식에서, xor은 두 개의 Operands의 상응하는 비트를 비교한다.

In programming, XOR is often used for tsaks like toggling bits, swapping values, and checking for odd parity in digital systems.

프로그래밍에서, XOR은 디지털 시스템에서 홀수에 대해 확인하는 토글링 비트와 같은 작업을 하는 데 사용된다.

I asked it to Chat Gpt.

0개의 댓글