Answer:
7F is largest signed integer number, base 16, that can be store in a variable of type BYTE.
Explanation:
A BYTE has 8bits and it signed value ranges from -128 to 127. thus the largest maximum signed integer number, that can be store in a variable of type BYTE is 127.
Base 16 value for the decimal value of 127 is 7F.
Therefore 7F is largest signed integer number, base 16, that can be store in a variable of type BYTE.