Which decrement expressions are valid for the autoboxed 'short'?

Question | Dec 29, 2017 | rparekh 

The constant 0 is is autoboxed to a Short object as follows:

Short s = 0; // IMP: s is a Short object 

Select all the valid decrement expressions on 's' from given choices below. Valid here means the one that successfully compiles.