Which of the following statements are correct if they replace the comment line?
public class Main{ public int i; public static void main(String argv[]){ Main sc = new Main(); // Comment line } }
b and d
A is incorrect since instance variables need to be used with an object.
C is incorrect since instance variables cannot be used with a classname.