# Problem What value does `Y` contain after executing the following instructions? ```c short X = 0x4507; char Y = (char) X; ``` # Process ... # Answer ```c Y = 7; ```