What will be the output of the following Java program?
Check your spam folder if password reset mail not showing in inbox????
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
class array_output { public static void main(String args[]) { char array_variable [] = new char[10]; for (int i = 0; i < 10; ++i) { array_variable[i] = 'i'; System.out.print(array_variable[i] + "" ); i++; } } } a) i i i i i b) 0 1 2 3 4 c) i j k l m d) None of the mentioned View Answer Answer: aRead more
{
i++;
}
}
}
a) i i i i i
b) 0 1 2 3 4
c) i j k l m
d) None of the mentioned
View Answer
Answer: a
Explanation: None.
output:
$ javac array_output.java $ java array_output i i i i i
See lessa) i i i i i
a) i i i i i
See less