SlideShare a Scribd company logo
1 of 26
Working with
        Comparison
         Operators


Jesselle Capa

Charles Justine Bool
Comparison Operators
Operators that compare data values
  to produce true or false results.



            ASCII
 Contains a list of characters with
  corresponding unique numeric
         representation
Comparison Operators
Operator         Usage                           Description
   >       lblSales.Caption >   The greater than operator return True Only
           Goal                 if the value on the right.
   <       Pay < 2000.0         The less than operator return True if the
                                value on the left of < is less than the value
                                on the right.
   =       Age = Limit          The equal to operator return True if the
                                value on the both sides of = are equal.
  >=       FirstName >=         The greater than or equal to operator
           “Mike”               return True if the value on the left of >= is
                                greater than or equal to the value on the
                                right.
  <=       Num <=               The less than or equal to operator return
           lblAmt.Caption       True if the value on the left of <= is less
                                than or equal to the value on the right.
  <>       txtAns.text<>        The not equal to operator return True if the
           “Yes”                value on the left of <> is unequal to the
                                value on the right.
Relationship Results
        Relation             Result
          2>1                 True
          3<3                False
         5 > 10               True
   “Apple” <= “Orange”        True
“Macdonald “ < “Mc Donald”    True
          0 >=0               True
          0 <=0               True
          1 <>2               True
          2 >=3              False
Working with If Statement
   The If statement provides logic for the
    application, w/c analyzes data and makes
    decisions based on the analysis.

   The If statement uses comparison operators
    to test data values and performs one of two
    possible actions based on the results of the
    comparison‟s test.

   Without the If statement, the application
    code will sequentially execute . Meaning , one
    statement is executed after another.
The If statement is usually
written in the following
format:

     If comparisonTest Then

          One or more statements

     End If
If Statement and Comparison
   Keep in mind that the body of the If
    statement executes based on the results of
    the comparison test. The statement executes
    if the results is true. Otherwise , the rest of
    the application executes as usual and the If
    statement will be skipped.

   Data that are entered into a text box control
    is treated as a Variant data type . When
    arithmetic is performed with a Variant with
    data type that holds a numeric value . Visual
    Basic will convert such data to a number for
    the calculation purposes.
The If statement's Else Branching

   The If statement with Else is usually written in
    the following format:

            If comparisontest Then

                   one   or   more statements

            Else

                   one   or   more statements

            End If
Compound Comparison with the
         Logical Operators

Operator         Usage                  Description


  And      If (A > B) And (C <   Returns True if both sides
                    D)           of the And are true.


   Or      If (A > B) Or (C <    Returns True if either side
                   D)            of the Or is true.



  Not        If Not (strAns =    Returns the opposite true
                   “Yes”)        or false result.
Example :
Private Sub cmdGetStudentGrade_Click()

„Code for Generating Student's Grade
„Declare Variables
Dim percent As Integer, studentmark As String

„Clear text Box
   txtGrade.Text = ""

„Get Students Mark from inputbox
   percent = InputBox("Enter Students
  Percent")
'Begin if statement
   If percent >= 50 And percent < 60 Then
      studentmark = "C"
   Else percent >= 60 And percent < 70 Then
      studentmark = "B"
   Else percent >= 70 Then
      studentmark = "A"
   Else
      studentmark = "FAIL"
   End If

'Display Output
   txtGrade.Text = studentmark
End Sub
Nesting If-Else Statements

If (intAge = 5) Then
  lblTitle.Caption = “Kindergarten”
Else
  If (intAge = 6) Then
      lblTitle.Caption = “1st Grade”
  Else
      If (intAge = 7) Then
            lblTitle.Caption = “2nd Grade”
If (intAge = 8) Then
      lblTitle.Caption = “3rd Grade”
Else
     If (intAge = 9) Then
           lblTitle.Caption = “4th Grade”
     Else
          If (intAge = 10) Then
              lblTitle.Caption = “5th Grade”
          Else
               If (intAge = 11) Then
                  lblTitle.Caption = “6th Grade”
               Else
lblTitle.Caption   = "Advanced"
                 End If
             End If
          End If
       End If
     End If
  End If
End If
Using Select Case Statement
   The Select Case Statement handles multiple –
    choice conditions better than If-Else . When
    several choices are possible , programmers
    usually use Select Case as a substitute for
    long , nested If-Else , but you may find out
    that it is easier to code and to maintain .
    However , you must avoid using the Select
    Case if you will have a simple If or If-
    Else for the code , unless you need to
    compare against more than two values .
    Otherwise , stick with the simple If and If-
    Else statements
Select Case intAge
 Case 5 : lblTitle.Caption = "Kindergarten"
 Case 6 : lblTitle.Caption = "1st Grade"
 Case 7 : lblTitle.Caption = "2nd Grade"
 Case 8 : lblTitle.Caption = "3rd Grade"
 Case 9 : lblTitle.Caption = "4th Grade"
 Case 10 : lblTitle.Caption = "5th Grade
 Case 11 : lblTitle.Caption = "6th Grade
 Case Else : lblTitle.Caption = "Advanced"
End Select
3 Select Case Optional Formats:
   Select Case Expressions
    Case Is Relation :
       One or more Statements
     Case Is Relation :
       One or more Statements
    [Case Is Relation :
       One or more Statements]
    [Case Is Relation :
       One or more Statements]
   End Else
Select Case Expressions
 Case Value
     One or more Visual   Basic Statements
 Case Value
     One or more Visual   Basic Statements
 [Case Value
     One or more Visual   Basic Statements]
 [Case Value
     One or more Visual   Basic Statements]

End Else
Select Case Expressions

   Case expr1 To expr2 :
     One or more Visual Basic   Statements
   Case expr1 To expr2 :
     One or more Visual Basic   Statements
   [Case expr1 To expr2 :
     One or more Visual Basic   Statements]
   [Case Else :
     One or more Visual Basic   Statements]

End Else
Working with comparison operators
Working with comparison operators
Working with comparison operators
Working with comparison operators

More Related Content

Similar to Working with comparison operators

Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
robertbenard
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
robertbenard
 
Ap Power Point Chpt3 B
Ap Power Point Chpt3 BAp Power Point Chpt3 B
Ap Power Point Chpt3 B
dplunkett
 

Similar to Working with comparison operators (20)

03a control structures
03a   control structures03a   control structures
03a control structures
 
Perl_Part2
Perl_Part2Perl_Part2
Perl_Part2
 
CIS 1403 lab 4 selection
CIS 1403 lab 4 selectionCIS 1403 lab 4 selection
CIS 1403 lab 4 selection
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.ppt11-ScriptsAndConditionals.ppt
11-ScriptsAndConditionals.ppt
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
 
Advanced VB: Review of the basics
Advanced VB: Review of the basicsAdvanced VB: Review of the basics
Advanced VB: Review of the basics
 
Using decision statements
Using decision statementsUsing decision statements
Using decision statements
 
Ch05-converted.pptx
Ch05-converted.pptxCh05-converted.pptx
Ch05-converted.pptx
 
Ch05.pdf
Ch05.pdfCh05.pdf
Ch05.pdf
 
MS Excel 2010 tutorial 5
MS Excel 2010 tutorial 5MS Excel 2010 tutorial 5
MS Excel 2010 tutorial 5
 
Ap Power Point Chpt3 B
Ap Power Point Chpt3 BAp Power Point Chpt3 B
Ap Power Point Chpt3 B
 
Control All
Control AllControl All
Control All
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
FLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHONFLOW OF CONTROL-INTRO PYTHON
FLOW OF CONTROL-INTRO PYTHON
 
Chap 4 c++
Chap 4 c++Chap 4 c++
Chap 4 c++
 
conditional statements.docx
conditional statements.docxconditional statements.docx
conditional statements.docx
 
05. Conditional Statements
05. Conditional Statements05. Conditional Statements
05. Conditional Statements
 
Absolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test BankAbsolute Java 5e Savitch Test Bank
Absolute Java 5e Savitch Test Bank
 
Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
 

More from Sara Corpuz

More from Sara Corpuz (9)

Title, heading and paragraph tags
Title, heading and paragraph tagsTitle, heading and paragraph tags
Title, heading and paragraph tags
 
Creating your 1st html page
Creating your 1st html pageCreating your 1st html page
Creating your 1st html page
 
Visual basic coding
Visual basic codingVisual basic coding
Visual basic coding
 
Program logic formulation
Program logic formulationProgram logic formulation
Program logic formulation
 
Flowcharting and pseudocoding
Flowcharting and pseudocodingFlowcharting and pseudocoding
Flowcharting and pseudocoding
 
Working with visual basic applications
Working with visual basic applicationsWorking with visual basic applications
Working with visual basic applications
 
Building visual basic application
Building visual basic applicationBuilding visual basic application
Building visual basic application
 
Visual basic
Visual basicVisual basic
Visual basic
 
Logic
LogicLogic
Logic
 

Recently uploaded

Recently uploaded (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

Working with comparison operators

  • 1. Working with Comparison Operators Jesselle Capa Charles Justine Bool
  • 2. Comparison Operators Operators that compare data values to produce true or false results. ASCII Contains a list of characters with corresponding unique numeric representation
  • 3. Comparison Operators Operator Usage Description > lblSales.Caption > The greater than operator return True Only Goal if the value on the right. < Pay < 2000.0 The less than operator return True if the value on the left of < is less than the value on the right. = Age = Limit The equal to operator return True if the value on the both sides of = are equal. >= FirstName >= The greater than or equal to operator “Mike” return True if the value on the left of >= is greater than or equal to the value on the right. <= Num <= The less than or equal to operator return lblAmt.Caption True if the value on the left of <= is less than or equal to the value on the right. <> txtAns.text<> The not equal to operator return True if the “Yes” value on the left of <> is unequal to the value on the right.
  • 4. Relationship Results Relation Result 2>1 True 3<3 False 5 > 10 True “Apple” <= “Orange” True “Macdonald “ < “Mc Donald” True 0 >=0 True 0 <=0 True 1 <>2 True 2 >=3 False
  • 5. Working with If Statement  The If statement provides logic for the application, w/c analyzes data and makes decisions based on the analysis.  The If statement uses comparison operators to test data values and performs one of two possible actions based on the results of the comparison‟s test.  Without the If statement, the application code will sequentially execute . Meaning , one statement is executed after another.
  • 6. The If statement is usually written in the following format: If comparisonTest Then One or more statements End If
  • 7. If Statement and Comparison  Keep in mind that the body of the If statement executes based on the results of the comparison test. The statement executes if the results is true. Otherwise , the rest of the application executes as usual and the If statement will be skipped.  Data that are entered into a text box control is treated as a Variant data type . When arithmetic is performed with a Variant with data type that holds a numeric value . Visual Basic will convert such data to a number for the calculation purposes.
  • 8. The If statement's Else Branching  The If statement with Else is usually written in the following format: If comparisontest Then one or more statements Else one or more statements End If
  • 9. Compound Comparison with the Logical Operators Operator Usage Description And If (A > B) And (C < Returns True if both sides D) of the And are true. Or If (A > B) Or (C < Returns True if either side D) of the Or is true. Not If Not (strAns = Returns the opposite true “Yes”) or false result.
  • 10. Example : Private Sub cmdGetStudentGrade_Click() „Code for Generating Student's Grade „Declare Variables Dim percent As Integer, studentmark As String „Clear text Box txtGrade.Text = "" „Get Students Mark from inputbox percent = InputBox("Enter Students Percent")
  • 11. 'Begin if statement If percent >= 50 And percent < 60 Then studentmark = "C" Else percent >= 60 And percent < 70 Then studentmark = "B" Else percent >= 70 Then studentmark = "A" Else studentmark = "FAIL" End If 'Display Output txtGrade.Text = studentmark End Sub
  • 12.
  • 13.
  • 14.
  • 15. Nesting If-Else Statements If (intAge = 5) Then lblTitle.Caption = “Kindergarten” Else If (intAge = 6) Then lblTitle.Caption = “1st Grade” Else If (intAge = 7) Then lblTitle.Caption = “2nd Grade”
  • 16. If (intAge = 8) Then lblTitle.Caption = “3rd Grade” Else If (intAge = 9) Then lblTitle.Caption = “4th Grade” Else If (intAge = 10) Then lblTitle.Caption = “5th Grade” Else If (intAge = 11) Then lblTitle.Caption = “6th Grade” Else
  • 17. lblTitle.Caption = "Advanced" End If End If End If End If End If End If End If
  • 18. Using Select Case Statement  The Select Case Statement handles multiple – choice conditions better than If-Else . When several choices are possible , programmers usually use Select Case as a substitute for long , nested If-Else , but you may find out that it is easier to code and to maintain . However , you must avoid using the Select Case if you will have a simple If or If- Else for the code , unless you need to compare against more than two values . Otherwise , stick with the simple If and If- Else statements
  • 19. Select Case intAge Case 5 : lblTitle.Caption = "Kindergarten" Case 6 : lblTitle.Caption = "1st Grade" Case 7 : lblTitle.Caption = "2nd Grade" Case 8 : lblTitle.Caption = "3rd Grade" Case 9 : lblTitle.Caption = "4th Grade" Case 10 : lblTitle.Caption = "5th Grade Case 11 : lblTitle.Caption = "6th Grade Case Else : lblTitle.Caption = "Advanced" End Select
  • 20. 3 Select Case Optional Formats: Select Case Expressions Case Is Relation : One or more Statements Case Is Relation : One or more Statements [Case Is Relation : One or more Statements] [Case Is Relation : One or more Statements] End Else
  • 21. Select Case Expressions Case Value One or more Visual Basic Statements Case Value One or more Visual Basic Statements [Case Value One or more Visual Basic Statements] [Case Value One or more Visual Basic Statements] End Else
  • 22. Select Case Expressions Case expr1 To expr2 : One or more Visual Basic Statements Case expr1 To expr2 : One or more Visual Basic Statements [Case expr1 To expr2 : One or more Visual Basic Statements] [Case Else : One or more Visual Basic Statements] End Else