
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
thumb_up100%
2.Write a program to print area of
triangle, rectangle and square
by using the same member
function name where calling of
triangle, rectangle and square
member functions will be done
by using call by value, address
and reference respectively
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 1 images

Knowledge Booster
Similar questions
- C++ HELP! NO STRUCTURES USED!Hello I've tried to ask this question before, but the answer I received was incorrect, so I am asking once again for someone to help me with this problem. Write a complete C++ program with the following: A struct named Car with member variables to store car make, model, and price. A function named setCar that returns a Car and has no parameters. setCar will:prompt the user for a car name, model, and price, and return that car. A void function named showCars with 2 parameters: a constant Car array named cars, and a constant integer named SIZE. The showCars function will:Use a loop to display the make, model, and price of each car in the cars array, and will also display what that car’s position is in the array (for regular computer users who start counting from 1, not programmers who start counting from 0). In the main functionDeclare a constant integer named SIZE with the value of 3.Declare a Car array the size of SIZE. Write a loop to call your setCar…arrow_forwardin carrow_forwardFunction Call Operator with code?arrow_forward
- Part (1): In this program, you are going to write a program to simulate the customer flows in the supermarket. The following is the function prototype which is given: int act(int type, int NumCustomers); This function will do the following jobs: if act is called with type=1, print out “a custom enters the supermarket”, NumCustomers++, return NumCustomers; if act is called with type=-1, that means a custom left the supermarket, if there are still customers in the supermarket, do: NumCustomers--; otherwise, print out “No Customers”; return NumCustomers The following is the given main function, please complete the program. #include<iostream> using namespace std; //functions prototype int main() { int NumCustomers=30; NumCustomers = act(1, NumCustomers); cout<< NumCustomers <<endl; NumCustomers = act(1, NumCustomers); NumCustomers = act(1, NumCustomers); cout<< NumCustomers <<endl; NumCustomers = act(-1, NumCustomers);…arrow_forwardC++ programming 48.In the function prototype void action(int& value); The argument value is said to be a ___________ parameter. 49.In the previous problem, suppose the function action updated its argument. True or false: the variable value in the caller would be updated. ________________ 50.True or false: the following two prototypes represent valid overloaded functions _________:double fna(double,int);float fna(float,int);arrow_forwardPart (1): In this program, you are going to write a program to simulate the customer flows in the supermarket. The following is the function prototype which is given: int act(int type, int NumCustomers); This function will do the following jobs: if act is called with type=1, print out “a custom enters the supermarket”, NumCustomers++, return NumCustomers; if act is called with type=-1, that means a custom left the supermarket, if there are still customers in the supermarket, do: NumCustomers--; otherwise, print out “No Customers”; return NumCustomers The following is the given main function, please complete the program. #include<iostream> using namespace std; //functions prototype int main() { int NumCustomers=30; NumCustomers = act(1, NumCustomers); cout<< NumCustomers <<endl; NumCustomers = act(1, NumCustomers); NumCustomers = act(1, NumCustomers); cout<< NumCustomers <<endl; NumCustomers = act(-1, NumCustomers);…arrow_forward
- Write the function header for a function fun1 that will be receiving one number as a parameter. Write the call to the function from main, passing a number to the function.arrow_forwardAssume there is a function called mystery. It already has the following prototype: void mystery(bool flag); Which of the following prototypes would not be considered a proper overload for mystery? void mystery(bool valid); void mystery(string msg, double x); void mystery(int num); void mysteryO:arrow_forwardC++ Write a function named “createPurchaseOrder” that accepts the quantity (integer), the cost per item (double), and the description (string). It will return a newly created PurchaseOrder object holding that information if they are valid: quantity and cost per item cannot be negative and the description cannot be empty or blank(s). When it is invalid, it will return NULL to indicate that it cannot create such PurchaseOrder object.arrow_forward
- C++ Write a program having a base class Student with data member rollno and member functions getnum() to input rollno and putnum() to display rollno. A class Test is derived from class Student with data member marks and member functions getmarks() to input marks and putmarks() to display marks. Class Sports is also derived from class Student with data member score and member functions getscore() to input score and putscore() to display score. The class Result is inherited from two base classes, class Test and class Sports with data member total and a member function display() to display rollno, marks, score and the total(marks + score). PLEASE GIVE CORRECT ANSWER IT WOULD HELP ME ALOT..arrow_forwardC++ Write a function named “createPurchaseOrder” that accepts the quantity(integer), the cost per item (double), and the description (string). It will return anewly created PurchaseOrder object holding that information if they are valid:quantity and cost per item cannot be negative and the description cannot be empty or blank(s). When it is invalid, it will return NULL to indicate that it cannot create such PurchaseOrder object. PurchaseOrder createPurchaseOrder(int quantity, double costPerItem, string description) { if(quantity < 0 || costPerItem < 0.0 || description == "") return NULL; else { PurchaseOrder p = new PurchaseOrder(quantity,costPerItem,description); return p; } } what's the issue with this function and how to rewrite itarrow_forwardSet-up and implementation code for a void function MaxYou are not required to write a complete C++ program but must write and submit just your responses to the four specific function related questions below: QC1: Write the heading for a void function called Max that has three intparameters: num1, num2 and greatest. The first two parameters receive data from the caller, and greatest is used to return a value as a reference parameter. Document the data flow of the parameters with appropriate comments*. QC2: Write the function prototype for the function in QC1. QC3: Write the function definition of the function in QC1 so that it returns the greatest of the two input parameters via greatest, a reference parameter. QC4: Add comments to the function definition* you wrote in QC3 that also states its precondition and postcondition.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
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