Exam 6 Flashcards
(254) What does a dotted quad number look like?
It is a format where four numbers, usually in base 10, are connected by
dots. For example, \123.123.123.123”.
(255) When an IPv4 address is written in x.x.x.x format, the possible value for
x range from 0 to what?
255
(256) Describe base 2.
(a) It is a numbering system. (b) The digits range from 0 to 1. (c) Each
digit represents 1 bit. (d) It is also called binary.
(257) Describe base 8.
(a) It is a numbering system. (b) The digits range from 0 to 7. (c) Each
digit represents 3 bits. (d) It is also called octal.
(258) Describe base 10.
(a) It is a numbering system. (b) The digits range from 0 to 9. (c) Each digit represents about 3 1/3 bits. (d) It is also called decimal
(259) Describe base 16.
(a) It is a numbering system. (b) The digits range from 0 to 9 and A to F.
(c) Each digit represents 4 bits. (d) It is also called hex or hexadecimal.
(260) Describe base 60.
(a) It is a numbering system. (b) The digits range from 0 to 59. (c) It is
used for time and angle measurement, including navigation. (d) Because
the digits are multi-character, in writing they are normally separated by
another character.
(261) Describe base 64.
(a) It is a coding system. (b) The characters include A-Z, a-z, 0-9, and two others. (c) Each character represents 6 bits. (d) It is used for transmitting
data as though it were text.
(262) Describe base 256.
(a) It is a numbering system. (b) It uses multi-character ‘digits’ 0-255.
(c) Each digit represents 8 bits. (d) In writing the digits are normally
separated by dots.
(263) What is an octet?
8 bits
(264) How many bits in a byte?
8
(265) How many bits a nybble?
4
(266) What are the two meanings of kilo?
Ten to the third power, and two to the tenth power.
(267) What are the two meanings of meg?
Ten to the sixth power. Two to the 20th power.
(268) What are the two meanings of gig?
Ten to the ninth power. Two to the 30th power.
(269) Convert binary 11110100010000 to octal
36420
(270) Convert binary 11111111011001011001 to hex.
FF659
(271) Convert octal 16471 to binary
1110100111001
(272) Convert hex 64209 to binary.
1100100001000001001
(273) Convert decimal 162 to binary.
10100010
(274) Convert binary 10001000 to decimal
136
(275) For 19.19.19.19, what class is it?
Class A
(276) For 199.199.199.199, what class is it?
Class C
(277) What does a net mask look like?
32 bits, with all the 1s rst, then all the 0s
(278) In a net mask, what do the 1s mean?
The 1s indicate the part of the address that is the network number.
(279) In a net mask, what do the 0s mean?
The 0s indicate the part of the address that is the host number
(280) What is the IPv4 special address range for the local network?
0.0.0.0/8
(281) What is the Class A Private Address Range?
10.0.0.0/8
(282) In the Class A Private Address Range, how many (classful) networks are
there?
1
(283) In the Class A Private Address Range, what is the rst IP address?
10.0.0.0
(284) In the Class A Private Address Range, what is the rst host address?
10.0.0.1
(285) In the Class A Private Address Range, what is the last IP address?
10.255.255.255
(286) In the Class A Private Address Range, what is the last host address?
10.255.255.254
(287) What is the local host Private Address Range?
127.0.0.0/8
(288) What is the Link Local (APIPA) Private Address Range?
169.254.0.0/16
(289) How are Link Local (APIPA) addresses assigned?
Each computer picks its own.
(290) What is the Class B Private Address Range?
172.16.0.0/12
(291) In the Class B Private Address Range, how many (classful) networks are
there?
16
(292) In the Class B Private Address Range, what is the rst IP address?
172.16.0.0
(293) In the Class B Private Address Range, what is the rst host address?
172.16.0.1
(294) In the Class B Private Address Range, what is the last IP address?
172.31.255.255
(295) In the Class B Private Address Range, what is the last host address?
172.31.255.254
(296) What is the Class C Private Address Range?
192.168.0.0/16
(297) In the Class C Private Address Range, how many (classful) networks are
there?
256
(298) In the Class C Private Address Range, what is the rst IP address?
192.168.0.0
(299) In the Class C Private Address Range, what is the rst host address?
192.168.0.1
(300) In the Class C Private Address Range, what is the last IP address?
192.168.255.255
(301) In the Class C Private Address Range, what is the last host address?
192.168.255.254
(302) What is the IPv4 global broadcast address?
255.255.255.255
(303) What does CIDR stand for?
classless inter-domain routing
(304) What does CIDR notation look like?
It is written as a slash followed by a number between 0 and 32; for
example, /21
(305) What is the other name for slash notation?
CIDR notation
(306) What is the other name for CIDR notation?
slash notation
(307) For 199.199.199.199, what is the default Net Mask in CIDR and dotted
quad notation?
/24 and 255.255.255.0
(308) For /10, what is the subnet block size?
0.64.0.0
(309) For /23, what is the subnet block size?
0.0.2.0
(310) For /28, what is the subnet block size?
0.0.0.16
(311) For 255.255.248.0, what is the subnet block size?
0.0.8.0
(312) What does VLSM stand for?
variable length subnet mask
(313) What is a software port?
A port is a number that indicates which computer program should receive
the message.
(314) Software port numbers range from 0 up to what number?
65535
(315) What is port 21 normally used for?
FTP, File Transfer (or Transport) Protocol.
(316) What is port 22 normally used for?
SSH, Secure Shell.
(317) What is port 23 normally used for?
telnet
(318) What is port 25 normally used for?
SMTP, Simple Mail Transfer (or Transport) Protocol
(319) What is port 80 normally used for?
HTTP, Hyper Text Transfer (or Transport) Protocol.
(320) What is port 443 normally used for?
HTTPS, Hyper Text Transfer (or Transport) Protocol Secure.
(321) What is a client?
A computer that makes requests.
(322) What is a server?
A computer that answers requests.
(323) What is the well-known port number for web servers?
80
(324) What is the well-known port number for secure web servers?
443
(325) What is the well-known port number for file transfer protocol (ftp) servers?
21
(326) What is the well-known port number for email servers?
25