Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In the following code, how many times is the statement sum = sum + i; executed? public class ArithmeticSum { public int AriSum ( int

In the following code, how many times is the statement sum = sum + i; executed?
public class ArithmeticSum {
public int AriSum(int val){
int sum =0;
int i =1;
while(i <= val){
sum = sum +i;
i++;
}
return sum;
}
public static void main(String[] args){
ArithmeticSum aSum = new ArithmeticSum();
System.out.println("The arithmetic sum is "+ aSum.AriSum(7));
System.out.println("The arithmetic sum is "+ aSum.AriSum(8));
}
}
Group of answer choices
12
15
0
10

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Accounts Demystified How To Understand Financial Accounting And Analysis

Authors: Anthony Rice

4th Edition

0273663348, 9780273663348

Students also viewed these Databases questions