From 4b7230001ac1ca1d4cece8f8095ca9fc6466d575 Mon Sep 17 00:00:00 2001 From: mkoument Date: Thu, 14 Feb 2019 05:13:53 +0200 Subject: [PATCH] Update index.md (#30306) --- guide/english/logic/logical-operators/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guide/english/logic/logical-operators/index.md b/guide/english/logic/logical-operators/index.md index aa4188ba2c..d682808658 100644 --- a/guide/english/logic/logical-operators/index.md +++ b/guide/english/logic/logical-operators/index.md @@ -76,8 +76,16 @@ You can easily see that the output of the IFF operator in the truth table is the | F | T | T | F | F | | F | F | T | T | T | +## Condensed Tables +For binary operators, a condensed form of truth table is also used, where the row headings and the column headings specify the operands and the table cells specify the result. For example, the condensed table for AND operator (^ sign):
+ +| ^ | F | T | +|---|---|---| +| F | F | T | +| T | T | T | ## Additional Resources - [Logical Operators in Javascript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators) - [Logical Operators in PHP](http://php.net/manual/en/language.operators.logical.php) - [Logical Operators in C++](http://en.cppreference.com/w/cpp/language/operator_logical) +- [Wikipedia, Truth table](https://en.wikipedia.org/wiki/Truth_table)