memrootじしょ
英和翻訳
XOR
Every
XOR
[ˈɛksɔːr]
エックスオア
1.
二つの命題やビットのどちらか一方のみが真である場合に全体が真となる論理演算。
二つの入力(命題やビット)が異なる場合のみ出力が真(または1)となり、同じ場合は偽(または0)となる論理操作です。
The
XOR
gate
outputs
true
if
its
inputs
are
different.
(XORゲートは入力が異なる場合に真を出力します。)
The XOR gate
XOR演算を行う論理ゲートを指します。
outputs true
真(true)の値を結果として出します。
if its inputs are different
その入力が互いに異なる場合。
In
computer
science,
XOR
is
frequently
used
for
various
operations,
including
error
detection
and
encryption.
(コンピューターサイエンスでは、XORはエラー検出や暗号化を含む様々な操作に頻繁に利用されます。)
In computer science
コンピューター科学の分野において。
XOR is frequently used
XORは頻繁に使用されます。
for various operations
様々な操作のために。
including error detection and encryption
エラー検出や暗号化を含みます。
If
you
XOR
a
number
with
itself,
the
result
is
always
zero.
(ある数とそれ自身をXORすると、結果は常にゼロになります。)
If you XOR a number
ある数に対してXOR演算を行う場合。
with itself
その数自身と。
the result is always zero
結果は常にゼロになります。
Bitwise
XOR
operations
are
fundamental
in
many
algorithms.
(ビットごとのXOR演算は、多くのアルゴリズムにおいて基本となります。)
Bitwise XOR operations
ビット単位で行われるXOR演算。
are fundamental
根本的、基本的なものです。
in many algorithms
多くのアルゴリズムにおいて。
The
exclusive
OR
(XOR)
differs
from
the
inclusive
OR
because
it
doesn't
allow
both
inputs
to
be
true.
(排他的論理和(XOR)は、両方の入力が真であることを許さないため、包括的論理和(OR)とは異なります。)
The exclusive OR (XOR)
排他的論理和(XOR)。
differs from
~とは異なります。
the inclusive OR
包括的論理和(通常のOR)。
because it doesn't allow both inputs to be true
両方の入力が真になることを許さないため。
Programming
languages
often
use
the
caret
symbol
(^)
for
the
XOR
operator.
(プログラミング言語では、XOR演算子にハット記号(^)がよく使用されます。)
Programming languages
プログラミング言語。
often use
よく使用します。
the caret symbol (^)
キャレット記号(^)。
for the XOR operator
XOR演算子として。
関連
OR
AND
NOT
logic gate
boolean algebra
exclusive OR