adplus-dvertising
frame-decoration

Question

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: (b).(+ (+ 1 2) (+ 3 4))

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Think of a way to write addition of four numbers using maximum possible braces?