Exam 15: Introduction to Scripting
Exam 1: Introduction to the World of IT20 Questions
Exam 2: Connectivity12 Questions
Exam 3: On the Motherboard18 Questions
Exam 4: Introduction to Configuration19 Questions
Exam 5: Disassembly and Power18 Questions
Exam 6: Memory20 Questions
Exam 7: Storage Devices20 Questions
Exam 8: Multimedia Devices19 Questions
Exam 9: Printers13 Questions
Exam 10: Mobile Devices20 Questions
Exam 11: Computer Design and Troubleshooting Review11 Questions
Exam 12: Internet Connectivity, Virtualization, and Cloud Technologies13 Questions
Exam 13: Networking13 Questions
Exam 14: Introduction to Operating Systems18 Questions
Exam 15: Introduction to Scripting14 Questions
Exam 16: Advanced Windows13 Questions
Exam 17: Macos and Linux Operating Systems20 Questions
Exam 18: Computer and Network Security20 Questions
Exam 19: Operational Procedures15 Questions
Exam 20: Computer Security and Deployment361 Questions
Select questions type
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:
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:
<=
What are two advantages of scripts? (Choose two.)
Free
(Multiple Choice)
4.8/5
(44)
Correct Answer:
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)
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)