What will be the output of following program?
import java.io.*;
import java.util.*;
public class BlackAndWhite {
public static void main(String[] args) throws Exception {
Properties p = new Properties();
p.setProperty("email", "************@gmail.com");
p.setProperty("name", "Oleti Kiran Kumar");
p.store(new FileWriter("oleti.properties"), "Properties Example Program");
BufferedReader br = new BufferedReader(new FileReader("oleti.properties"));
String line = null;
int i = 1;
while ((line = br.readLine()) != null) {
if (i != 2)
System.out.println(line);
i++;
}
}
}