Mod 9 Day 1 Flashcards

1
Q

A string used to identify a pattern within data

A

Regular expression

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

True or false, to match a meta-character the escape character is not needed to remove special meaning

A

False

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

True or false a quantifier can only be used on a single token of a Time

A

False

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

Instructions a computer is to perform and is written using interpreted programming languages

A

Source code

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

Source code that reads and converted into machine code and then executed by the Interpreter

A

Interpreted language

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

How a script executes

A

Flow of execution

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

Stores info that can be easily reference and manipulated in a script and provide a way of labeling a type of data with a descriptive name so scripts are easily understood by reader

A

Variable

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

Structured natural language (English) to leave a clear picture of The Logical process necessary to solve a problem

A

Pseudocode

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

Terminate the current Loop and immediately continue with the next statement after the newly terminated Loop body. Code within the current loop after the break statement is skipped and ignored

A

Break statement

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

terminate the current Loop iteration and immediately execute the next iteration of the loop without completing the current interation

A

Continue statement

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

Instance of a class and they do not exist until the programmer creates or initiates them

A

Object

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

Method of changing a value from one data type to another to ensure a function correctly processes a variable

A

Typecasting

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

When an unexpected event happens that require special processing

A

Exception

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

Directing input and output to files and devices other than default input / output devices

A

Redirection

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

What are Powershell file extensions

A

.ps1 .psm1

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

What are UNIX / Bashs file extensions

A

.sh

17
Q

What are pythons file extensions

A

.py

18
Q

\

A

Escape character

19
Q

[ ]

A

Character class

20
Q

{ }

A

Quantifier

21
Q
A

Start of a string anchor

22
Q

$

A

End of a string anchor

23
Q

\b

A

Word boundary anchor

24
Q

.

A

Single Character

25
Q

( )

A

Back references, used for words like a palindrome

26
Q

|

A

Or, used in a group to create a selection of strings