
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question

Transcribed Image Text:2. Write a complete C program for
implementing the followingtask:Suppose you
want to make a contact list for your record.
Foreach contact you will be able to save the
contact and can also edit and deleteit. Each
record contains the following fields: Name,
Mobile no,email, Address, Gender, Age,
Organization. Write an interactive program
that ask the followingsPress 1 to add a
recordPress 2 to save a recordPress 3 to
edit a recordPress 4 to delete a recordPress
5 to display recordsPress 6 to exitWhenever
you add/delete/modify a people, the above
fields willbe asked, and upon the completion
of these data you will save their records.
The output of the records should be
displayed in the table format, e.g.
Sno
Address
Name
Mobile no
Gender Age
abc
email
Organization
xyz@gmail.com
BMU
1234567890
pqrst
M
25
uvw@gmail.com
SNU
2
def
2134567890
ijklm
F
31
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 4 images

Knowledge Booster
Similar questions
- Python program with unique solution not copied please.arrow_forwardTask 1: Using jgrasp please write to following task in JAVA, please make sure to include all the stepsarrow_forwardIn C++ Create a new project named lab8_1. You will be implementing two classes: A Book class, and a Bookshelf class. The Bookshelf has a Book object (actually 3 of them). You will be able to choose what Book to place in each Bookshelf. Here are their UML diagrams Book class UML Book - author : string- title : string- id : int- count : static int + Book()+ Book(string, string)+ setAuthor(string) : void+ setTitle(string) : void+ print() : void+ setID() : void And the Bookshelf class UML Bookshelf - book1 : Book- book2 : Book- book3 : Book + Bookshelf()+ Bookshelf(Book, Book, Book)+ setBook1(Book) : void+ setBook2(Book) : void+ setBook3(Book) : void+ print() : void Some additional information: The Book class also has two constructors, which again offer the option of declaring a Book object with an author and title, or using the default constructor to set the author and title later, via the setters . The Book class will have a static member variable…arrow_forward
- Write a Ruby program named format file.rb, which can be run by typing ruby widgets.rb. In your Ruby environment, the program must read an input file formatted in CSV format, named input.csv. Each record contains data about a student and their corresponding grades. The data will look similar to the following: Student Name, assignment 1, assignment 2, assignment 3, assignment 4 John Adams, 90, 91, 99, 98 Paul Newman, 90, 92, 93, 94 Mary Smith, 95, 96, 99 Be careful to follow the output format exactly, including spacing. The output of your program must look like the following: Student Assignment Average John Adams 94.5arrow_forwardA fast food restaurant is planning to develop a system to process customer’s orders. The system receives food orders from the users, and stores and processes according to the order in which the users placed the orders. The system can remove an order from the list of orders once the order is complete. The system can also display the order which is currently being processed by the employees. The system displays the list of orders as well. The system displays all these options as a menu of choices to a user and performs the operations according to the user’s selection. (Please see the test runs on the next page). Write a program in C/C++ to develop a simple order processing system for the fast-food restaurant. In your program, you must use queue to store and process customer’s orders. Your program must use a linked list to perform the queue operations. Your output format should be as shown in the test runs (see the next page). Your program must contain the following user-defined…arrow_forwardGiven a list of employees, create JAVA a simple program that allows the user to insert, delete, display,and search an employee. The program should input 10 full names of employees with employeenumber as linked list. Also, a list of menus should be displayed.These menus are Insert, Delete, Display and Search.A. Insert - allows the user to insert one employee at a time with corresponding ID numberwhich serves as their link. All employees to be inserted must be inserted at theend of the list. B. Delete – allows the user to delete the employee from the listC. Display – allows the user to display the list of employeesD. Search - allows the user to find a certain employeeThese menus should be in loop once you test every operation based on the listed menu. Use linked list as a data structure in generating a list of employees, andPerform basic operations that can be applied in a linked listarrow_forward
- Generating statistics from a set of data is a task that computers love. In this assignment, you will be implementing a grade processing system that will generate the mean and standard deviation for a set of final exam grades. We will assume that final grades are stored in a list, where each entry in the list is a string with the following format: "studentNum-finalGrade%" The string represents the final exam mark (finalGrade) that the student (studentNum) achieved. For example, the cell below contains a list of final exam marks from two students. Student 1007089 achieved a mark of 91%, and student 1009989 achieved a mark of 77.5%. grades = ['1007089-91%','1009989-77.5%' ] We want to calculate the mean final exam mark from a list of grades. If we assume that we have N grades, the mean x can be calculated from the following formula: N-1 1 (1) i=0 The variable x; represents each grade in our list at index i. We assume that we start counting at 0. We also want to be able to calculate the…arrow_forwardPLEASE help with the following C#.NET using the follwoing class make a driver class which outputs the patient healthr record Write a driver class (app) that prompts for the person’s data input, instantiates an object of class HeartRates and displays the patient’s information from that object by calling the DisplayPatientRecord, method. essentially make a main method which asks the user to manually enter the data using System;namespace A1Question1{class HeartRates{//class attributes privateprivate string _First_Name;private string _Last_Name;private int _Birth_Year;private int _Current_Year;// Constructor which receives private parameters to initialize variablespublic HeartRates(string First_Name, string Last_Name, int Birth_Year, int Current_Year){_First_Name = First_Name;_Last_Name = Last_Name;_Birth_Year = Birth_Year;_Current_Year = Current_Year;}// Auto-Implemented mutators and accessorpublic string First_Name { get; set; }public string Last_Name { get; set; }public int…arrow_forwardCreate a new C++ project in Visual Studio (or an IDE of your choice). Add the files listed below to your project: BinaryTree.h Download BinaryTree.h BinarySearchTree.h Download BinarySearchTree.h main.cpp Download main.cpp Build and run your project. The program should compile without any errors. Note that function main() creates a new BST of int and inserts the nodes 12, 38, 25, 5, 15, 8, 55 (in that order) and displays them using pre-order traversal. Verify that the insertions are done correctly. You may verify it manually or use the visualization tool at https://www.cs.usfca.edu/~galles/visualization/BST.html. (Links to an external site.) Do the following: 1. add code to test the deleteNode and search member functions. Save screenshot of your test program run. 2. add code to implement the nodeCount member function of class BinaryTree. Test it and save screenshot of your test program run. 3. add code to implement the leafCount member function of class BinaryTree. Test it and…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY