Phase 1 - NET100-1 | Configure NICs Flashcards

1
Q

What does NIC stand for?

A

Network Interface Card

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does MAC stand for?

A

Media Access Control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The loopback address is a very important address for computer communications. Which of the following is a loopback address?

A

127.0.0.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What doe the ping command do?

A

Verifies connectivity between two systems using the ICMP protocol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which of the following is a valid IPv4 address?

A

192.168.10.50

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which of the following would give 1 ping only to he specified address?

A

ping -c 1 192.168.10.50

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

You use the cat command on an /etc/hosts files and see the following entry:

127.0.0.1 google.com

What will happen if you ping google.com?

A

You will get a successful ping result, but it will be coming from the local computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the decimal 192 in Hex? (Hint: Google is your friend!)

A

C0

192/16 = 12, remainder is 0
12/16 = 0, remainder is 12 (12 = C)

Going in reverse order –> C0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is 0xFF in binary? (Hint: Google is your friend!)

A

1111 1111

F = 16 = 1111

How well did you know this?
1
Not at all
2
3
4
5
Perfectly