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
 
        
             
        
        
        
Can you please elaborate? This is as your question isn't very clear.
        
                    
             
        
        
        
Bob Kahn and Vint Cerf were both pioneers of the Internet, and Tim Berners-Lee was known for inventing the WWW.
        
             
        
        
        
Answer:
data source
Explanation:
The main aim of a data source is for the gathering of all necessary information that is needed to access a data. Since he has used the information to create a pie chart, this means that some data were used for the creation of this pie chart. Hence the information used for the creation of the pie chart is the data source for the information illustrated on the pie chart.
 
        
             
        
        
        
The private modifier specifies that only other members of the same class can access the member. The protected modifier restricts access to the member to within its own package.
<h3>What are public and private modifiers?</h3>
The public access modifier permits code from both inside and outside the class to access the class's methods and properties, whereas the private modifier prevents outside code from accessing the class's methods and properties.
Thus,  private modifier is the member.
For more details about private modifier, click here
brainly.com/question/15108837
#SPJ1