Find the value of sum after the given program segment is executed. (Here i, j, k, increment,

Question:

Find the value of sum after the given program segment is executed. (Here i, j, k, increment, and sum are integer variables.)
increment : = 0
sum : = 0
for i := 1 to 10 do
for j : = 1 to i do
for k : = 1 to j do
begin
increment : = increment + 1
sum := sum + increment
end
Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: