+91-85006-22255
What will be the output of the following program?
public class Delta{ static boolean Oka(char c) { System.out.print(c + " "); return true; } public static void main(String[] argv) { int i = 0; for (Oka('A'); Oka('B') && (i < 2); Oka('C')) { i++; Oka('D'); } }}
Topic: Static and Non Static Variables - Static and Non Static Methods
Read this topic Take test on this topic
Open In App