Question 29:
Which of the following expressions in Python increase a variable val by one (Choose two.)
Answer options:
A. val++ B. +val C. val=(val+1) D. ++val E. val=val++ F. val+=1
Answer correct:
DF
Reference: https://stackoverflow.com/questions/1485841/behaviour-of-increment-and-decrement-operators-in-python