Bit mailako eragiketak

Bit mailako eragiketak kalkulatzeko, erabili honako eragileak.

Eragiketa batzuen emaitza hitz-tamainaren araberakoak izango dira. Hitz-tamaina ezartzeko, sakatu leihoaren goiko eskuineko menu-botoia eta hautatu Hobespenak.

Buttons for the following symbols and to set the word size are available in programming mode.

Bitwise conjunction can be calculated using the ∧ or AND operators.

010011₂ ∧ 110101₂

010011₂ AND 110101₂

Bitwise disjunction can be calculated using the ∨ or OR operators.

010011₂ ∨ 110101₂

010011₂ OR 110101₂

Bitwise exclusive disjunction can be calculated using the ⊻, ⊕ or XOR operators.

010011₂ ⊻ 110101₂

010011₂ XOR 110101₂

Bitwise complement for the set word size can be calculated using the ¬, ~ or NOT operators.

¬ 010011₂

NOT 010011₂

Bitwise alternative denial for the set word size can be calculated using the ⊼ or NAND operators.

010011₂ ⊼ 110101₂

010011₂ NAND 110101₂

Bitwise joint denial for the set word size can be calculated using the ⊽ or NOR operators.

010011₂ ⊽ 110101₂

010011₂ NOR 110101₂

Bitwise biconditional for the set word size can be calculated using the ⊙, XNOR or NXOR operators.

010011₂ ⊙ 110101₂

010011₂ XNOR 110101₂