CompTIA A+ 1201 - 4.0 Operational Procedures Flashcards

1
Q

Patch Management Lifecycle

A

Notification
Assessment
Acquisition
Testing
Deployment
Validation

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

Full Backup

A

Backs up all of the chosen data regardless of when it was previously backed up.

Higher time and storage requirements, with low recovery complexity due to single job.

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

Incremental Backup

A

Backs up the new files and folders that have been modified since the last backup job.

Lower time and storage requirements, with high recovery complexity due to multiple jobs.

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

Differential Backup

A

Backs up the new files and folders modified since the last FULL backup.

Moderate time and storage requirements, with moderate complexity due to 2 jobs.

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

Synthetic Backup

A

Synthesizes the previous full backup and the incremental backups over a period of time and combines them.

This erases the previous full backup and becomes the full backup.

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

GFS Backup

A

Grandfather-father-son media rotation.

A label scheme for monthly, weekly and daily backup jobs.

Most recent data (son) has shortest retention period (one week) up to oldest (grandfather) with a longer retention period (one year)

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

3-2-1 Backup Rule

A

3 Copies of your data
Across 2 media types
1 copy held offline and off-site

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

Power Surge

A

Abrupt but brief change in the value of voltage

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

Power Spike

A

A powerful surge, such as the kind caused by lightining.

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

Power Sag

A

Power supply to components briefly dips below required levels

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

Brownout

A

Power from the wall socket is insufficient to allow devices to function correctly.

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

Line Conditioner

A

A device that adjusts voltages in under-voltage and over-voltage conditions to maintain a 120v output.

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

Power Distribution Unit (PDU)

A

A device designed to provide power to other devices that require it.

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

Mean Time Between Failure (MTBF)

A

The rating on a device or component that predicts the expected time between failures.

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

Temperature, Humidity and Ventilation (THV)

A

Excessive heat effects computer reliability, high humidity causes condensation and low humidity can result in Electro-static discharge (ESD)

A decent HVAC system can prevent this.

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

Voltage Clamp

A

Feature of a Surge Protector that cuts off the power flow after a certain voltage is exceeded.

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

Change Management Process

RIAIR

A

1) Request for Change
2) Impact Analysis
3) Approval / Denial
4) Implement Change
5) Review / Reporting

18
Q

Request for Changes (RFC’s)

A

Requests that are made by management staff to implement new features into the IT infrastructure, to be approved by senior management.

19
Q

Standard Operating Procedures (SOP’s)

A

Documented standards for work.

20
Q

Process for Instituting Change to Operational Policies and Procedures

A

1) Implementation of changes should be carefully planned.
2) Organizations should attempt a trial implementation for major changes.
3) Create a rollback or remediation plan (IMPORTANT)
4) Schedule changes to have minimal impact on workflow. Eg; Weekends.
5) After the change is implemented, assess its impact.
6) Review the process and document outcomes.

21
Q

Disaster Recovery Plan (DRP)

A

A documented and resourced plan showing actions and responsibilities to be used in response to critical incidents.

1) Identify scenarios for natural and man-made disasters and options for protecting systems.

2) Identify tasks, resources and responsibilities for responding to a disaster.

3) Train staff in the disaster planning procedures and how to react well to change.

22
Q

Recovery Images Guidelines

A

1) Windows computers come with a recovery image, but the image does not get updated unless you do it manually.

2) Custom recovery images should contain current OS state, plus all desktop apps installed at the boot partition.

3) Any changes to apps or configuration requires a new recovery image to be created.

4) Use recovery images to restore a PC’s or VM’s functionality (OS and Apps)

5) Use file-level backups to restore user profile information and data.

23
Q

Backups Guidelines (RTDD)

A

1) Remember, restoring data from backup provides data that is only as current as the last backup.

2) Test backups after they are created.

3) Determine where backups will be stored, both locally and offsite.

4) Document the account recovery methods that will be needed for any systems, applications or websites used by the organization.

24
Q

Backup Levels (Low to high importance)

A

File -> Image -> Critical Applications

25
Q

.bat

A

Windows Batch File

26
Q

.ps1

A

PowerShell Script

27
Q

.sh

A

Linux Shell Script

28
Q

.vbs

A

VBScript File

29
Q

.js

A

JavaScript file

30
Q

.py

A

Python Script

31
Q

Variables (Scripting)

A

Contains values that can change during program execution.

32
Q

Constants (Scripting)

A

Contains values that do not change during program execution.

33
Q

Identifiers (Scripting)

A

A computer programming component used to access program elements such as a stored value (constant, variable, etc…)

34
Q

Environment Variables (Scripting)

A

A storage location in the OS command Shell.

In a script, the Shell will recognize some variables and replace them with the correct path.

Eg; %SystemDrive% = “$:" %SystemRoot% = $:\Windows

Will always refer to the root drive, regardless of letter assigned.

35
Q

Branch (Scripting)

A

A programming technique used to control flow based on a logical condition and implemented with “if” or “goto” statements.

if [[ some condition ]]; then
do_something
finish

36
Q

Loop (Scripting)

A

A programming technique used to repeat a task until a logical condition is met and implemented with “for” or “while” statements.

37
Q

Integers (Scripting)

A

Whole Numbers

38
Q

Floating Point Numbers (Scripting)

A

Whole numbers that support decimal fractions.

Can also store whole numbers in decimal form -> 4.0

Eg; 4.1, 26.4

39
Q

Boolean Values (Scripting)

A

Indicates that something is either TRUE or FALSE ( 1 or 0 )

40
Q

Characters (Scripting)

A

A single, textual character.

Eg; D, a, 7, $, @ , #

41
Q

Strings (Scripting)

A

A string of text characters.

Eg; “Hello World”, “XYZ”