CompTIA+ Core 2 Part 7

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

.vbs (Visual Basic)

Used within Windows inside Visual Basic

  • Not mainly used because of .ps1 but it does run from other application MS Word, MS Excel, and other MS office products

2
New cards

.bat (Batch File)

Used within Windows inside the command prompt environment

3
New cards

.ps1 (PowerShell)

Used within Windows inside the PowerShell environment and allows for more complex scripts than using batch file

4
New cards

.sh (Bash Script)

used within Linux

5
New cards

.js (JavaScript)

Used for automations in webpages and macOS systems

6
New cards

.py (Python)

Generic scripting language used in Windows, Linux, and Mac

7
New cards

Pseudocode

Generic language used to teach new learners how to program a computer

8
New cards

Shell Script

Text-based file that contains commands that can be interpreted and presented to the computer

9
New cards

Variable

Used to store values and data for different data types

10
New cards

Boolean

A form of data with only two possible values (True or False)

11
New cards

Integer

A variable that stores an integer or a whole number that may be positive or negative

12
New cards

Float/Decimal/Real Number

A variable that stores a decimal number

13
New cards

Character

A variable that can only store one ASCII Character

14
New cards

String

A variable that can store multiple characters

15
New cards

Constant

Like a variable, but cannot be changed within the program once defined

16
New cards

Loop

A type of flow control that controls which order the code will be executed in a given program

17
New cards

For Loop

Used when the number of times to repeat a block of code is known

For i = 1 to 10 OUTPUT(i)

Endfor

18
New cards

While Loop

Used when the number of times to repeat a block of code is not known and will only stop until something happens

i = 0 

While i < 10

OUTPUT(i)

i = i + 1

Endwhile

19
New cards

Do Loop

Used when there’s an indefinite iteration that needs to happen and will only stop until some condition is met at the end of the loop

Do

OUTPUT(i)

i = i + 1

Until i > 10

20
New cards

Logical Control

Used to provide condition based on different logical tests

21
New cards

Echo

Printing on screen

22
New cards

If [condition]

Logical construct

23
New cards

$1

Variable

24
New cards

Basic Automations

Simple or routine task

25
New cards

Machine Restart

Restart machines using scripts

26
New cards

Network Drive Remapping

Done within normal command line interface using a batch file (.bat) or PowerShell

27
New cards

Application Installation

Can use a batch file or PowerShell in Windows or a shell file in Linux