Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Problem 1

Mark the following statements as true or false. a. All members of a struct must be of different types. b. \(A\) function cannot return a value of type struct. c. \(A\) member of a struct can be another struct. d. The only allowable operations on a struct are assignment and member selection. e. An array can be a member of a struct. f. In \(C++,\) some aggregate operations are allowed on a struct. g. Because a struct has a finite number of components, relational operations are allowed on a struct.

Problem 2

Define a struct, carType, to store the following data about a car: Manufacturer (string), model (string), model type (string), color (string), number of doors (int), miles per gallon in city (int), miles per gallon on highway \((\text { int })\), year when the car was built \((\text { int }),\) and the price (double).

Problem 4

Define a struct, fruitType, to store the following data about a fruit: Fruit name (string), color (string), fat (int), sugar (int), and carbohydrate (int).

Problem 11

Assume that you have the following definition of a struct: struct partsType { string partName; int partNum; double price; int quantitiesInStock; }; Declare an array, inventory, of 100 components of type partsType

Problem 14

Suppose that you have the following definitions: struct timeType struct tourType { { int hr; string cityName; double min; int distance; int sec; timeType travelTime; }; }; a. Declare the variable destination of type tourType. b. Write C++ statements to store the following data in destination: cityName—Chicago, distance—550 miles, travelTime—9 hours and 30 minutes. c. Write the definition of a function to output the data stored in a variable of type tourType. d. Write the definition of a value-returning function that inputs data into a variable of type tourType. e. Write the definition of a void function with a reference parameter of type tourType to input data in a variable of type tourType.

Access millions of textbook solutions in one place

  • Access over 3 million high quality textbook solutions
  • Access our popular flashcard, quiz, mock-exam and notes features
  • Access our smart AI features to upgrade your learning
Get Vaia Premium now
Access millions of textbook solutions in one place

Recommended explanations on Computer Science Textbooks