Negating a signed integer means changing its sign from positive to negative, or negative to positive while maintaining its absolute value.
For example, the negation of +25 is -25, and the negation of -42 is +42.
Here is the binary bit pattern for a signed integer in 8-bit two's complement representation.
1101 1010
Convert this binary pattern to its negation in 8-bit two's complement format.