Midterm (True/False) Flashcards

1
Q

You can switch from one shell to another by typing the shell’s name on the command line.

A

T

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

UNIX/Linux are not case sensitive.

A

F

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

The clear command has no options or arguments.

A

T

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

Most shells keep a list of your recently used commands and allow you to recall a command without retyping it.

A

T

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

The less command scrolls only down, whereas more enables you to scroll down and up.

A

F

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

A disadvantage of ufs is that it does not support journaling

A

F

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

A directory is a special kind of file that can contain other files and directories.

A

T

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

UNIX/Linux systems interpret a single dot character to mean the current working directory.

A

T

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

The rm -r command can be used to delete a directory that is not empty.

A

T

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

Files that contain nonprintable characters, such as machine instructions, are called binary files

A

T

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

In vi, a tilde (~) precedes all line-oriented commands.

A

F

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

Moving and renaming a file are essentially the same operation.

A

T

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

When you use cat to combine two files into a third file, the first line of the output contains the first line of the first file followed by the first line of the second file.

A

F

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

When you use the paste command, by default, the pasted results appear in columns separated by commas.

A

F

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

You can complete a project using awk that you cannot complete using a combination of paste, cut, sort, and join.

A

T

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

You can use the less command with a directory to view its contents one screen at a time, such as less /sbin.

A

T

17
Q

The pipe operator can connect several commands on the same command line.

A

T

18
Q

When using wc, you cannot specify all three options (-l, -w and -c) in the command line at the same time.

A

F

19
Q

A popular use of pr is to convert lowercase characters to uppercase characters.

A

F

20
Q

You can use the vi editor to create script files

A

T