answersLogoWhite

0

Period is 101110

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

What is the decimal binary code for 30?

Decimal 30 = binary 11110. The decimal binary code (BCD), however, is 11 0000.


What is the binary code for 4?

14 decimal in binary is 11102. In octal it is 168 and in hexadecimal it is 0E16.


How do you write program decimal to binary in verilog?

To convert a decimal number to binary in Verilog, you can use the built-in reg or wire types to store the binary value. First, define a module and declare an input for the decimal number. You can then use an assignment statement to convert the decimal to binary by assigning the input directly to the output, as Verilog implicitly handles the conversion. For example: module decimal_to_binary(input [7:0] decimal, output reg [7:0] binary); always @(*) begin binary = decimal; // Implicit conversion from decimal to binary end endmodule This code will take an 8-bit decimal input and output its binary representation.


What is the binary code for B?

That depends what you mean by "B", and what you mean by "binary code" assuming that by "binary code", you actually mean a binary representation of it's ascii value, then the answer is 1000010. The ascii value of the character "B" is 66 in decimal, which is 1000010 is that value in binary. If on the other hand, you mean "what is the binary value of the hexidecimal number B?", then the answer is 1011.


How do you spell Quinn in binary code?

In binary: 10100010 11101010 11010010 11011100 11011100 00000000 In hexadecimal: 0x5175696E6E00 10100010 = 0x51 = 'Q' (ASCII character code 81 decimal) 11101010 = 0x75 = 'u' (ASCII character code 117 decimal) 11010010 = 0x69 = 'i' (ASCII character code 105 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x00 = 0 (ASCII character code 0 decimal - null-terminator)