sirhulk1
Test por , creado hace más de 1 año

Understanding LANs in the perspective of Ethernet Technologies

46
0
0
sirhulk1
Creado por sirhulk1 hace más de 10 años
Cerrar

Ethernet Networks In Review - Chapter 3

Pregunta 1 de 37

1

What is Ethernet ? (Choose two)

Selecciona una o más de las siguientes respuestas posibles:

  • Ethernet is a trademark for a family of Ethernet technologies for Local Area Networks (LANs) was introduced in 1980 and standardized in 1985 as IEEE 802.3

  • Ethernet is a contention based media access method that allows all hosts on a network to share the same bandwidth of a link.

  • Ethernet is a access method that provides end to end delivery during network services.

Explicación

Pregunta 2 de 37

1

What is a collision domain?

Selecciona una de las siguientes respuestas posibles:

  • This is an Ethernet term describing two devices on one physical segment both sends out a packet at the same time. This will result in a collision and forcing both devices to retransmit at a later time. A collision domain is typically found in a Hub network environment.

  • A collision domain is a feature where a device fails to send a packet to the network and tries to resend the packet.

Explicación

Pregunta 3 de 37

1

What is a broadcast domain?

Selecciona una de las siguientes respuestas posibles:

  • Its part of a network technology that provides broadcasts for all hosts connected to the internetwork.

  • This refers to a group of devices on a network segment that hear all the broadcasts sent on that network segment.

Explicación

Pregunta 4 de 37

1

Carrier Sense Multiple Access w/collision detection (CSMA/CD) is a protocol that helps devices share the bandwidth evenly without having two devices transmit at the same time on the network medium.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 5 de 37

1

When two devices send out a packet at the same time on the same segment causing a collision, how does CSMA/CD act on resolving this? (Choose four)

Selecciona una o más de las siguientes respuestas posibles:

  • A jam signal informs all devices that a collision occurred.

  • The collision triggers a random back off algorithm.

  • The signal provides the devices to generate an inquiry file log.

  • Each device on the segment stops transmitting for a short time until their backoff timers expire.

  • All hosts have equal priority to transmit after the timers have expired.

Explicación

Pregunta 6 de 37

1

What is the difference between Half Duplex and Full Duplex Ethernet?

Selecciona una o más de las siguientes respuestas posibles:

  • Half Duplex uses just one pair on the network cable wire with a signal running in both directions. It also uses CSMA/CD protocol to help detect and prevent collisions. Half Duplex is typically run on hub environments.

  • Full Duplex uses one pair on the network cable wire with a signal running in both directions which offers a collision free network segment.

  • Half Duplex uses two pairs on the network cable wire with a signal running in both directions which is a collision free network segment. Half Duplex is typically run on hub environments.

  • Full Duplex uses two pairs on the network cable wire with a signal running in both directions which offers a collision free network segment.

Explicación

Pregunta 7 de 37

1

Full Duplex Ethernet can run on Hub device environments

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 8 de 37

1

Full Duplex mode requires a dedicated switch port and a host network card that is capable of Full Duplex mode .

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 9 de 37

1

Ethernet at the Data Link layer is responsible for Ethernet addressing that is commonly referred to as ______________ addressing or _____________ addressing.

Selecciona una o más de las siguientes respuestas posibles:

  • Logical

  • Hardware

  • MAC

Explicación

Pregunta 10 de 37

1

In the Data Link layer there are four different types of Ethernet frames.

Selecciona una o más de las siguientes respuestas posibles:

  • Ethernet_II

  • IEEE 802.3

  • Media Access Control (MAC)

  • Sub Network Access Protocol (SNAP)

  • IEEE 802.2

Explicación

Pregunta 11 de 37

1

Ethernet_II frame is the most commonly used

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 12 de 37

1

For Ethernet what is the most commonly used frame?

Selecciona una de las siguientes respuestas posibles:

  • Sub Network Access Protocol (SNAP)

  • Ethernet_II

Explicación

Pregunta 13 de 37

1

For wireless specifications what is the most commonly used frame?

Selecciona una de las siguientes respuestas posibles:

  • Sub Network Access Protocol (SNAP)

  • Ethernet_II

Explicación

Pregunta 14 de 37

1

What makes up Ethernet Addressing ?

Selecciona una o más de las siguientes respuestas posibles:

  • It uses Media Access Control (MAC) which is a sublayer of the Data Link Layer

  • The MAC is a 48 bit (6 byte) address burned into every Ethernet network interface card (NIC) but it can be overridden.

  • It uses Media Access Control (MAC) which is a sublayer of the Physical Layer

  • The MAC address is divided into two parts, first 24 bits is called the Organizational Unit Identifier (OUI) and the second 24 bits are Vendor assigned.

Explicación

Pregunta 15 de 37

1

What are the values of a nibble and a byte in binary numbering?

Selecciona una o más de las siguientes respuestas posibles:

  • A nibble is 8 bits with the value of each bit are the following: 128 64 32 16 8 4 2 1

  • A byte is 8 bits with the value of each bit are the following: 128 64 32 16 8 4 2 1

  • A byte is 4 bits with the value of each bit are the following: 8 4 2 1

  • A nibble is 4 bits with the value of each bit are the following: 8 4 2 1

Explicación

Pregunta 16 de 37

1

Each hex character has a value of one _______ and every two hex characters has the value of one _____

Selecciona una o más de las siguientes respuestas posibles:

  • Each hex character has a value of one byte (8 bits) and every two hex characters has the value of one nibble (4 bits).

  • Each hex character has a value of one nibble (4 bits) and every two characters has the value of one byte (8 bits).

Explicación

Pregunta 17 de 37

1

In order to convert a hex value to a decimal value, you must first convert hex into binary, then add the binary values that will result in the decimal value.
Example: 0xC84 => 1100 1000 0100 => 2048 + 1024 + 128 + 4 => 3204

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 18 de 37

1

In order to convert binary to hex, you must first break the 8 bit binary into two 4 bit nibbles, then add up each nibble value separately which will result in the hex value.
Example: 01010101 => 0101 => 5 and 0101 => 5 , now add the two nibble values separately in hex format using "0x" => 0x55

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 19 de 37

1

The Data Link layer is responsible for combining bits into bytes and bytes into frames.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 20 de 37

1

What are the three types of media access methods for Ethernet networks?

Selecciona una o más de las siguientes respuestas posibles:

  • Contention (Ethernet)

  • CSMA/CD (Carrier Sense Multiple Access/Collision Detection

  • Polling (IBM Mainframes)

  • Token Passing (Token Ring and Fiber Distributed Data Interface - FDDI)

Explicación

Pregunta 21 de 37

1

Encapsulating a frame within a different type of frame is called Tunneling.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 22 de 37

1

The Ethernet_II frame contains what field that is used to identify the network upper layer protocol.

Selecciona una o más de las siguientes respuestas posibles:

  • Type field

  • Length field

Explicación

Pregunta 23 de 37

1

SNAP frame has its own protocol field to identify the upper-layer protocol. How can you identify a SNAP Frame?

Selecciona una o más de las siguientes respuestas posibles:

  • SNAP frame contains a field that is identified by Ethernet by its header.

  • SNAP frame has the DSAP and SSAP fields are always AA

Explicación

Pregunta 24 de 37

1

Name the different types of Ethernet Cabling. (Choose three)

Selecciona una o más de las siguientes respuestas posibles:

  • Fiber Optical Cabling (SC/LC)

  • Straight-through Cabling

  • Cross-over cabling

  • Rolled Cabling

  • CAT5 Cabling

Explicación

Pregunta 25 de 37

1

Straight-Through cables can connect to which devices?

Selecciona una o más de las siguientes respuestas posibles:

  • Host to switch or hub

  • Switch to Switch

  • Hub to Hub

  • Router to Switch or hub

  • Hub to Switch

  • Router direct to host

Explicación

Pregunta 26 de 37

1

Crossover cables connect to what devices?

Selecciona una o más de las siguientes respuestas posibles:

  • Host to switch or hub

  • Switch to Switch

  • Host to Host

  • Hub to Hub

  • Router direct to host

  • Router to switch or hub

  • Switch to hub

Explicación

Pregunta 27 de 37

1

Cross-over cabling connects to what cable pins?

Selecciona una de las siguientes respuestas posibles:

  • 1 to 1 , 2 to 2, 3 to 3, 6 to 6 (uses two pairs)

  • 1 to 8, 2 to 7, 3 to 6, 4 to 5, 5 to 4, 6 to 3, 7 to 2, 8 to 1 (uses four pairs)

  • 1 to 3, 2 to 6 (uses only two pairs)

Explicación

Pregunta 28 de 37

1

Data Encapsulation is data wrapped with protocol information that is created for each layer of the OSI model. To communicate and exchange information each layer uses Protocol Data Units (PDUs)

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 29 de 37

1

What specific name for the PDU at the Transport layer?

Selecciona una de las siguientes respuestas posibles:

  • Bits

  • Frames

  • Segments

  • Packets

Explicación

Pregunta 30 de 37

1

What is the specific PDU name for the Data Link Layer?

Selecciona una de las siguientes respuestas posibles:

  • Segment

  • Frames

  • Bits

  • Packets

Explicación

Pregunta 31 de 37

1

What is the specific PDU name for the Network Layer?

Selecciona una de las siguientes respuestas posibles:

  • Segment

  • Packet

  • Bits

  • Frames

Explicación

Pregunta 32 de 37

1

What is the specific PDU name for the Physical Layer?

Selecciona una de las siguientes respuestas posibles:

  • Segment

  • Frame

  • Bits

  • Packets

Explicación

Pregunta 33 de 37

1

The Transport layer when using TCP, it takes the data stream and makes segments and establishes a __________ circuit.

Selecciona una de las siguientes respuestas posibles:

  • physical

  • virtual

Explicación

Pregunta 34 de 37

1

When TCP completes the virtual circuit session, its defined by the _______ and _________ port numbers.

Selecciona una de las siguientes respuestas posibles:

  • high and well known

  • Source and Destination

Explicación

Pregunta 35 de 37

1

In the Transport Layer, along with the Virtual Circuit session, the source and destination IP address is defined and called a __________.

Selecciona una de las siguientes respuestas posibles:

  • Reliable session

  • Socket

Explicación

Pregunta 36 de 37

1

In TCP the destination port number represents the upper layer process (Application). As an example if the destination port was 23 that would be considered a telnet session needed for the receiving host.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 37 de 37

1

The Network layer is responsible in finding the destination hardware address that will dictate where the packet will go on the local area network (LAN). It does this by sending an ________ request.

Selecciona una de las siguientes respuestas posibles:

  • ping (Packet Internetwork Grouper)

  • ARP (Address Resolution Protocol)

Explicación