Exam 15: Introduction to Scripting

arrow
  • Select Tags
search iconSearch Question
  • Select Tags

Which logical operator returns a true if a true if either expression or condition is true? [ AND | OR | NOR | NOT ]

Free
(Short Answer)
4.8/5
(35)
Correct Answer:
Verified

OR

Which relational operator would be used in a script to mean less than or equal to? [ < | > | <= | >= ]

Free
(Short Answer)
4.8/5
(32)
Correct Answer:
Verified

<=

What are two advantages of scripts? (Choose two.)

Free
(Multiple Choice)
4.8/5
(44)
Correct Answer:
Verified

A , D

What command is used to create a directory? [ cd | make | create | md ]

(Short Answer)
4.7/5
(36)

List one way a new technician could change his or her perspective when modifying a script for the first time and the modifications tried already have failed.

(Essay)
4.8/5
(35)

Which scripting language would most likely have the net use command as a part of it used in a corporate environment on Windows computers? [ PowerShell | JavaScript | Python | VBScript ]

(Short Answer)
4.8/5
(41)

Which type of loop is used in the following commands from a PowerShell script? PS> while($val -ne 7) { $val++ Write-Host $val } [ for | while | iterative | endless ]

(Short Answer)
4.8/5
(32)

Consider the following batch file commands: set num1=7 set num2=8 set numResult=%num1%*%num2% Echo "numResult" What is the output? [ 15 | 7.8 | 56 | .875 ]

(Short Answer)
4.9/5
(30)

Which part of a script is a named memory location which stores data of a specific type? [ declaration | keyword | variable | output ]

(Short Answer)
4.8/5
(32)

What is the purpose of the following command issued as part of a Python or JavaScript? Python: Answer1 = 0 JavaScript: Answer1 = 0;

(Multiple Choice)
4.9/5
(34)

Which part of a script is not executed by the computer, but is very important for any technician that might later have to modify the script? [ comment | construct | character strings | loop ]

(Short Answer)
4.8/5
(27)

The ____ is the starting point for all directories. [ beginning | root directory | home directory | flash ]

(Short Answer)
5.0/5
(34)

Which type of number would a scripting language consider the value 3.5? [ partial | fraction | integer | floating-point ]

(Short Answer)
4.7/5
(43)

What is an environment variable as it relates to Windows?

(Multiple Choice)
4.9/5
(29)
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)