Answer:
Previous = 99, Next = 101
Step-by-step explanation:
Given that a = 100
Previous says that it's formula is a - 1, where a = 100.
Therefore, previous code would show in its output as 100 - 1. 100 - 1 = 99.
Thus, the output of previous code will be 99
Like with previous, Next says that it's formula is a + 1, where a = 100.
Therefore, the next code would show in its output as 100 + 1. 100 + 1 = 101
Thus, the output of previous code will be 101
I hope that's explanatory enough. Thanks.