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'); (i < 2) && Oka('B'); Oka('C'))
{
i++;
Oka('D');
}
}
}