WGU D278 ITSW 2113 Scripting & Programming Foundations LATEST FINAL ASSESSMENT REVIEW QUESTIONS & ANSWERS
1. Which of the following Azure services would you utilize
for serverless compute operations?
- A) Azure Virtual Machines
- B) Azure Functions
- C) Azure Batch
- D) Azure Kubernetes Service
- Correct Answer: B) Azure Functions
Rationale: Azure Functions is a serverless compute
service that allows developers to run event-driven code
without having to manage the infrastructure.
2. In scripting, what is the role of a shebang ( !) at the
beginning of a script file?
- A) To declare a variable
- B) To comment on a script
- C) To specify which interpreter to use
- D) To define a function
- Correct Answer: C) To specify which interpreter to use
Rationale: The shebang indicates the script's interpreter
location in Unix-like systems.