+0  
 
0
585
2
avatar+26 

What is A and B or C? (hexdecimal to decimal)

 Apr 4, 2016
 #1
avatar+26375 
+5

What is A and B or C? (hexdecimal to decimal)

 

\(\begin{array}{|c|r|} \hline \text{hexdecimal} & \text{decimal} \\ \hline 1 & 1 \\ 2 & 2 \\ 3 & 3 \\ 4 & 4 \\ 5 & 5 \\ 6 & 6 \\ 7 & 7 \\ 8 & 8 \\ 9 & 9 \\ A & 10 \\ B & 11 \\ C & 12 \\ D & 13 \\ E & 14 \\ F & 15 \\ \hline \end{array} \)

 

laugh

 Apr 5, 2016
 #2
avatar+26 
0

it is a boolean algebra question T_T "A and B or C" can be written as "A && B || C" or A∧B∨C. A, B, and C might not be 1s and 0s, but you can apply the operation to every bit of the the binary version of A, B, and C (1010, 1011, and 1100). 

1010 && 1011 == 1010

1010 || 1100 == 1110

the decimal of 1110 is:

14

yes, I awnsered my own question lol. I just wanted to see if anyone knew what I was talking about.

 Apr 6, 2016

3 Online Users

avatar
avatar