Computer Science › Identifying Boundary Cases
Identify a user error that could occur in this program
UserInput ui = new UserInput(); // input from the user
int s = (Integer)ui;
System.out.println(s);
The user input could not be an integer
There is nothing wrong
The parseInt statement is incorrect
The user can never do anything wrong