SAM PRELIM Flashcards

(54 cards)

1
Q

(or program) is a series of related instructions that tells the computer what task(s) to do and
how to perform them

A

Software

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

consists of the programs that control or maintain the operations of the
computer and its devices

A

System Software

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

is a set of programs that coordinates all the activities among
computer hardware devices

A

Operating System

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

allows a user to perform maintenance-type tasks usually related to
managing a computer, its devices, or its programs.

A

Utility program

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

consists of programs designed to makes users more productive and/or
assist them with personal tasks.

A

Application Software

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

3 Factors to be Considered Before Installing Software

A

Necessity, Requirements, and Support

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

is a program used to install, update, upgrade, or remove software

A

Package Manager

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

Three (3)
commonly used package managers in Linux are:

A

rpm, yum, and apt

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

(Red Hat Package Manager) can install software from an RPM file

A

rpm

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

is a front-end tool for rpm so that a user has a minimal
amount to issue when trying to install RPM files

A

yum (Yellowdog Updater Modifier)

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

is a command-line packager tool for Debian Linux

A

apt (Advanced Packaging Tool)

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

The syntax for installing an rpm file is

A

rpm [option] file(s)

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

are software libraries required to complete the installation of a given piece of
software

A

Package Dependencies

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

The yum instruction has three (3) parts:

A

Command, Package Name, Option

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

command in yum includes:

A

install, update, remove, list

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

is the sum of all programs which are required to operate a computer. It is also
used to control and monitor application programs.

A

Operating System

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

has been originally written in the programming
language C, and it is mainly used for scientific-technical applications on mainframes and workstations

A

UNIX

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

is a family of UNIX-like open-source operating systems developed by Linus Torvalds.

A

Linux

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

who developed Linux

A

Linus Torvalds

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

is a collection of software on top
of a Linux kernel.

A

Linux distribution (distro)

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

are interfaces to the operating system, the kernel of the host.

A

Shells

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

what are the two types of shells (linux environment)

A

GUI (Graphical User Interface) and CLI (Command Line Interface)

23
Q

is a graphical representation in which the users can interact with
software or devices through graphical icons.

A

GUI (Graphical User Interface)

24
Q

is a console or text-based representation in which the user types
the commands to operate the software or devices.

A

CLI (Command Line Interface)

25
what are the linux desktop environments (GUI)
GNOME, KDE, XFCE, CINNAMON
26
was once the most popular Linux desktop environment and was used by default on Ubuntu, Fedora, Debian, and most other big Linux distributions (GUI)
GNOME
27
has always been more complex than GNOME, packing in many more configuration options and features (GUI)
KDE
28
is a more lightweight desktop environment, very similar to GNOME. This option is ideal if you want a more traditional desktop environment without full-screen application launchers (GUI)
xfce
29
was developed for Linux Mint in which it is based on GNOME. It uses up-to-date libraries and other software — but it takes that software and tries to create a more traditional-looking desktop with it
CINNAMON
30
displays user manual of any command on the terminal
man (Manual)
31
determines the type of a file.
file (filetype)
32
displays short descriptions of program
whatis
33
locates files and pages of a command
whereis
34
displays the current user
whoami
35
displays the list of files and directory
ls (list)
36
displays the contents of the working directory recursively showing sub-directories and files, and a summary of the total number of sub-directories and files
tree
37
displays parent working directory
pwd (Parent Working Directory)
38
changes the current directory
cd (change directory)
39
creates directory
mkdir (makes directory)
40
removes directory
rmdir (remove directory)
41
copies a file to a specified location
cp (copy file)
42
moves a file to a specified location
mv (move file)
43
removes a file.
rm
44
what are the 3 basic types of files
ordinary files, directories, special files
45
is a file on the system that contains data, text, or program instructions.
ordinary files
46
store both special and ordinary files. For users familiar with Windowsor Mac OS, Unix directories are equivalent to folders.
directories
47
provide access to hardware such as hard drives, CD-ROM drives, modems, and Ethernet adapters.
special files
48
refers to the root directory
/
49
is the directory that contains binaries, that is, some of the applications and programs you can run.
/bin
50
directory contains files required for starting your system.
/boot
51
contains device files. Many of these are generated at boot time or even on the fly
/dev
52
is the dumping ground for system files administrators were not sure where else to put.
/etc.
53
is where you will find your users’ personal directories
/home
54
is where libraries live. Libraries are files containing code that your applications can use
/lib