What is the value of result after executing the following code?
result
let a = 2; let b = 4; let result = a ** (b / 2);
2
8
4
16