Javascript Coding Netbeans 1 Consider Code Output Program Produces Simple Program Prints Q37113927

in javascript coding (netbeans)

1). Consider the code below. What is the output the programproduces?

/** A simple program that prints a loop control variable.*/public class SimpleLoop{ public static void main(String[] args) { int i = 0; int limit = 6; while (i < limit) { System.out.println(“i = ” + i); i++; }

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.