Which protocol does TFTP typically use for transport?
Options:
A.
RSVP
B.
TCP
C.
HTTP
D.
UDP
Answer:
D
Explanation:
TFTP, or Trivial File Transfer Protocol, is a simple protocol used for transferring files. Unlike other file transfer protocols, TFTP operates on top of the User Datagram Protocol (UDP), which is a connectionless protocol. This means that TFTP does not establish a persistent connection between the client and server, and it does not guarantee reliable delivery of packets, error checking, or correction. TFTP is typically used in scenarios where simplicity and minimal memory footprint are more critical than the need for reliable delivery, such as when booting a device over a network123. References := Wikipedia, GeeksforGeeks, PyNet Labs
Question 21
What is the correct IPv6 address notation?
Options:
A.
2001:0DB8::/128
B.
2001:0DB8:0::
C.
2001:0DB8::1:1:1:1:1
D.
2001:0DB8:130F:0000:0000:7000:0000:140B
Answer:
D
Explanation:
The correct IPv6 address notation follows the format of eight groups of four hexadecimal digits, separated by colons. The address must have exactly eight groups unless it uses the double colon (::) to represent consecutive groups of zero value. The double colon can only appear once in an address to avoid ambiguity.
Option A is incorrect because it includes a subnet mask (/128) which is not part of the actual address notation. Option B is incomplete as it does not contain enough groups and ends with a single colon. Option C has too many groups (nine instead of eight) and is therefore not a valid IPv6 address. Option D is the correct notation with eight groups of four hexadecimal digits, where necessary leading zeros are included.
References :=
IPv6 Address Types, Notation, and Structure Explained1.