Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Solve this problem in Python, Please. If you can solve this problem. Please help me. As soon as possible, Please. Assignment 2: We will build

Solve this problem in "Python", Please.

If you can solve this problem. Please help me. As soon as possible, Please.

image text in transcribed

Assignment 2: We will build a symbol table here. Symbol table is just a regular table, and it used to store variables and other symbols in a structured way. We will create the symbol table here by omitting many actual details from an actual real-life symbol table in order to reduce the complexity of the assignment Furthermore, we will consider only the variable declarations only. We will have only four columns in our symbol table. 1) SL. 2) NAME 3) TYPE 4) VALUE SL NAME TYPE VALUE For example, if a user enters a statement for variable declaration such as, "Int a=5;" We will have to analyze and spet the statement and eventually figure out data that required (SL, NAME, TYPE, and VALUE) . However, we don't need the data for Sl since we can give a serial to a row in a first come first serve basis or on other words, make SL autoincrement. OK, look at the statement now, we clearly have the NAME which is "a", we have TYPE which is int", and finally we have a VALUE "5" as well. Nevertheless, from the statement we can easily understand that there is no SL given. Do we need SL from user? No. As we have said earlier, just give a SL by increment it with previous 51+1. Don't worry check the following instances given below and you'll surely understand (IF YET NOT, WATCH THE CLASS RECORDING) Input 1: inta: Output View 1: SL 1 NAME TYPE int VALUE NULL a Input 2: float karim=5.5; Output View 2: SL 1 2 NAME 2 TYPE int float VALUE NULL 5.5 karim Input 3: float x,y=7.2; Output View 3: SL 1 2 3 4 NAME a a karim TYPE int float float float VALUE NULL 5.5 NULL 7.2 X Y a Input 4: int position initial-0, rate=2; Output View 4: SL NAME 1 1 2 karim 3 4 Y 5 position 6 initial 7 rate [Please turn over) X TYPE int float float float int int int VALUE NULL 5.5 NULL 22 NULL 0 2 Just like Assignment 1. you have to create an infinite loop for the menu so that we can reuse its functionalities in one go. Menu items are: 1) Insert Data (ie.int a=5:1 ) 2) Remove (use NAME to remove a row le. If user puts "a", the entire row of "a" will be removed) 3) Update ( use NAME to remove entire row, user can update TYPE and VALUE only) 4) Display ( diplay the full array/map/structure in a table structure:) 5) Exit **You can add any other feature for practice. ** Think NAME is Unique field. If there is a name "karim already exists, then should not be another row with the name "karim" ** Handle basic error and give warning accordingly. ** Make it user-friendly and suggest user what to do, what not to do and show reports if there is any problem during operation such as in insert, remove, and update.(Just print warning, suggestion, report WHERE NECESSARY) ** If you do it by yourself and you cannot complete it 100%, don't worry I will try to give a better mark. By contrast, if you copy, I will have to give you STRAIGHT ZERO without any further considerations

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

Conceptual Database Design An Entity Relationship Approach

Authors: Carol Batini, Stefano Ceri, Shamkant B. Navathe

1st Edition

0805302441, 978-0805302448

More Books

Students also viewed these Databases questions

Question

2 Prepare common-size financial statements

Answered: 1 week ago

Question

5. Identify three characteristics of the dialectical approach.

Answered: 1 week ago