Operations - Level 2 What will the following block of code will print? x = 3 x -= 1 x += 5 x **= 2.0 x += 2 * (3 + 1) Solution Click here to view the solution