Search results

Results 1-20 of 40

Page: Prev 1 2 Next

  • ! (exclamation mark)
    Exclamation mark. Precisely what it does in a programming language depends on the specific language.
  • spacer
  • # (hash) (1)
    Hash. Precisely what it does in a programming language depends on the specific language.
  • spacer
  • # (hash) (2)
    Hash.
  • spacer
  • $ (dollar)
    Dollar sign. Precisely what it does in a programming language depends on the specific language.
  • spacer
  • & (ampersand)
    Ampersand. Precisely what it does in a programming language depends on the specific language.
  • spacer
  • && (ampersand, ampersand)
    Logical AND operator. If both expressions are true, the result is also true.
  • spacer
  • ( (opening bracket)
    Opening bracket, or parenthesis, used, for example, to group together the elements of an expression.
  • spacer
  • (I) email (you)
    A way of sending a message using a computer or other device to someone else who has suitable equipment and an email address.
  • spacer
  • (you) email (me)
    A way of receiving a message using a computer or other device to someone else who has suitable equipment and an email address.
  • spacer
  • ) (closing bracket)
    Closing bracket, or parenthesis, used, for example, to group together the elements of an expression.
  • spacer
  • * (asterisk)
    Asterisk. Precisely what it does in a programming language depends on the specific language. Most commonly used to indicate multiplication.
  • spacer
  • + (plus) (1)
    Plus sign. Indicates addition of two or more items.
  • spacer
  • + (plus) (2)
    Plus sign. Indicates addition of two or more items.
  • spacer
  • ++ (plus, plus)
    In postfix notation, an operator which increases indicates increasing (increments) the value of a variable. So var++ is the same as var=var+1.
  • spacer
  • - (hyphen, dash)
    Hyphen. Precisely what it does in a programming language depends on the specific language.
  • spacer
  • - (minus)
    Minus. Indicates a subtraction operation, subtracting one thing, such as a variable, from another.
  • spacer
  • -- (minus, minus)
    In postfix notation, an operator which reduces (decrements) the value of a variable. So var-- is the same as var=var-1.
  • spacer
  • . (decimal point, full stop)
    Decimal point.
  • spacer
  • / (forward slash)
    In a URL, it separates the different parts of the address, e.g. http://www.bbc.co.uk/tv
  • spacer
  • / (forward slash)
    Forward slash. Precisely what it does in a programming language depends on the specific language. Commonly used to indicate division.