Answer:
It goes like:
public class Program
{
public static void main(String[] args)
{
int j=18;
int sum=0;
for (int i =1; i<7; i++)
{
sum=sum+(i*(j-2));
j=j-2;
}
System.out.println(sum);
}
}
Explanation:
<u>Variables used: </u>
j : controls the first number in product and decreases by 2 each time the loop runs.
sum: saves the values of addition as the loop runs.
1. true
2.false
3.true
4. many - I'm not too certain of this answer
5. track changes
Answer:
No, not that one. Try again.
Explanation:
string comparison is case sensitive.
Go to the me colum when you first open the app
Answer:
The second option
90 > 85
The statement above means 90 is more than 85 which is true.