MCQOPTIONS
Saved Bookmarks
| 1. |
Think of a way to write addition of four numbers using maximum possible braces? |
| A. | (+ 1 2 3 4) |
| B. | (+ (+ 1 2) (+ 3 4)) |
| C. | (+ 1 (+ 2 (+ 3 (4)))) |
| D. | (+ 1 2 (+ 3 4)) |
| Answer» C. (+ 1 (+ 2 (+ 3 (4)))) | |