Navigation
  • Home
  • Recent
  • Most Active
  • Popular
  • Blog
  • Credits
  • RSS
  •   Interaction
  • Register
  • Statistics
  •   Help
  • Suggestions
  • Contact Us
  • How to Edit
  • Help



  • [Edit]



    In computer science, conditional statements are a vital part of a programming language. These statements are requests to the computer to make an execution choice based on a given condition.

    One form is the If-Then clause, sometimes seen as


    If (condition) Then
    (statements)
    Else
    (statements)
    End If

    It works this way - when the computer finds an If (a reserved word), it waits for a data comparison, for example, x = 0 and evaluates the condition. If the condition is true, the statement block following the Then (another reserved word) shall be executed, otherwise the execution shall continue in the following statement block.

    Depending on the language, the If may use Then, brackets, and another clause called Else or ElseIf.

    There are many other conditional statements in programming languages, however, all of them follow these principles. Other conditional statements include switch statements, case statements and statements with guards.


        Conditional statement
            See also

    top

    See also







     
    Search more:
     

       
    Source Privacy License Download Contact Us Atlas
    Scientus.org Dictionary (Yet Another Wiki) RC : 1.39
    MIT OpenCourseWare
    This article is licensed under the GNU Free Documentation License [copyleft]. It uses material from the Wikipedia article "Conditional statement". link