QA Wizard Pro supports the following operators.
| Operator | Description | More information |
|---|---|---|
| = | Assignment | Assignment operator |
| + | Adds two expressions | Addition operator |
| - | Subtracts two numbers | Subtraction operator |
| * | Multiplies two numbers | Multiplication operator |
| / | Divides two numbers | Division operator |
| & | Concatenates two strings | Concatenation operator |
| ^ | Raises a number to the power | Exponentiation operator |
| = | Tests if two values are equal | |
| <> | Tests if two values are not equal | |
| > | Tests if the first value is greater than the second | |
| >= | Tests if the first value is greater than or equal to the second | |
| < | Tests if the first value is less than the second | |
| <= | Tests if the first value is less than or equal to the second | |
| And | Logical AND operation | And operator |
| Or | Logical OR operation | Or operator |
| Not | Logical NOT operation | Not operator |
| Mod | Divides two numbers and returns the remainder | Mod operator |
| Xor | Performs a logical exclusion on two expressions | Xor operator |
| Is | Compares two object reference variables | Is operator |