2.
Guess the output of these Arithmetic Operations
(Can run and check code here – https://groovy-playground.appspot.com/)
//Arithmetic Operators
assert 1 + 2 == 3
assert 4 - 3 == 1
assert 3 * 5 == 15
assert 3 / 2 == 1.5
assert 10 % 3 == 1
assert 2 ** 3 == 8