Question 1easymultiple choice
Read the full Scripting, Containers, and Automation explanation →XK0-005 Scripting, Containers, and Automation • Complete Question Bank
Complete XK0-005 Scripting, Containers, and Automation 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?