Monday
May242004
Exam Question 1

Most people in my programming exam got the problem with this code. Can you? There'll be another tomorrow
switch (command) {
case 'a':
case 'A':
AddEntry();
case 'd':
case 'D':
DeleteEntry();
default :
System.out.println ( "Invalid command" ) ;
}


Reader Comments