Question 1hardmultiple choice
Read the full Automation, Orchestration, and Scripting explanation →XK0-006 Automation, Orchestration, and Scripting • Complete Question Bank
Complete XK0-006 Automation, Orchestration, and Scripting question bank — all 0 questions with answers and detailed explanations.
A Bash script contains the following function:
```bash myfunc() { local result="$(( $1 + $2 ))" echo "$result"
}
```
If the script calls `myfunc 5 10`, what is the output?