二进制布尔运算英文解释翻译、二进制布尔运算的近义词、反义词、例句
英语翻译:
【计】 binary Boolean operation
分词翻译:
二进制的英语翻译:
binary system
【计】 B; BIN; scale-of-two
【经】 binary
布尔运算的英语翻译:
【计】 Boolean calculation; Boolean operation
网络扩展解释
二进制布尔运算
èr jìn zhì bù ěr yùn suàn
Binary Boolean operations are mathematical operations that manipulate binary values. In programming and computer science, Boolean is a data type consisting of two values, usually denoted as "true" and "false". Binary Boolean operations include AND, OR, XOR, and NOT.
AND
英文解释:A binary operation in which both inputs are true, resulting in a true output.
英文读音:ænd
英文用法:In programming, the AND operation is used to compare two values and returns true if both values are true.
英文例句:If both variables x and y are equal to 1, then x AND y would return 1. (如果变量x和y都等于1,那么x AND y会返回1。)
英文近义词:Logical conjunction
英文反义词:N/A
英文单词常用度:High
OR
英文解释:A binary operation in which at least one input is true, resulting in a true output.
英文读音:ɔr
英文用法:In programming, the OR operation is used to compare two values and returns true if at least one value is true.
英文例句:If variable x is equal to 1 OR variable y is equal to 1, then x OR y would return 1. (如果变量x等于1或者变量y等于1,则x OR y会返回1。)
英文近义词:Logical disjunction
英文反义词:N/A
英文单词常用度:High
XOR
英文解释:A binary operation in which only one input is true, resulting in a true output.
英文读音:ɛks ɔr
英文用法:In programming, the XOR operation is used to compare two values and returns true if only one value is true.
英文例句:If variable x is equal to 1 XOR variable y is equal to 1, then x XOR y would return 1, but if both variables are equal to 1, then x XOR y would return 0. (如果变量x等于1并且变量y等于1,那么x XOR y会返回1,但是如果两个变量都等于1,那么x XOR y就会返回0。)
英文近义词:Exclusive disjunction
英文反义词:N/A
英文单词常用度:Low
NOT
英文解释:A unary operation in which the input is false, resulting in a true output.
英文读音:nɑt
英文用法:In programming, the NOT operation is used to reverse the value of something. If the value is true, NOT would return false and vice versa.
英文例句:NOT variable x would return false if variable x is true, and vice versa. (如果变量x是true,那么NOT x会返回false,反之亦然。)
英文近义词:Negation
英文反义词:N/A
英文单词常用度:High