If you have the following variables
Dim leftValue As Integer = 5
Dim rightValue As Integer = 2
Dim value As Integer = 0
Addition Performed by the plus sign +.
value = leftValue + rightValue
'Output the following:
'7
Subtraction Performed by the minus sign -.
value = leftValue - rightValue
'Output the following:
'3
Multiplication Performed by the star symbol *.
value = leftValue * rightValue
'Output the following:
'10
Division Performed by the forward slash symbol /.
value = leftValue / rightValue
'Output the following:
'2.5
Integer Division Performed by the backslash symbol \.
value = leftValue \ rightValue
'Output the following:
'2
Modulus Performed by the Mod keyword.
value = leftValue Mod rightValue
'Output the following:
'1
Raise to a Power of Performed by the ^ symbol.
value = leftValue ^ rightValue
'Output the following:
'25