[Solved] 1 5 B 3 Output Following Commands Echo 2 3 B Echo 2 3 B Explain Results 2 Side Loop Action Q37253964
1. if a=5 and b = 3, what is the output of the followingcommands?
$ echo $(( 2 * $a + 3 * $b ))
$ echo $(( 2 * a + 3 * b ))
Explain the results.
2. In side a for, while, or until loop what action occurs whenyou use the statement “break”? What happens if you use”continue”?
Expert Answer
Answer to 1. if a=5 and b = 3, what is the output of the following commands? $ echo $(( 2 * $a + 3 * $b )) $ echo $(( 2 * a + 3 * … . . .
OR