martes, 8 de noviembre de 2011

Trabajo Código Binario Viernes 29/07/2011

         AND                                                         OR

 A        B         Z                                    A            B           Z
 0         0         0                                     0            0            0
 0         1         0                                     0            1            1
 1         0         0                                     1            0            1
 1         1         1                                     1            1            1
________________________________________________

SUMA OCTAL

7647 + 777 = 10646
6666 + 222 = 10075
7316 + 4157 + 736 = 14433
________________________________________________

SUMA HEXADECIMAL

FEFF + CCC + FF = 10CCA
B3FC.A4 + FAC.OF = C3A8.B3

________________________________________________

convertir a binario los siguientes decimales


(97) (76) (45) (18)

y realizar las 4 operaciones con:

(97) y (76) (45) y (18)


DESARROLLO

1100001 = 97
1001100 = 76
101101 = 45
10010 = 18



SUMA

97 + 76:

1100001
1001100
________
10101101


45 + 18:

101101
10010
______
111111



RESTA

97 - 76:

1100001
1001100
_______
0010101

45 - 18:

101101
10010
______
11011



MULTIPLICACION

97 * 76:

1100001
1001100
_____________
1110011001100

45 * 18:

101101
10010
__________
1100101010



DIVISION

97 / 76:

1100001/10010
_____________
1


45 / 18:

101101/10010
____________
10

No hay comentarios:

Publicar un comentario