E Mich Basic Questions Flashcards
What does HTML stand for?
Hypertext Markup Language
What does MAC stand for?
Media access control
What is a MAC address? explain the two parts of it.
- Its an ID code that’s assigned to a network adapter or any device with built-in networking capability, such as a printer
- The OUI represents the manufacturer
- The NIC represents the specific portion (like a serial number) made by the manufacturer.
Basically = serial number
Basicly= Identifies the device on a network
What does USB stand for?
Universal Serial Bus
Name two modes of data transmission.
Simplex
Half duplex
Full duplex
Explain the term Simplex Data Transmission
A communication channel that sends information one direction only
Explain the term Half Duplex Data Transmission
Transmission of data in just one direction at a time
Explain the term Full Duplex Data Transmission
Transmission of data in two directions simultaneously
Highlight a problem with parallel data transmission
When needing to be used for longer distances some of the data can get lost
What is ARQ?
Automatic Repeat reQuest. Error method for data transmission
Explain how echo checks work
The data received is stored + transmitted back to its point of origin, where it is compared with its original data
What does the term ISP stand for?
Internet Service Provider
One reason why we use binary to represent data in computers?
Because transistors have 2 states. Therefore 1 and 0 would work best
What is an algorithm?
A set of instructions used to solve a problem. You can use a flow chart or pseudo code for it
Limitations of ASCII
- ASCII is 7 bit binary therefore the highest number of characters it can represent is 128
- Many languages throughout the world have more than 128 characters
Why are logical errors often the most difficult to find?
The computer will not often spot them, just run them. It does not appear to do what you asked it to do
What is a Boolean?
associated with conditional statements, which allow different actions and change control flow
AND gate
000
010
100
111
Or gate
000
011
101
111
NOT gate
01
10
NAND gate
001
011
101
110
NOR gate
001
010
100
110