Given this code;
Which two are correct after this class is instantiated and tested?
If the value of j is set to 15, the value of i could be any integer value.
If the value of j is set to 5, the value of i will be 15.
If the value of i is set to 8, the value of j could be any integer value.
If the value of i is set to 5, the value of j will be 1.
If the value of i is set to 6, the value of j will be 18.
If the value of i remains 3, the value of j will remain 9.
Submit