PLC - Chapter 3: Number Systems and Codes

Beschreibung

A quiz by Allison for her Joey
ihateseneca
Quiz von ihateseneca, aktualisiert more than 1 year ago
ihateseneca
Erstellt von ihateseneca vor mehr als 8 Jahre
334
1

Zusammenfassung der Ressource

Frage 1

Frage
The decimal system has a base of __.
Antworten
  • 10
  • 100
  • 1000
  • 2

Frage 2

Frage
The decimal number 7 would be written in binary as 1011.
Antworten
  • True
  • False

Frage 3

Frage
To express a number in decimal requires fewer digits than in the binary system.
Antworten
  • True
  • False

Frage 4

Frage
For a base 2 number system, the weight value associated with the 3rd digit would be 4.
Antworten
  • True
  • False

Frage 5

Frage
Label the "Sign Bit" and the "Magnitude Bits"
Antworten
  • Sign Bit
  • Magnitude Bits

Frage 6

Frage
What is the decimal value of binary 110010?
Antworten
  • 48
  • 13
  • 26
  • 7

Frage 7

Frage
The decimal number 15 would be written in binary as
Antworten
  • 1111
  • 4C
  • 1000
  • 00011001

Frage 8

Frage
Data can be stored in one 16-bit word as two separate groups of 8-bit data.
Antworten
  • True
  • False

Frage 9

Frage
To represent a negative number in 1's complement, you simply take the number's magnitude and flip all the bits (i.e. 1 becomes 0, and 0 becomes 1).
Antworten
  • True
  • False

Frage 10

Frage
+3 binary representation: 0011 -3 binary representation: [blank_start]1100[blank_end] (1's complement)
Antworten
  • 1100

Frage 11

Frage
The octal numbering system has a base of 9.
Antworten
  • True
  • False

Frage 12

Frage
The weights for the octal numbering system are: 1, [blank_start]8[blank_end], [blank_start]64[blank_end], 512, ...
Antworten
  • 8
  • 64

Frage 13

Frage
Numbers 8 and 9 are not allowed in the octal numbering system.
Antworten
  • True
  • False

Frage 14

Frage
Fill in the missing number.
Antworten
  • 312
  • 306
  • 300
  • 350

Frage 15

Frage
Convert this octal number to binary.
Antworten
  • 1
  • 0
  • 0
  • 1
  • 1
  • 0
  • 0
  • 1
  • 0

Frage 16

Frage
The hexadecimal numbering system can be summarized as follows: Sixteen digits: 0, 1, 2, 3, 4, 5, [blank_start]6[blank_end], [blank_start]7[blank_end], [blank_start]8[blank_end], [blank_start]9[blank_end], [blank_start]A[blank_end], [blank_start]B[blank_end], [blank_start]C[blank_end], [blank_start]D[blank_end], [blank_start]E[blank_end], [blank_start]F[blank_end]
Antworten
  • 6
  • 7
  • 8
  • 9
  • A
  • B
  • C
  • D
  • E
  • F

Frage 17

Frage
The weights of the hexadecimal system are powers of base 16 (i.e. 1, 16, 256, etc.).
Antworten
  • True
  • False

Frage 18

Frage
To convert a hexadecimal number to its decimal equivalent, the hexadecimal digits in the columns are divided by the base 16 weight.
Antworten
  • True
  • False

Frage 19

Frage
Convert this hex number into binary.
Antworten
  • 0
  • 0
  • 0
  • 1
  • 1
  • 0
  • 1
  • 1
  • 0
  • 1
  • 1
  • 1

Frage 20

Frage
The BCD (Binary-Coded Decimal) numbering system provides a convenient way of handling [blank_start]large[blank_end] numbers that need to be inputted to or outputted from a PLC.
Antworten
  • large
  • small

Frage 21

Frage
Convert this decimal number into a BCD number.
Antworten
  • 0
  • 1
  • 1
  • 1
  • 1
  • 0
  • 0
  • 0
  • 0
  • 1
  • 1
  • 0
  • 0
  • 0
  • 1
  • 1

Frage 22

Frage
This instruction will convert the binary bit pattern at the source address [blank_start]N7:23[blank_end], into a [blank_start]BCD[blank_end] bit pattern of the same decimal value as the destination address, [blank_start]O:20[blank_end]. The instruction executes every time it is scanned and the instruction is true.
Antworten
  • N7:23
  • O:20
  • BCD

Frage 23

Frage
The Gray code is a special type of binary code that uses position weighting.
Antworten
  • True
  • False

Frage 24

Frage
ASCII stands for [blank_start]American[blank_end] [blank_start]Standard[blank_end] [blank_start]Code[blank_end] for [blank_start]Information[blank_end] [blank_start]Interchange[blank_end]. It is an alphanumeric code because it indicates letters as well as numbers.
Antworten
  • American
  • Standard
  • Code
  • Information
  • Interchange

Frage 25

Frage
Gray codes are used with [blank_start]position encoders[blank_end] for accurate control of the motion of robots, machine tools, and servomechanisms.
Antworten
  • position encoders

Frage 26

Frage
Some PLC communications systems use a [blank_start]parity[blank_end] bit to check the accuracy of data transmission. For example, when data are transferred between PLCs, one of the binary bits may accidentally change states.
Antworten
  • parity

Frage 27

Frage
The two systems of parity normally used are odd and even.
Antworten
  • True
  • False

Frage 28

Frage
Odd parity means that the total number of binary 1 bits in the character, including the parity bit, is [blank_start]odd[blank_end]. Even parity means that the total number of binary 1 bits in the character, including the parity bit, is [blank_start]even[blank_end].
Antworten
  • odd
  • even
  • even
  • odd

Frage 29

Frage
In the binary system + and – symbols are used to indicate whether a number is positive or negative.
Antworten
  • True
  • False

Frage 30

Frage
The octal number 153 would be written in binary as:
Antworten
  • 011 101 001
  • 011 111 101
  • 001 101 011
  • 010 100 011

Frage 31

Frage
What is the decimal equivalent for the BCD number 1000 0100 0010 0001?
Antworten
  • 8421
  • 7863
  • 1234
  • 3728

Frage 32

Frage
The Gray code is set up so that as we progress from one number to the next, only one bit changes.
Antworten
  • True
  • False

Frage 33

Frage
Which code is used to convert the keystrokes on the keyboard of a computer for the processor?
Antworten
  • BCD
  • HEX
  • ASCII
  • OCTAL

Frage 34

Frage
A parity bit is used to check the _______ of data transmission.
Antworten
  • speed
  • type
  • accuracy
  • time

Frage 35

Frage
What is the sum of binary numbers 1100 and 1011?
Antworten
  • 10110
  • 10111
  • 11100
  • 00111

Frage 36

Frage
Which instruction is used to compare the relative magnitude of two quantities?
Antworten
  • Add
  • Subtract
  • Multiply
  • Less Than

Frage 37

Frage
The process for dividing one binary number by another is the same for both binary and decimal numbers.
Antworten
  • True
  • False

Frage 38

Antworten
  • 11110

Frage 39

Antworten
  • 0100

Frage 40

Frage
Good luck, babe
Antworten
  • I love you
  • <3
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

Kleines Biologie-Quiz
AntonS
Neuzeit - Erfindungen, Entdeckungen & Eroberungen
Markus Grass
Abiturvorbereitung (1 Monat)
AntonS
Modul 2D FernUni Hagen Beck
Anni T-Pünktchen
UML - Diagramme
futurebase
2C Entwicklungspsychologie
petra.drewitz
Stochastik Mathe
Laura Overhoff
[Geschichte] Nachkriegsdeutschland - Die Stunde null
Marcel Pabst
PuKW STEP6 - Hummel - mit korrekten Antworten während Quiz
Benedikt Zöchling
Vetis - Tierhaltung / -hygiene
Jessica Ehlers