Answer:John Mauchly and Presper Eckert
Explanation:
Answer:
Debugging is the correct answer to the given question.
Explanation:
Debugging is the process detect and eliminate the bugs in the software application .The debugging is the play important role in any software application because if we do not remove the bugs or errors in the software application we do not get error free software application .
The debugging is comes under the category of the system development life cycle .The main objective of debugging to prohibit the programmer or the device from operating inappropriately.The programmer is checking the source code of the program find the bugs and correct it .
Answer:
Types of energy sources include;
- Geothermal energy
- Solar energy
- Wind power
- Nuclear energy
- Hydropower
- Coal burning
- Natural gas
- Biomass energy
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:
Centralisation
dashboard , programmatic access
Explanation:
hope it helps u
mark me as brainlist