Answer:
The bit mask: x0020
The logic gate: OR
Explanation:
ASCII codes for "A" and "a" in binary are 01000001 and 01100001
ASCII codes for "Z" and "z" in binary are 01011010 and 01111010
and so on..
On close observation, we can see that for all the numbers, the 3rd bit from the left is 0 for all upper cases and 1 for all lower cases.
To convert an alphabet into lower case we have to convert the 3rd bit into 1 if not already 1. An OR operation on the 3rd bit can do so which would result from a bit mask 00100000 and x0020 in hexa.