154k views
2 votes
You are hired to create a simple Dictionary application. Your dictionary can take a search key from users then returns value(s) associated with the key. - Please explain how you would implement your dictionary. - Please state clearly which data structure(s) you will use and explain your decision. - Please explain how you communicate between the data structures and between a data structure and an interface.

1 Answer

1 vote

Answer:

The application should have a form user interface to submit input, the input is used to query a database, if the input matches a row in the database, the value is displayed in the application.

Step-by-step explanation:

The data structure in the database for the dictionary application should be a dictionary, with the input from the user as the key and the returned data as the value of the dictionary.

The dictionary application should have a user interface form that submits a query to the database and dictionary data structure returns its value to the application to the user screen.

User David Hammen
by
4.8k points