Identifying Boundary Cases

Practice Questions

Computer Science › Identifying Boundary Cases

Questions
1
1

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);

Return to subject