4.8, 4.9 Flashcards
What is Floating point math ?
A value that contains a decimal number.
What is text also known as ?
A string
Can mathematical computations be performed on a string ?
No. They are not numerical in value.
What are boolean Values ?
True or false values.
What is a reserved word ?
A word in the scripting language that cannot
be used as a variable.
What are the two basic loops ?
For loops and while loops.
Whats the difference between a for loop and a while loop
For Loop - defined beginning and end.
While Loop - Continues to loop until a condition is met or the programme is exited.
What is the file extension for Windows Batch Script ?
.bat or .cmd (more common)
Where are batch scripts commonly used today ?
Command prompt. (Saved to a file)
What port does RDP communicate over ?
TCP 3389
What RDP client is built into Windows ?
The Remote Desktop Connection client
What level are scripting languages considered ?
High
Which environment variable is not inherited?
A program variable is the least significant and not inherited.
Which statement will load a PowerShell variable xvar with a value of 2?
$xvar = 2
Which scripting language allows for the use of the Component Object Model (COM)?
VBScript language allows for the use of the Component Object Model (COM).
What must be done before a Bash script can be executed?
Chmod
Which statement will load a JavaScript variable mvar with a value of 8?
mvar = 8;