Operators in Julia are the mathematical symbols that are used to perform operations on variables and values. These symbols are used to carry out arithmetic and logical computations. Variables on which the operators perform operations are termed as Operands. In other words, we can say that an operator operates the operands.
For example, consider the below statement:
c = a + b;
Here, ‘+’ is the operator known as the addition operator and ‘a’ and ‘b’ are operands. The addition operator tells the compiler to add both of the operands ‘a’ and ‘b’.
Types of Operators
Operators in Julia are of Six types:
Arithmetic operators are used to perform arithmetic/mathematical operations on operands. These operators include the process of addition, subtraction, multiplication, division, etc. Examples: (+, -, *, /, %, +x, -x).
Arithmetic operators are of two types:
- Unary Operators: Operators that operate or work with a single operand are unary operators. For example: (+x, -x) i.e. unary plus and unary minus.
- Binary Operators: Operators that operate or work with two operands are binary operators. For example: (+, –, *, /)
Operator |
Description |
Syntax |
+(unary plus) |
Unary plus: Identity operation |
+x |
-(unary minus) |
Unary minus: Performs negation on operand |
-x |
+ |
Binary plus: adds two operands |
x + y |
– |
Binary minus: subtracts two operands |
x – y |
* |
Multiplication(times): multiplies two operands |
x * y |
/ |
Division (float): divides the first operand by the second and returns float value |
x / y |
÷ |
Division (Integer): divides the first operand by the second and returns integer value |
x ÷ y |
\ |
Division (Inverse): divides the second operand by the first(y/x) |
x \ y |
^ |
Power: Raises x to the yth power |
x ^ y |
% |
Modulus: returns the remainder when first operand is divided by the second |
x % y |
! |
Negation: Changes bool value i.e. from true to false and vice versa |
x % y |
a = 9
b = 4
println( "a = " , a)
println( "b = " , b)
add = a + b
println( "Binary Addition: " , add)
sub = a - b
println( "Binary Subtraction: " , sub)
mul = a * b
println( "Binary Multiplication: " , mul)
div1 = a / b
println( "Binary Division: " , div1)
div2 = a ÷ b
println( "Integer Division: " , div2)
div3 = a \ b
println( "Inverse Division: " , div3)
pow = a ^ b
println( "Power Operation: " , pow )
mod = a % b
println( "Modular Division: " , mod)
|
Output:
a = 9
b = 4
Binary Addition: 13
Binary Subtraction: 5
Binary Multiplication: 36
Binary Division: 2.25
Integer Division: 2
Inverse Division: 0.4444444444444444
Power Operation: 6561
Modular Division: 1
Bitwise operators are used to perform manipulation of individual bits of a number. They can be used with any of the integer types. Examples: (~, &, |, >>, <<, etc.)
Operator |
Description |
Syntax |
~ |
Bitwise NOT |
~x |
& |
Bitwise AND |
x & y |
| |
Bitwise OR |
x | y |
⊻ |
Bitwise XOR |
x ⊻ y |
>>> |
Logical right shift |
x >>> y |
>> |
Bitwise right shift |
x >> y |
<< |
Bitwise/Logical left shift |
x << y |
a = 48
b = 67
println(~a)
println(a & b)
println(a | b)
println(a ? b)
println(a >>> 2 )
println(a >> 2 )
println(a << 2 )
|
Output:
-49
0
115
115
12
12
192
Logical Operators are used to combine two or more conditions/constraints or to complement the evaluation of the original condition into consideration. The result of the operation of a logical operator is a boolean value either true or false. For example, the logical AND represented as ‘&&’ operator in Julia returns true when both the conditions under consideration are satisfied. Otherwise, it returns false. Therefore, a && b returns true when both a and b are true (i.e. non-zero).
Operator |
Description |
Syntax |
&& |
Logical AND: True if both the operands are true |
x && y |
|| |
Logical OR: True if either of the operands is true |
x || y |
! |
Logical NOT: True if operand is false |
!x |
a = true
b = false
println(a && b)
println(a || b)
println(! a)
|
Output:
false
true
false
Assignment operators are used to assign value to a variable. The left side operand of the assignment operator is a variable and the right side operand of the assignment operator is a value. The value on the right side must be of the same data-type of the variable on the left side otherwise the compiler will raise an error.
Operator |
Description |
Syntax |
= |
Assign value of right side of expression to left side operand |
x = y + z |
+= |
Add AND: Add right side operand with left side operand and then assign to left operand |
a += b a = a + b |
-= |
Subtract AND: Subtract right operand from left operand and then assign to left operand |
a -= b a = a – b |
*= |
Multiply AND: Multiply right operand with left operand and then assign to left operand |
a *= b a = a * b |
/= |
Divide AND: Divide left operand with right operand and then assign to left operand |
a /= b a = a / b |
\= |
Inverse Divide AND: Divide right operand with left operand and then assign to left operand |
a \= b a = a \ b |
÷= |
Integer Divide AND: Divide left operand with right operand and then assign to left operand |
a ÷= b a = a ÷ b |
%= |
Modulus AND: Takes modulus using left and right operands and assign result to left operand |
a %= b a = a % b |
^= |
Exponent AND: Calculate exponent(raise power) value using operands and assign value to left operand |
a ^= b a = a ^ b |
&= |
Performs Bitwise AND on operands and assign value to left operand |
a &= b a = a & b |
|= |
Performs Bitwise OR on operands and assign value to left operand |
a |= b a = a | b |
⊻= |
Performs Bitwise xOR on operands and assign value to left operand |
a ⊻= b a = a ⊻ b |
>>>= |
Performs Logical right shift on operands and assign value to left operand |
a>>>=b a=a>>>b |
>>= |
Performs Bitwise right shift on operands and assign value to left operand |
a >>= b a = a >> b |
<<= |
Performs Bitwise left shift on operands and assign value to left operand |
a <<= b a = a << b |
a = 9
b = 4
println( "a = " , a)
println( "b = " , b)
a + = b
println( "Binary Addition: " , a)
a - = b
println( "Binary Subtraction: " , a)
a * = b
println( "Binary Multiplication: " , a)
a / = b
println( "Binary Division: " , a)
a ÷ = b
println( "Integer Division: " , a)
a \ = b
println( "Inverse Division: " , a)
a ^ = b
println( "Power Operation: " , a)
a % = b
println( "Modular Division: " , a)
|
Output
a = 9
b = 4
Binary Addition: 13
Binary Subtraction: 9
Binary Multiplication: 36
Binary Division: 9.0
Integer Division: 2.0
Inverse Division: 2.0
Power Operation: 16.0
Modular Division: 0.0
Vectorized ‘dot’ operator
A ‘dot’ operator(.) is used to perform a binary operation with which it is used on the entire array, element by element, one by one. For ex- A power(^) operator if applied on an array like [4, 5, 6, 7] ^ 2, will result in an error, because it is not possible to perform ‘square’ of an array. Hence, the ‘dot’ operator comes into use. When used with the binary operation like .^ it will perform the operation on each element of the array. For ex- [4, 5, 6, 7] ^ 2 will result in [4^2, 5^2, 6^2, 7^2].
Similarly, this dot operator can be used with other binary operators like .=, .+, .-, etc.
Example:
A = [ 4 , 5 , 6 , 7 ]
A = A ^ 2
A = A .^ 2
println(A)
|
Above code will generate an error when the exponent is performed without a ‘dot’ operator. This is because exponent can’t be performed on the array of elements.

These operators are used to check for relations like equality, greater than, less than. They return boolean result after the comparison and are extensively used in looping statements as well as conditional if-else statements.
Operator |
Description |
Syntax |
> |
Greater than: True if left operand is greater than the right |
x > y |
< |
Less than: True if left operand is less than the right |
x < y |
== |
Equal to: True if both operands are equal |
x == y |
!=, ≠ |
Not equal to – True if operands are not equal |
x != y or x ≠ y |
>=, ≥ |
Greater than or equal to: True if left operand is greater than or equal to the right |
x >= y or x ≥ y |
<=, ≤ |
Less than or equal to: True if left operand is less than or equal to the right |
x <= y or x ≤ y |
Example:
a = 13
b = 33
println(a > b)
println(a < b)
println(a = = b)
println(a ! = b)
println(a > = b)
println(a < = b)
|
Output:
false
true
false
true
false
true
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!