Question: Problem 1: Course Information This program should let the user enter a course number, and then it should display the course's room number, instructor, and
Problem 1: Course Information
This program should let the user enter a course number, and then it should display the course's room number, instructor, and meeting time.
The program should create a dictionary containing course numbers and the room numbers of the rooms where the courses meet. The dictionary should have the following key-value pairs:

The program should also create a dictionary containing course numbers and the names of instructors that teach each course. The dictionary should have the following key-value pairs:

The program should also create a dictionary containing course numbers and the meeting times of each course. The dictionary should have the following key-value pairs:

Problem 2: Name and Email Address
Write a program that keeps names and email addresses in a dictionary as key-value pairs. The program should display a menu that lets the user look up a persons email address, add a new name and email address, change an existing email address, and delete an exist- ing name and email address. The program should pickle the dictionary and save it to a file when the user exits the program. Each time the program starts, it should retrieve the dictionary from the file and unpickle it.
Were supposed to do this in Visual Studio Code using python. Please include all of the code to do this, thanks.
\begin{tabular}{lc} \hline Course Number (key) & Room Number (value) \\ \hline CS101 & 3004 \\ CS102 & 4501 \\ CS103 & 6755 \\ NT110 & 1244 \\ CM241 & 1411 \\ \hline \end{tabular} \begin{tabular}{ll} \hline Course Number (key) & Instructor (value) \\ \hline CS101 & Haynes \\ CS102 & Alvarado \\ CS103 & Rich \\ NT110 & Burke \\ CM241 & Lee \\ \hline \end{tabular} \begin{tabular}{ll} \hline Course Number (key) & Meeting Time (value) \\ \hline CS101 & 8:00 a.m. \\ CS102 & 9:00 a.m. \\ CS103 & 10:00 a.m. \\ NT110 & 11:00 a.m. \\ CM241 & 1:00 p.m. \\ \hline \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
