Skip to content
Adglob Infosystem Pvt Ltd
  • About Us
  • B2B and B2C Database
  • Bulk Email Solution
  • Contact Us
  • Corporate Email Service
  • Database Portfolio
  • Database Process Flow
  • Database Services
  • FAQs
  • Lead Generation
  • Managed Email Campaign Solution
  • Our Clients
  • Privacy Policy
  • Product Blog
  • Request Sample for Free Database
  • Terms & Conditions
  • Web Scrapping
  • Author: K Z

    This author has written 1821 articles
    1. Home>
    2. K Z>
    3. Page 17

    Groovy – Nested If Statement

    • Post author:K Z
    • Post published:December 13, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    Sometimes there is a requirement to have multiple if statement embedded inside of each other. The general form of this statement is − if(condition) { statement #1 statement #2 ...…

    Continue ReadingGroovy – Nested If Statement

    Groovy – If/Else Statement

    • Post author:K Z
    • Post published:December 13, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    The next decision-making statement we will see is the if/else statement. The general form of this statement is − if(condition) { statement #1 statement #2 ... } else{ statement #3 statement #4…

    Continue ReadingGroovy – If/Else Statement

    Groovy – If Statement

    • Post author:K Z
    • Post published:December 13, 2021
    • Post category:Groovy
    • Post comments:2 Comments

    The first decision-making statement is the if statement. The general form of this statement is − if(condition) { statement #1 statement #2 ... } The general working of this statement is that…

    Continue ReadingGroovy – If Statement

    Groovy – Decision Making

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    Decision-making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the…

    Continue ReadingGroovy – Decision Making

    Groovy – Continue Statement

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    The continue statement complements the break statement. Its use is restricted to while and for loops. When a continue statement is executed, control is immediately passed to the test condition…

    Continue ReadingGroovy – Continue Statement

    Groovy – Break Statement

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:1 Comment

    The break statement is used to alter the flow of control inside loops and switch statements. We have already seen the break statement in action in conjunction with the switch statement. The…

    Continue ReadingGroovy – Break Statement

    Groovy – for-in statement

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    The for-in statement is used to iterate through a set of values. The for-in statement is generally used in the following way. for(variable in range) { statement #1 statement #2 … } The following…

    Continue ReadingGroovy – for-in statement

    Groovy – For Statement

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    The for statement is used to iterate through a set of values. The for statement is generally used in the following way. for(variable declaration;expression;Increment) { statement #1 statement #2 … } The classic for…

    Continue ReadingGroovy – For Statement

    Groovy – While Statement

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:0 Comments

    The syntax of the while statement is shown below − while(condition) { statement #1 statement #2 ... } The while statement is executed by first evaluating the condition expression (a Boolean value),…

    Continue ReadingGroovy – While Statement

    Groovy – Loops

    • Post author:K Z
    • Post published:December 11, 2021
    • Post category:Groovy
    • Post comments:4 Comments

    So far Loops, we have seen statements that have been executed one after the other in a sequential manner. Additionally, statements are provided in Groovy to alter the flow of…

    Continue ReadingGroovy – Loops
    • Go to the previous page
    • 1
    • …
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • …
    • 183
    • Go to the next page
    Copyright - OceanWP Theme by OceanWP