final system ad Flashcards

(46 cards)

1
Q

the process of organizing, storing, securing, and
distributing digital files—such as documents, images, videos, and software—within an
organization. It ensures that digital assets are properly maintained, licensed, and accessible only to authorized
users.

A

Digital Content Management (DCM)

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

Files are stored in centralized repositories or content
management systems (CMS).

A

Storage and Organization

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

Ensures only authorized users can access or edit content.

A

Access Control

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

Maintains file history and allows recovery of previous
versions.

A

Backup and Versioning

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

Ensures legal use of digital materials and
software.

A

Licensing and Rights Management

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

what is the Tools/Command in this

Platform: Windows
Description: Cloud based content management

A

OneDrive, Sharepoint

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

What is the tools/commands in this:

Platform: Linux

Description:

automate backup and sync

A

rsync,scp,cron jobs

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

What is the commands/tools in this:

Platform: Cross Platform

Description: Versionning and file synchronization

A

Git, Dropbox

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

True or False: An IT administrator in a university sets up a shared folder using SharePoint to store lecture
materials. Permissions are set so that only teachers can edit, while students can only view or
download.

A

True

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

Which is Digital Content Management Facts?
* Protects intellectual property through licensing and encryption.
* Ensures version control and prevents data loss.
* Supports collaboration and multi-user access.
* Relies on both local and cloud storage solutions.
* Integrates with DRM (Digital Rights Management) systems to control usage rights.

A

All of the above

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

a memory management feature that allows the operating system to
compensate for physical RAM shortages by temporarily transferring data from RAM to disk
storage (paging file). It gives the illusion of having more RAM than is physically installed.

A

Virtual Memory

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

uses a paging file (pagefile.sys) located on the system drive.
When the RAM is full, Windows moves less-used data to the paging file.

A

Windows Virtual Memory

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

True or False: A computer with 8 GB RAM and a 16 GB pagefile can handle applications that require up to 24
GB of virtual memory combined.

A

True

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

Arrange the steps to manage virtual RAM

Enter the Initial size (MB) and Maximum size (MB) values.

Click the Advanced tab → Virtual Memory → Change.

Click Set, then OK, and restart the computer.

Choose a drive and select Custom size.

Uncheck “Automatically manage paging file size.”

Select Advanced system settings → Performance → Settings.

Right-click This PC → Properties.

A
  1. Right-click This PC → Properties.
  2. Select Advanced system settings → Performance → Settings.
  3. Click the Advanced tab → Virtual Memory → Change.
  4. Uncheck “Automatically manage paging file size.”
  5. Choose a drive and select Custom size.
  6. Enter Initial size (MB) and Maximum size (MB) values.
  7. Click Set, then OK and restart the computer.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Recommended size of virtual ram

A

Minimum: 1.5 × RAM size
Maximum: 3 × RAM size

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

True or False: If RAM = 8 GB (8192 MB) → Virtual Memory = 12288 MB initial, 24576 MB maximum.

A

True

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

Which is Virtual Memory Facts?

  • Prevents system crashes caused by insufficient physical RAM.
  • Located on the hard drive or SSD as pagefile.sys.
  • Slower than RAM but provides stability under heavy load.
  • Can be optimized by placing the pagefile on a faster drive (SSD).
  • Misconfiguration may lead to “Low Virtual Memory” errors.
A

All of the above

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

commands that opens system properties directly

A

sysdm.cpl

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

command that view or modify pagefile settings (command prompt)

A

wmic pagefileset

20
Q

commands that modify registry entries for virtual memory

A

Set-ItemProperty (PowerShell)

21
Q

yes or no: these are the best practices in confinguring virtual memory

  • Use “Automatically manage paging file” for standard users.
  • For high-performance systems, allocate custom values based on workload.
  • Avoid disabling virtual memory completely.
22
Q

writing small programs (scripts) that automate repetitive system tasks,
configurations, or processes.

23
Q

often involves simple command sequences executed
by an interpreter (like PowerShell, Bash, or Python).

24
Q

true or false: PowerShell: Automate user account creation.
* Bash: Automate daily backups on a Linux server.

25
What is the scripting type of this: Platform: Windows Extension: .bat / .cmd Description: Automates commands in Command Prompt.
Batch Script
26
What is the scripting type of these: Platform: Windows Extension: .bat / .cmd Description: Automates commands in Command Prompt.
PowerShell Script
27
What is the scripting type of these? Platform: Linux Extension: .sh Description: Executes multiple Linux commands.
Shell Script (Bash)
28
What is the scripting type of this: Platform: Cross-platform Extension: .py Description: Used for automation, data processing, and system control.
Python Script
29
Which is wrong in these: * Batch: echo Hello World * PowerShell: Get-Process * Bash: sudo apt update && sudo apt upgrade
None
30
5 uses of script in system administrators
automation configuration management monitoring user management deployment
31
Repeating daily tasks like backups or updates.
automation
32
Setting up new systems automatically.
configuration management
33
Logging or tracking system performance.
monitoring
34
35
Installing or configuring software on multiple systems.
deployment
35
Adding or removing users and permissions.
user management
35
is this for powershell script: Restart Network Service Restart-Service -Name "Dhcp" Write-Output "Network Service Restarted Successfully!"
yes
36
is this bash script: #!/bin/bash tar -czf /backup/$(date +%F)_backup.tar.gz /home/user/Documents echo "Backup Completed!"
yes
37
true or false: Scripts run in interpreters (not compiled).
true
38
improves system efficiency and reduces human error.
automation
39
most common scripting tools for admins
powershell and bash
40
requires administrator or root privileges for some commands
scripting
41
can be scheduled (windows task scheduler/linux crom)
scripts
42
what is the topic of this: Key Tools/Concepts: PowerShell, Bash Example Task: Automate updates or backups.
scripting basics
43
44