Prework - Pre-Test Flashcards

1
Q

What are the 4 general types of Virtualization?

A
  • Bare-Metal Based-Hypervisor
  • Software Based-Hypervisor
  • Cloud Based
  • Containerization
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the # stand for in BASH?

A

Comments the rest of the text so it isn’t executed

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

What does RAM stand for?

A

Random Access Memory

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

What would the following script display in the terminal?

echo hello world > /dev/null

A

Nothing

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

What are the correct Linux Shell I/O (Input/Output) Streams?

A
  • STDIN
  • STDOUT
  • STDERR
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Linux File System - What is the command line symbol for the root directory?

A

/

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

Who wrote the Linux kernel?

A

Linus Torvald

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

TCP, when initializing a connection, has a ____-way handshake?

A

3

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

UDP stands for ____________?

A

User Datagram Protocol

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

A switch is a hardware device that belongs on what layer of the OSI model?

A

Layer 2

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

Information sent in layer 3 communications is called a _____?

A

Packet

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

DHCP stands for ___________?

A

Dynamic Host Configuration Protocol

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

By default (standard), what port does SSH operate on? (1-65535)

A

22

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

Which of these is an example of a private IP address?

A
  1. 168.17.0
    (192. 168.x.x)
    (172. 16.x.x)
    (10. x.x.x)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which of these is an example of a Floating Point data type?

A

3.75

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

Which of the following Python keywords comprise a conditional statement?

A
  • If
  • Else
  • Elif
17
Q

True or False: Python 3 is backwards compatible with Python 2.

A

False.

18
Q

Which of the following answers are simple data types?

A
  • Floating Point Numbers
  • String
  • Integers
19
Q

Which of the following are compound data types?

A
  • Lists

- Dictionaries

20
Q

What is a conditional statement?

A

A statement that controls the flow of execution depending on some condition.