I thinks it’s B but I’m not sure sorry if not but B
Answer:
3; y=4
Step-by-step explanation:
2 should be distributed as 2y + 8; y = 4
2(y +4) = 4y
2y + 8 = 4y
8 = 2y
y = 4
Y = 4x - 1
4(1) - 1 = 3
4(2) - 1 = 7
4(3) - 1 = 11
Answer:
If (x - 2) is a factor of 2x³ + x² - 3 then for the value of x = 2 the polynomial is equal zero.
Substitute:
2 · 2³ + 2² - 3 = 2 · 8 + 4 - 3 = 16 + 4 - 3 = 17 ≠ 0
<u>Answer: B) (x - 2) is not a factor.</u>
<span>Int var1 = 0b0001;
int var2 = 0b1111;
int results1 = var1 & var2;
int results2 = var1 | var2;
int results3 = var1 ^ var2;
int printit = results1 + results2 + results3;
what are the values for results1, results2, results3 and printit after executing the code?
notes:
1. faster responses will be obtained if your code is presented line by line (in a file) before posting.
2. please specify language, many languages use the same syntax but could have differences in interpretation
-------------------------------------------------------------------------------
Assuming Java as the language. C is similar.
</span><span><span>& bitwise AND &
^ </span><span>bitwise exclusive OR
</span><span>| bitwise inclusive OR
So
results1=var1&var2=0b0001&0b1111=0b0001
results2=var1|var2=0b0001&0b1111=0b1111
results3=var1^var2=0b0001&0b1111=0b1110
printit=results1+results2+results3=0b0001+0b1111+0b1110
=0b10000+0b1110
=0b11110
Note: by default, int has 4 signed bytes, ranging from decimal -2147483648 to +2147483647
</span></span>