Question
Boolean Calculator two Continue solution program from the preceding exercise by implementing following procedures-
AND_op: Prompt user for two hexadecimal integers. AND them together and display the result in hexadecimal.
OR_op: Prompt user for two hexadecimal integers. OR them together and display the result in hexadecimal.
NOT_op: Prompt user for a hexadecimal integer. NOT the integer and display the result in hexadecimal.
XOR_op: Prompt user for two hexadecimal integers. Exclusive-OR them together and display the result in hexadecimal.