What is sum after the following loop terminates at point a


What is sum after the following loop terminates at Point A?

int sum = 0;
int item = 0;
do {
item++;
sum += item;
if (sum > 3) break;
}while (item < 5);
//Point A

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: What is sum after the following loop terminates at point a
Reference No:- TGS0134266

Expected delivery within 24 Hours