Answer:
False: There are reasons to put comments in our code. We should have the habit of that.
Explanation:
- sometimes when we start to debug our program due to some error in execution, we don't recognize properly which code we have written for what purpose.
- if we distribute the code to others as a team, others get the intention of our code more clearly due to comments.
- The code can be reused taking it's sections to form an other program, where the comments has a vital role.
<span>Truth tables are diagrams used in mathematics and logic to help describe the truth of an entire expression based on the truth of its parts.
A truth table shows all the possible combinations (outputs) that can be produced from the given inputs. They are mainly used in Boolean algebra.</span>
Answer:
the answer is a network because the others are for different things
Most definitely not! A || B is A OR B, if A is true OR B is true, the statement will be true. A && !B is A AND !B, only if A is true AND B is false will the statement be true. With OR, B can be true and the statement will pass.