What is the value of the variable |num| after the following code snippet?
num = 5
num2 = 6
num = num 2 + 3
A. 5
B. 9
C. 8
D. 11