jagomart
digital resources
picture1_Logic Programming Pdf 190008 | Ch04 Ppt


 166x       Filetype PDF       File size 0.74 MB       Source: websites.delta.edu


File: Logic Programming Pdf 190008 | Ch04 Ppt
objectives programming logic and in this chapter you will learn about design evaluating boolean expressions to make comparisons sixth edition the relational comparison operators andlogic orlogic chapter 4 making selections ...

icon picture PDF Filetype PDF | Posted on 03 Feb 2023 | 2 years ago
Partial capture of text on file.
                                                                                                                       Objectives
                           Programming Logic and                                                  In this chapter, you will learn about:
                                          Design                                                  • Evaluating Boolean expressions to make 
                                                                                                    comparisons
                                     Sixth Edition                                                • The relational comparison operators
                                                                                                  • ANDlogic
                                                                                                  • ORlogic
                                          Chapter 4                                               • Making selections within ranges
                                    Making Decisions                                              • Precedence when combining AND and OR
                                                                                                    operators
                                                                                                  Programming Logic & Design, Sixth Edition                 2
                        Evaluating Boolean Expressions                                               Evaluating Boolean Expressions to 
                                to Make Comparisons                                                     Make Comparisons (continued)
                   • Boolean expression                                                           • Dual-alternative(or binary) selection structure
                      – Value can be only true or false                                              – Provides an action for each of two possible 
                      – Used in every selection structure                                              outcomes
                                                                                                             Figure 4-1 The dual-alternative selection structure
                   Programming Logic & Design, Sixth Edition                 3                    Programming Logic & Design, Sixth Edition                 4
                      Evaluating Boolean Expressions to 
                         Make Comparisons (continued)
                   • Single-alternative(or unary) selection structure
                      – Action is provided for only one outcome
                      – if-then
                             Figure 4-2 The single-alternative selection structure                    Figure 4-3 Flowchart and pseudocode for overtime payroll program
                   Programming Logic & Design, Sixth Edition                 5                    Programming Logic & Design, Sixth Edition                 6
                                                                                                                                                                           1
                                                                                                    Evaluating Boolean Expressions to 
                                                                                                       Make Comparisons (continued)
                                                                                                 • if-then-else decision
                                                                                                     – thenclause
                                                                                                        • Holds the action or actions that execute when the 
                                                                                                          tested condition in the decision is true
                                                                                                     – elseclause
                                                                                                        • Executes only when the tested condition in the 
                                                                                                          decision is false
                  Figure 4-3 Flowchart and pseudocode for overtime payroll program (continued)
                   Programming Logic & Design, Sixth Edition                 7                   Programming Logic & Design, Sixth Edition                 8
                       Using the Relational Comparison 
                                         Operators 
                   • Relational comparison operators
                      – Six types supported by all modern programming 
                        languages
                      – Binary
                      – Two values compared can be either variables or 
                        constants
                   • Trivial expressions
                      – Will always evaluate to the same result
                      – Example: 20 = 20?
                                                                                                                   Table 4-1 Relational comparisons
                   Programming Logic & Design, Sixth Edition                 9                   Programming Logic & Design, Sixth Edition                 10
                       Using the Relational Comparison                                                Using the Relational Comparison 
                                Operators (continued)                                                         Operators (continued)
                  • Any logical situation can be expressed with only three 
                     types of comparisons: = , > , and <
                      – Operators >= and <= are not necessary but make code 
                        more readable
                  • “Not equal” operator
                      – Most confusing of comparisons
                      – Most likely to be different in different languages
                                                                                                               Figure 4-5 Using a negative comparison
                   Programming Logic & Design, Sixth Edition                11                   Programming Logic & Design, Sixth Edition                 12
                                                                                                                                                                          2
                       Using the Relational Comparison                                               Avoiding a Common Error with
                               Operators (continued)                                                         Relational Operators
                                                                                              • Common errors 
                                                                                                  – Using the wrong operator
                                                                                                  – Missing the boundary or limit required for a selection
                 Figure 4-6 Using the positive equivalent of the negative comparison in Figure 4-5
                   Programming Logic & Design, Sixth Edition               13                  Programming Logic & Design, Sixth Edition               14
                             Understanding AND Logic
                  • Compound condition
                     – Asks multiple questions before an outcome is 
                       determined
                  • ANDdecision
                     – Requires that both of two tests evaluate to true
                     – Requires a nested decision (nested if)
                  • Using nested if statements
                     – Second selection structure is contained entirely 
                       within one side of first structure
                     – elseclause paired with last if                                              Figure 4-7 Flowchart and pseudocode for cell phone billing program
                   Programming Logic & Design, Sixth Edition               15                  Programming Logic & Design, Sixth Edition               16
                                                                                                 Nesting  AND Decisions for Efficiency
                                                                                              • When nesting decisions
                                                                                                  – Either selection can come first
                                                                                              • Performance time can be improved by asking 
                                                                                                 questions in the proper order
                                                                                              • In an AND decision, first ask the question that is 
                                                                                                 less likely to be true
                                                                                                  – Eliminates as many instances of the second decision 
                                                                                                    as possible
                                                                                                  – Speeds up processing time
                   Figure 4-7 Flowchart and pseudocode for cell phone billing program (continued)
                   Programming Logic & Design, Sixth Edition               17                  Programming Logic & Design, Sixth Edition               18
                                                                                                                                                                      3
                               Using the AND Operator                                                Using the AND Operator (continued)
                   • Conditional AND operator
                      – Ask two or more questions in a single comparison
                      – Each Boolean expression must be true for entire 
                        expression to evaluate to true
                   • Truth tables
                      – Describe the truth of an entire expression based on 
                        the truth of its parts
                   • Short-circuit evaluation                                                                   Table 4-2 Truth table for the AND operator
                      – Expression evaluated only as far as necessary to 
                        determine truth
                   Programming Logic & Design, Sixth Edition                 19                   Programming Logic & Design, Sixth Edition                 20
                                                                                                     Avoiding Common Errors in an AND
                                                                                                                         Selection
                                                                                                  • Second decision must be made entirely within the 
                                                                                                     first decision
                                                                                                  • In most programming languages, logical AND is a 
                                                                                                     binary operator
                                                                                                      – Requires complete Boolean expression on both 
                                                                                                        sides
                           Figure 4-9 Using an AND operator and the logic behind it
                   Programming Logic & Design, Sixth Edition                 21                   Programming Logic & Design, Sixth Edition                 22
                               Understanding OR Logic                                                 Writing OR Decisions for Efficiency
                   • ORdecision                                                                   • May ask either question first
                      – Take action when one or the other of two conditions is                       – Both produce the same output but vary widely in 
                        true                                                                           number of questions asked
                   • Example                                                                      • If first question is true, no need to ask second
                      – “Are you free for dinner Friday or Saturday?”                             • In an OR decision, first ask the question that is 
                                                                                                    more likely to be true
                                                                                                     – Eliminates as many repetitions as possible of 
                                                                                                       second decision
                   Programming Logic & Design, Sixth Edition                 23                   Programming Logic & Design, Sixth Edition                 24
                                                                                                                                                                            4
The words contained in this file might help you see if this file matches what you are looking for:

...Objectives programming logic and in this chapter you will learn about design evaluating boolean expressions to make comparisons sixth edition the relational comparison operators andlogic orlogic making selections within ranges decisions precedence when combining or continued expression dual alternative binary selection structure value can be only true false provides an action for each of two possible used every outcomes figure single unary is provided one outcome if then flowchart pseudocode overtime payroll program else decision thenclause holds actions that execute tested condition elseclause executes using six types supported by all modern languages values compared either variables constants trivial always evaluate same result example table any logical situation expressed with three...

no reviews yet
Please Login to review.