What is the prototype of a parameterized constructor that takes two integers as arguments in the class Example?
public class Example {
// Missing Constructor
}
1
Example(int a, int b)
2
public Example(int a, int b)
3
Example(int, int)
4
public Example(void, void)
5
Question Not Attempted