You have a variable a defined like this: int a = 5;
Which lines of code can you use to decrement a by 1? Choose all of the correct answers. Each answer represents a complete solution.
A. --a;
B. a--;
C. a -= 1;
D. a =- 1;
E. a = a - 1;