Question
Evaluate the following code. What is the resulting value of the variable a? char a = 109; a &= ~(1 < < 1); Give your
Evaluate the following code. What is the resulting value of the variable a?
char a = 109; a &= ~(1 << 1);
Give your answer in 8 digits of binary (include leading zeros).
Evaluate the following code. What is the resulting value of the variable a?
char a = 56; a &= ~(1 << 7);
Give your answer in 8 digits of binary (include leading zeros).
Evaluate the following code. What is the resulting value of the variable a?
char a = 33; char b = 65; a &= ~b;
Give your answer in 8 digits of binary (include leading zeros)
Evaluate the following code. What is the resulting value of the variable a?
char a = 71; char b = 85; a |= b;
Give your answer in 8 digits of binary (include leading zeros)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started