R
Q. What is the output of the below Java program?
int balls[], rounds=3; balls = new int[rounds]; for(int i=0; i<balls.length; i++) balls[i] = (i+1)*2; for(int j=0; j<balls.length; j++) System.out.print(balls[j] + ",");
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following is not a built-in functional interface in Java 8?
Q. What is the output of below code snippet?
Q. _______ is passed to a method by use of call-by-reference.
Q. In which of the following package Exception class exist?
Q. The following is an example of a boolean expression
Q. What is the default buffer size used by any buffered class?
Q. Which of the following is not a valid flow control statement?
Q. Identify the output of the following program.
Discusssion
Login to discuss.