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.
It gains purchasing power. Less money in circulation = more value.
Answer:
binary computer natural language
Answer:
Answer is:
Client-Server Network
- expensive to set up
- has a central server
- easy to track files
- useful for a large organization
Peer-to-peer Network
- useful for a small organization
- difficult to track files
- inexpensive to set up
- does not have a central server
Explanation:
<em>Client-Server Network is ideal for bigger network set up like offices and companies where there will be a central server involved with several clients to access and connected with the server. This is the normal network set up to companies. While, Peer to peer network is ideal for much smaller network, which consists of only two computers to communicate and share files. This network is normally temporary and inexpensive since in only works with two computers.</em>