Answer:
(0.5,3)
Step-by-step explanation:
<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>
Answer:
50th term is -338
Step-by-step explanation:
Common difference d = -2-5 = -7
first term is a1 = 5
50th term
a50 = a1 + (n -1)d
a50 = 5 -7(50-1)
a50 = 5 -7(49)
a50 = -338
Hope this will helpful.
Thank you.
Answer:
a . See attachment
b. because we will find the distance from the bottom of the ladder to the base of the building.
c. sin 60 = opposite side / hypotenuse
d.sin 60 = x / 10
e . 8.66 ft =x
f. see attachment
i. cos 60° = adjacent side / hypotenuse
Step-by-step explanation:
a . See attachment
b. because cos 60° = adjacent side / hypotenuse, the hypotenuse is equal to the length of the ladder (10), and the adjacent side that we will find is the distance from the bottom of the ladder to the base of the building. not the height that the ladder reaches .
c. sin 60 = opposite side / hypotenuse
Because we will find the opposite side which is the height that the ladder reaches.
d.sin 60 = x / 10
e .
0.866025403 = x/10
10 (0.866025403) =x
8.66 ft =x
f. see attachment
i. cos 60° = adjacent side / hypotenuse
Because we will find the adjacent side which is the distance from the bottom of the ladder to the base of the building.