Answer:
The posture is how someone sits at his or her computer.
Hope this helps ;-))
Answer:
The wrong price can also negatively influence sales and cash flow. tbh there is no point to me
Explanation:
Answer:
Swapping two numbers means exchange the values of two variables with each other.
Answer:
C
Explanation:
Both Table and Format as Table can be used to create a table
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.