wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Repaso Segundo Parcial Sistemas Operativos

Total questions: 55

Worksheet time: 9mins

Name
Class
Date
1.

What year was UNIX first developed?

a)

1975

b)

1969

c)

1982

2.

Which of the following is considered a core concept of UNIX-based operating systems?

a)

Every application must run as an administrator

b)

Graphical user interface (GUI) is the primary interface

c)

Everything is a file

3.

Which programming language was UNIX originally written in?

a)

Assembly

b)

C

c)

Python

4.

Which of the following is an advantage of UNIX-based operating systems over other systems?

a)

Limited hardware support

b)

Stability and security

c)

High cost

5.

Which type of operating system does macOS use?

a)

DOS-based

b)

Windows-based

c)

UNIX-based

6.

Which is a key benefit of UNIX's multi-user capability?

a)

Multiple users can work simultaneously without interfering with each other.

b)

All users share the same environment settings.

c)

Only one user can be logged in at a time.

7.

What is a significant disadvantage of UNIX operating systems?

a)

No support for networking

b)

Steep learning curve for new users

c)

Lack of hardware compatibility

8.

What is the minimal hardware requirement for most UNIX-based operating systems (e.g., Ubuntu)?

a)

512 MB RAM and 2 GB of hard disk space

b)

4 GB RAM and 25 GB of hard disk space

c)

8 GB RAM and 100 GB of hard disk space

9.

What does the installation process for a UNIX-based OS typically involve?

a)

Partitioning the disk, selecting packages, and configuring settings

b)

Only selecting the OS version to install

c)

No need to select any partitions or file systems

10.

During installation of a UNIX-based OS, which of the following must be selected?

a)

Partition type and file system

b)

Software updates only

c)

Desktop background and screen saver

11.

What is the primary characteristic of a primary partition?

a)

It must be inside an extended partition.

b)

It is a partition used only for data storage.

c)

It is the first partition on the disk and can hold an operating system.

12.

What is the key advantage of an extended partition?

a)

It limits the number of partitions to 4.

b)

It is used for system boot partitions only.

c)

It allows for the creation of multiple logical partitions.

13.

Which of the following is a disadvantage of logical partitions?

a)

They are less flexible than primary partitions.

b)

They require an extended partition to be created first.

c)

They cannot be used to install an operating system.

14.

What is the primary benefit of the ext4 file system?

a)

Better support for large files than FAT32

b)

Lower disk space usage than NTFS

c)

Faster performance and improved reliability over ext3.

15.

Which file system is commonly used in Linux distributions for its balance of performance and reliability?

a)

ext4

b)

FAT32

c)

NTFS

16.

What is the key feature of the XFS file system?

a)

File system support only for macOS

b)

Simple design for small files

c)

High performance for large files and scalability

17.

Which file system is known for its snapshots and is often used in enterprise environments?

a)

FAT32

b)

ZFS

c)

NTFS

18.

Which of the following is a key advantage of Btrfs over ext4?

a)

Native support for snapshots and data checksums

b)

Better compatibility with older Linux kernels

c)

Superior performance with small files

19.

What is a limitation of the FAT32 file system?

a)

It cannot be used on any external drives.

b)

It has a file size limit of 4 GB.

c)

It is incompatible with UNIX-based operating systems.

20.

Which file system is commonly used by Windows operating systems?

a)

XFS

b)

ext4

c)

NTFS

21.

What is the primary function of a repository in UNIX-based operating systems?

a)

To provide a graphical user interface.

b)

To handle hardware drivers.

c)

To store and distribute software packages.

22.

Which type of repository is most commonly used by Linux distributions?

a)

Cloud storage repositories

b)

Git repositories

c)

Package repositories (e.g., APT, YUM)

23.

How does a software repository improve system performance and usability?

a)

By eliminating the need for hardware drivers

b)

By reducing the number of users accessing the system

c)

By providing an easy way to install and update software

24.

Which of the following is a repository format used in Ubuntu Linux?

a)

APT

b)

YUM

c)

RPM

25.

What is the role of the /etc/apt/sources.list file in Ubuntu?

a)

It lists the software repositories the system uses.

b)

It controls the user permissions for repositories.

c)

It tracks the hardware devices connected to the system.

26.

What is a key feature of the ZFS file system?

a)

It is only available for Windows systems

b)

Lightweight design with minimal resource usage

c)

Advanced data integrity, compression, and snapshot capabilities

27.

What does the installation process for a UNIX-based OS typically require in terms of disk partitions?

a)

Creation of at least one root partition and swap space

b)

Only one partition for the root directory

c)

A minimum of 3 partitions for system, data, and backup

28.

What is the function of the mount command in UNIX-based systems?

a)

To attach a storage device to a directory in the file system

b)

To install the operating system

c)

To create a new file system on a disk

29.

What is a disadvantage of using a file system like NTFS in a UNIX-based operating system?

a)

Slower performance compared to ext4

b)

Lack of native support and compatibility issues

c)

Limited support for large files

30.

How do you open the terminal in Linux?

a)

Ctrl + Shift + T

b)

Ctrl + Alt + T

c)

Ctrl + Alt + C

31.

What command is used to shut down the system immediately?

a)

sudo halt

b)

sudo poweroff

c)

sudo shutdown now

32.

Which command restarts the system?

a)

sudo restart

b)

sudo reboot

c)

sudo reboot now

33.

Which command is used to list files and directories?

a)

ls

b)

dir

c)

list

34.

How can you list all files, including hidden ones?

a)

ls -a

b)

ls -l

c)

dir -a

35.

What command is used to change directories?

a)

cd-to /path/to/directory

b)

move /path/to/directory

c)

cd /path/to/directory

36.

How do you return to the home directory?

a)

cd ~home

b)

cd /home

c)

cd ~

37.

Which command is used to move up one directory level?

a)

cd ../

b)

cd ..

c)

cd ~

38.

What command is used to copy a file?

a)

move myfile.txt myfile_copy.txt

b)

cp myfile.txt myfile_copy.txt

c)

copy myfile.txt myfile_copy.txt

39.

Which command moves or renames a file?

a)

mv myfile_copy.txt my_directory/

b)

copy myfile_copy.txt my_directory/

c)

rename myfile_copy.txt my_directory/

40.

What command displays the content of a file?

a)

view myfile.txt

b)

less myfile.txt

c)

cat myfile.txt

41.

Which command is used to view file content page by page?

a)

cat myfile.txt

b)

more myfile.txt

c)

less myfile.txt

42.

How would you search for files in the current directory that have a .txt extension?

a)

find . -ext "*.txt"

b)

search . -name "*.txt"

c)

find . -name "*.txt"

43.

Which command shows system information?

a)

sysinfo

b)

uname -a

c)

systeminfo

44.

Which command shows disk usage?

a)

df -h

b)

diskusage

c)

df -l

45.

How would you create a new directory named Lab in your home folder?

a)

create ~/Lab

b)

make ~/Lab

c)

mkdir ~/Lab

46.

Which command lists the contents of the Lab directory?

a)

ls ~/Lab

b)

dir ~/Lab

c)

list ~/Lab

47.

How do you navigate to the Projects directory inside Lab?

a)

cd ~/Lab/Projects

b)

cd ~/Projects

c)

cd Projects

48.

Which command creates a new file named README.txt inside Project1?

a)

make ~/Lab/Projects/Project1/README.txt

b)

touch ~/Lab/Projects/Project1/README.txt

c)

create ~/Lab/Projects/Project1/README.txt

49.

Which command opens a file in the nano text editor?

a)

edit ~/Lab/Projects/Project1/README.txt

b)

nano ~/Lab/Projects/Project1/README.txt

c)

open ~/Lab/Projects/Project1/README.txt

50.

What command would you use to copy README.txt from Project1 to the Notes directory?

a)

cp ~/Lab/Projects/Project1/README.txt ~/Lab/Notes/

b)

move ~/Lab/Projects/Project1/README.txt ~/Lab/Notes/

c)

copy ~/Lab/Projects/Project1/README.txt ~/Lab/Notes/

51.

Which command renames README.txt in the Notes directory to NOTES.txt?

a)

rename ~/Lab/Notes/README.txt ~/Lab/Notes/NOTES.txt

b)

mv ~/Lab/Notes/README.txt ~/Lab/Notes/NOTES.txt

c)

mv ~/Lab/Notes/README.txt NOTES.txt

52.

Which command deletes the NOTES.txt file?

a)

rm ~/Lab/Notes/NOTES.txt

b)

del ~/Lab/Notes/NOTES.txt

c)

delete ~/Lab/Notes/NOTES.txt

53.

Which command checks the permissions of the README.txt file in Project1?

a)

perm ~/Lab/Projects/Project1/README.txt

b)

check ~/Lab/Projects/Project1/README.txt

c)

ls -l ~/Lab/Projects/Project1/README.txt

54.

Which command changes the permissions of README.txt so that only the owner can read and write?

a)

chmod 400 ~/Lab/Projects/Project1/README.txt

b)

chmod 600 ~/Lab/Projects/Project1/README.txt

c)

chmod 777 ~/Lab/Projects/Project1/README.txt

55.

Which command changes the ownership of README.txt to another user?

a)

sudo changeowner username ~/Lab/Projects/Project1/README.txt

b)

sudo chown username ~/Lab/Projects/Project1/README.txt

c)

chown username ~/Lab/Projects/Project1/README.txt