Definition of Truth-Table Elements The following lists the code generated out of a Truth-Table: ● The expression of the format: “if(<Boolean>==true)” is generated as “if(<Boolean>).” ● The expression of the format: “if(<Boolean>==false)” is generated as “if(!<Boolean>).” ● The expression of the format “if(true)” generates the expression under the “if” without an “if” statement.
The following lists the code generated out of a Truth-Table: