Answer the following statements true (T) or false (F)
1. Boolean expressions are named in honor of the English rock star James Boole, who developed his mathematical theories while studying instrument acoustics.
2. The equality operator consists of just one equals sign (=).
3. In code we write a dual-alternative decision structure as an if-else statement.
4. It is often true that both sets of conditionally executed statements are executed in an if-else statement.
5. For debugging purposes, it’s important to use proper alignment and indentation in a nested if statement.
1. false
2. false
3. true
4. false
5. true
You might also like to view...
The inside color of a shape is the ________
A) shape color B) fill color C) shape fill D) theme fill
What is the fully-qualified name of the PINE enum constant?
Given the following declaration: ``` enum Tree ( OAK, MAPLE, PINE ) ``` a. enum.PINE b. PINE c. Tree.PINE d. enum.Tree.PINE