answersLogoWhite

0


Best Answer

0 & 1

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the two possible values of a binary bit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What are the differences between binary signaling and digital signaling?

Binary refers to a system which may have one of two states. In computer science the binary numbering system is used where stored and communicated values are represented by 0 and 1. A digital signaling system would be based on an underlying stream of binary numbers so in most cases the two would be used interchangeably. If "binary signaling" where to be taken literally however it would describe a signaling system which communicates two possible states. The flag on a mailbox is a binary communication system, when the flag is up it signals that mail is available for pickup, when it is down there is nothing in the mailbox.


What is a binary digit?

A synchronous or asynchronous stream of signal consisting only of zero(no voltage) and one(position voltage) is called binary data stream. They may be bytestream, wordstream and so on. Sending unique binary pulses periodically create a binary digital signal. For example, you want to pass the number 346F5A through binary digital signal it will be 001101000110111101011010 Break it 0011-0100-0110-1111-0101-1010 you will find the binary equivalents of each digit. This example is very simple. Usually complex form of data are sent to and fro through data lines, be it the SATA cable of your hard drive, the USB port or the Internet.


What is the difference between binary code and extendible binary code?

There is no such thing as extendible (sic) binary code. However, there are two known variants: eXtendable Binary (XB) is a universal file format used for serialising binary trees. Extended Binary Coded Decimal Interchange Code (EBCDIC) was an 8-bit character encoding used by IBM in the 1960's. It's a non-standard encoding that was used by IBM prior to them switching to ASCII peripherals.


Number of all possible binary trees with 2 nodes is?

Two: 1. root and left child 2. root and right child


What is the most basic logical element of data?

The most basic logical element of data is the binary digit, or bit, which can represent the numeric value 0 (the bit is unset) or 1 (the bit is set), which can subsequently represent any opposing concept, such as true or false, yes or no, black or white, positive or negative, etc. However, computer systems do not permit the storage of a single bit because a single bit cannot be addressed in memory. Every memory address represents a group of bits known as a byte (8 bits), thus a boolean value (a value that has only two possible states, such as true or false) is typically composed of 8 bits where the binary value 00000000 (no set bits) is regarded as being false while any other combination of bits (a non-zero value) is regarded as being true. Typically the binary value 11111111 (which is decimal -1 in signed notation) is regarded as being true but any non-zero value is also regarded as being true. In order to conserve memory, programmers will often combine several boolean values into a single value, such that each individual bit represents something different. Thus a single byte can effectively store up to 8 individual boolean values. In order to determine the state of any one bit, the programmer simply tests the combined bits against the bit-value he's actually interested in. For instance, to test if bit 3 is set (the fourth least-significant digit, from the right), the programmer will logically AND the combined bits with the value 23, which is 00001000 in binary (8 decimal). If the result is non-zero then bit 1 is definitely set, otherwise it is not.

Related questions

What is the largest number that can be represented by a single bit in binary?

1. A single bit can represent two different values, 0 and 1. Then simply take the largest of those two possible values, 1, and that's your answer.


What is a BIT in relation to binary code?

A BIT is a Binary digIT. Very small saving unit.Having two values,(0,1).


What is data that can only be one of two possible values?

A binary variable.


What are the two possible values for a bit?

0 and 1


How many different values can be represented by 4 binary digits?

24, or 16 (0 through 15) One binary digit (bit) can have 21 values (0 or 1). Two bits can have 22 values. Three bits can have 23 values. A five-bit number can have 25 values... and so on...


What are the two possible values for a digital bit?

0 and 1


Why is hexadecimal code used as a way of reducing binary code?

Any base that is itself a power of 2 can be used to notate binary values. That is, base-4, base-8 (octal), base-16 (hexadecimal), base-32, and so on. Binary is a base-2 counting system such that each digit represents one of two possible values (0 or 1). When we combine bits we double the number of possible values with each additional bit. Thus 2 bits can represent up to 4 possible values, 3 bits gives us 8 possible values and 4 bits gives us 16 possible values, and so on. We normally deal with bits in groups of 4 because 2 groups of 4 gives us an 8-bit byte which is the norm for most systems. Thus we can reduce an 8-bit binary value from 8 binary digits to just 2 hexadecimal digits, thus giving us a convenient method of notating binary values with fewer digits and a trivial conversion. Octal notation isn't used as much as hexadecimal notation, but if we wanted to use a 9-bit byte rather than an 8-bit byte (which is not an uncommon activity), octal notation is more convenient than hexadecimal because the 9-bit values can be treated as being exactly 3 groups of 3 bits.


What is the difference between BPSK and QPSK?

Binary PSKQPSK.1. Two different phases are used torepresent two binary values.1. Four different phases are used to represent two binary values.2. Each signal element represents only one bit.2. Each signal element representstwo bits


Why binary numbers need more places for counting?

Since a binary digit has only two possible values, each digit bears less information than in decimal, where each digit can have ten different values.


A network engineer wants to represent confidential data in binary format what are the two possible values he can use?

4 and 6


What is a special kind of raster image that has only two possible color values black or white?

Binary image (i think)


Which is the smallest increment of data in a computer system?

A bit is a binary digit that is the second smallest increment of data on a computer. It can hold only two values which are 0 and 1.