Consider the following code sequence:
Which of the following statements will compile without syntax or runtime errors if they replace the comment line?
public class Main{ public int i; public static void main(String argv[]){ Main sc = new Main(); // Comment line } }
a, b, and d
Option c is incorrect because you cannot assign a double value to an integer variable.