Webmasters monitor the server to be sure it is running,Some webmasters decide what kind of computer will hold a websites information ,Some webmasters abuse other sites by exploiting their comment fields.
It is A outputting (if you want I can show what it says in the dictionary)
Answer:
public class num9 {
public static void main(String[] args) {
int sum =0;
int num =5;
for(num =5; num<=500; num+=5){
System.out.println(num);
sum +=num;
}
System.out.println(sum);
}
}
Explanation:
- Declare and initialize the variables sum and num
- Use a for loop with the condition for(num =5; num<=500; num+=5) Since the loop will increment by 5 and run from 5 to 500
- Within the loop, add num to sum at each iteration
- Print all elements on seperate lines
- Outside the loop, print the final value of sum
Create a for loop
Answer: D.) All of the above. (happy to help)
Explanation: A.)
problem solving
B.)
expertise
C.)
content
D.)
all of the above