
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Declare a vector named pizzasList that stores 3 items of type PizzaIngredients.
Only lines 12-14 can be affected, the rest of theprogram cannot be changed.
Only lines 12-14 can be affected, the rest of the

Transcribed Image Text:Declare a vector named pizzasList that stores 3 items of type Pizzalngredients.
1 #include <iostream>
2 #include <vector>
3 #include <string>
4 using namespace std;
5
6 struct PizzaIngredients {
string pizzaName;
string ingredients;
9 };
7
8.
10
11 int main() {
12
13
/* Your code goes here */
14
pizzaslist.at(0).pizzaName
pizzaslist.at(1).pizzaName
pizzaslist.at(2).pizzaName
pizzaslist.at(0).ingredients
pizzaslist.at(1).ingredients
pizzaslist.at(2).ingredients
"Barbecue";
"Carbonara";
"Ham and Cheese";
"Beef, chicken, bacon, barbecue sauce";
"Mushrooms, onion, creamy sauce";
"Ham, cheese, bacon";
15
16
17
18
19
20
21
cout << pizzaslist.at(0).pizzaName << ":
cout << pizzaslist.at(1) ·pizzaName << ":
cout << pizzaslist.at(2) .pizzaName << ":
<< pizzaslist.at(0).ingredients << endl;
<< pizzaslist.at(1).ingredients << endl;
<< pizzasList.at(2).ingredients << endl;
22
23
24
25
26
return 0;
27 }
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 3 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- text file 80 1 2 3 100 100 100 1001 0 2 100 3 4 100 1002 2 0 4 4 100 5 1003 100 4 0 100 100 4 100100 3 4 100 0 3 3 3100 4 100 100 3 0 100 1100 100 5 4 3 100 0 2100 100 100 100 3 1 2 0 My code below. I am getting an error when trying to create my adjacency matrix. i dont know what i am doing wrong def readMatrix(inputfilename): ''' Returns a two-dimentional array created from the data in the given file. Pre: 'inputfilename' is the name of a text file whose first row contains the number of vertices in a graph and whose subsequent rows contain the rows of the adjacency matrix of the graph. ''' # Open the file f = open(inputfilename, 'r') # Read the number of vertices from the first line of the file n = int(f.readline().strip()) # Read the rest of the file stripping off the newline characters and splitting it into # a list of intger values rest = f.read().strip().split() # Create the adjacency matrix adjMat = []…arrow_forwardCreate an array of objects of the Person class, of size 4. Create three objects of the Person class, with values, and assign the objects to the array. Loop through the array and print the name, job, and email of all Personobjects.arrow_forwardAssign pizzasInStore's first element's caloriesInSlice with the value in pizzasInStore's second element's caloriesInSlice. Only the *your code goes here* can be affected, the rest of the program cannot be changed.Program below:--------------------------- #include <iostream>#include <vector>#include <string>using namespace std; struct PizzaInfo {string pizzaName;int caloriesInSlice;}; int main() {vector<PizzaInfo> pizzasInStore(2); cin >> pizzasInStore.at(0).pizzaName;cin >> pizzasInStore.at(0).caloriesInSlice; cin >> pizzasInStore.at(1).pizzaName;cin >> pizzasInStore.at(1).caloriesInSlice; /* Your code goes here */ cout << "A " << pizzasInStore.at(0).pizzaName << " slice contains " << pizzasInStore[0].caloriesInSlice << " calories." << endl;cout << "A " << pizzasInStore.at(1).pizzaName << " slice contains " << pizzasInStore[1].caloriesInSlice << " calories." <<…arrow_forward
- add a menu that you design which includes these features: Ability for a user to input a set of grades into a vector. Make sure only integers between 0 and 100 are used. Cout the vector onto the screen with grades separated by spaces and starting with, "Original user vector: " Output the average grade. Ability to sort the user-inputted vector from low to high or high to low. Cout the new sorted vector onto the screen with grades separated by spaces and starting with, "Grades sorted vector: " Using the binary search method (not the linear search method), add the ability to find a user selected grade and change it.arrow_forwardJQuery loading Consider following code $(function(){ // jQuery methods go here... }); What is the purpose of this code with respect to JQuery ? O This is to prevent any jQuery code from running before the document is finished loading (is ready). O This is to load the jQuery and to run this as soon as page start before loading. This is to load the function so we can run jQuery codearrow_forwardwhat vector is generated by the following statement ? x=linspace(0,1,5) * O 0,1,2,3,4 O 1,2,3,4,5 O 0,0.25,0.5,0.75,1 O 0,0.2,0.4,0.6,0.8arrow_forward
- Create a program called array.py that has a function that takes four integer arguments. Those arguments should be put into an Numpy array. The function will have two print statements. The first will print the type of the array you create (which should be <class ‘numpy.ndarray’>). The second will print the multiplication of the four items in your array.arrow_forwardDeclare and initialize 2 Animal objects with the following properties: A animal named Zirly the Zebra with the zebraZirlyBehaviors created above and a weight of 812.3 pounds A animal named Henry the Hawk with the henryTheHawkBehaviors created above and a weight of 35.5 pounds. Then, store the 2 animal objects in an array named animalList Choose one of the following from the above choices (A, B, C or D within the code). // Assume the following constructor exists within the Animal class: public Animal(String animalName, double weight, Behavior[] behaviorList) { this.animalName = animalName; this.weight = weight; this.behaviorList = behaviorList; } //A Animal zebraZirly = new Animal(812.3, "Zirly the Zebra", zebraZirlyBehaviors); Animal henryTheHawk = new Animal(35.5, "Henry the Hawk", henryTheHawkBehaviors); Animal[] animalList = new Animal[]{zebraZirly, henryTheHawk}; // B Animal zebraZirly = new Animal("Zirly the Zebra", 812.3,…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education