Answer:
Explanation:
The following constructor needs to be added to the code so that the object called t can be created correctly...
public Tester(int arg1, int arg2) {
num1 = arg1;
num2 = arg2;
}
This basic constructor will allow the object to be created correctly and will take the two arguments passed to the object and apply them to the private int variables in the class. The question does not state what exactly the Tester constructor is supposed to accomplish so this is the basic format of what it needs to do for the object to be created correctly.