Question: Develop a java program to define an Symbol table class so that each symbol is associated with a numeric value. The two main methods are
Develop a java program to define an Symbol table class so that each symbol is associated with a numeric value. The two main methods are set() and get():
void set(String sym, int value); int get(String sym);
The set() method associates the int value with the symbol sym, while the get() method performs the complement of retrieving the int value previously associated Define appropriate exceptions so that clients of the Symbol table may respond to conditions appropriately. For example, when they retrieve the value of a nonexist clients can either stop execution and display an error message or use a default value of 0
Symbol Numeric Value

Symbol Numeric Value 100 $ 105 200 205 300
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
