Write a program in Java to display the first 10 terms of the following series:
10, 20, 30, 40, ……..
310 Likes
public class KboatSeries { public static void main(String args[]) { for (int i = 10; i <= 100; i += 10) { System.out.print(i + " "); } } }
Answered By
161 Likes
To execute a loop 10 times, which of the following is correct?
Which of the following are entry controlled loops?
(a) for
(b) while
(c) do..while
(d) switch