Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java Programming, Data Structures, and Data Design, 45 points We are hired to implement an interactive dictionary. Our dictionary takes input from users and uses

Java Programming, Data Structures, and Data Design, 45 points We are hired to implement an interactive dictionary. Our dictionary takes input from users and uses the input as search key to look up values associated with the key. Requirements: - Coding: No hard coding, https://en.wikipedia.org/wiki/Hard_coding . -

Data Source: Store the original data in a set of enum objects. Each keyword, each part of speech, and each definition must be stored in a separate data field. Do not combine them such as storing three parts in one String. -

Data Structure: Use existing data structure(s) or creating new data structure(s) to store our dictionarys data. -

Data Loading: When our program starts, it loads all the original data from the Data Source into our dictionarys data structure. Data Loading must finish before our program starts interacting with users. -

User Interface: A program interface allows users to input search keys. This interface then displays returned results. Our program searches the dictionarys data (not the Data Source) for values associated with the search keys.

Program Analysis to Program Design, 10 points.

Please think Interviews. In 1 full page, please explain the following in detail: Your analysis of the provided information and the provided sample output. Please think Clients and think Sales.

What problem you are solving. Please explain it clearly then define it concisely.

Please think Problem Solving.

How you store data in enum objects. And why. Please think Data Structures and think Data Design.

Which data structure(s) you use/create for your dictionary. And why. Think Data Structures and think Data Design.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Linked Data A Geographic Perspective

Authors: Glen Hart, Catherine Dolbear

1st Edition

1000218910, 9781000218916

Students also viewed these Databases questions

Question

2. To compare the costs of alternative training programs.

Answered: 1 week ago