Definition:
The most commonly used operator is the assignment operator. It is denoted by the "=" character and simply assigns the value on the right to the operand on the left.
Examples:
String favouriteFood = "Banana";
int age = 123;
boolean isOld = true;

