CIS170C-Week 3 Lab InstructionsLab 3 of 7: ArraysLab Overview—Scenario/SummaryYou will code, build, and execute a program that will use looping to determine the score for a diver based onindividual judge’s scores.Learning outcomes:1.Become familiar with the using an array.2.Populate an array with data.3.Be able to debug a program of syntax and logic errors.4.Be able to use the debug step-into feature to step through the logic of the program and to see how thevariables change values.DeliverablesSectionDeliverablePointsAll Stepsin LabStep 6: Program Listing and Output40Lab StepsPreparation:If you are using the Citrix remote lab, follow the login instructions located on the lab area in Course Home.Locate the Visual Studio 2015 icon, and launch the application.Step 1:Requirements—parallel arraysYou need to store sales for seven differnet types of salsa: mild, medium, hot, sweet, fruit, verde, and zesty. Youwill need two parallel seven element arrays. An array of strings to hold the salsa names and an array of integersholding the number of jars sold during the past month for each type of salsa. Create a string array, and initializeit with the salsa types. The program should prompt the user to enter the number of jars sold for each type. Useinput validation with a loop to ensure that negavie values are not input.Once the data is input, the program should display a report that shows sales for each salsa type, total salesPage 1 of 3qattachments_7d9d034b751711f7832819b10cd8fd2be101d0d9.docxStudent Lab Activity
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"
https://academicheroes.com/wp-content/uploads/2020/12/logo.png00Munene davidhttps://academicheroes.com/wp-content/uploads/2020/12/logo.pngMunene david2020-02-21 10:03:182020-02-21 10:03:18Im having trouble getting the last portion of the code to show up, SO this isnt coming up in my code i cant figure out why the sales report not coming up. Salsa Sales Report
This should be written in C++ and sent to me in word please!
You will need to design an application that
will prompt a user for sales values for seven different types of salsa: mild, medium, hot, sweet, fruit, verde, and zesty. You will use two parallel seven element arrays. One array will be an array of strings to hold the salsa names and one will be an array of integers holding the number of jars sold during the past month.
Sample output from programJars sold last month of mild : 11
Jars sold last month of medium: 22
Jars sold last month of hot : 33
Jars sold last month of sweet : 44
Jars sold last month of fruit : 55
Jars sold last month of verde : 66
Jars sold last month of zesty : 77
Salsa Sales Report
Name Jars Sold
_________________
mild : 11
medium: 22
hot : 33
sweet : 44
fruit : 55
verde : 66
zesty : 77
Total Sales: 308
High Seller: zesty
Low Seller : mild
Press any key to continue . .
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"
https://academicheroes.com/wp-content/uploads/2020/12/logo.png00Munene davidhttps://academicheroes.com/wp-content/uploads/2020/12/logo.pngMunene david2020-02-21 10:02:172020-02-21 10:02:17This should be written in C++ and sent to me in word please! You will need to design an application that will prompt a user for sales values for seven different types of salsa:
https://academicheroes.com/wp-content/uploads/2020/12/logo.png00Munene davidhttps://academicheroes.com/wp-content/uploads/2020/12/logo.pngMunene david2020-02-21 10:01:132020-02-21 10:01:13Do all object-oriented languages support encapsulation? How about languages like C, Basic, and Ada (which are not object-oriented); do they support encapsulation?
Week 3: Add at least one conditional expression to your program.
Examples: In the
programming tutorial, you would add a tutorial on conditional expressions. You can then add simple multiple choice questions to test the user’s understanding of the concepts. You might also want to break the tutorial into sections, and use conditional expressions to ask the user which tutorial they wanted to see (i.e., variable declaration, input/output, conditional expressions, etc.).
For the loan calculator, the program might ask the user if he or she wants to solve for monthly payment, loan amount, length of loan, or interest rate. The program would then ask for the required information and solve for the remaining value.
So i need to add a conditional expression to my program.
Faizuddin AlikhanProfessor R,Myers5/10/2017COURSE PROJECT WEEK 2#include <iostream>using namespace std;int main(){cout << “All the movies with there time and gate are given below”<< endl;cout<<endl<<“Movie: Beauty and the beast”<<endl;cout<<“Time: 1:00pm”<<endl;cout<<“Gate: 1″<<endl;cout<<endl<<“Movie: The Circle”<<endl;cout<<“Time: 3:00pm”<<endl;cout<<“Gate: 2″<<endl;cout<<endl<<“Movie: Boss Baby”<<endl;cout<<“Time: 5:00pm”<<endl;cout<<“Gate: 3″<<endl;return 0;}
https://academicheroes.com/wp-content/uploads/2020/12/logo.png00Munene davidhttps://academicheroes.com/wp-content/uploads/2020/12/logo.pngMunene david2020-02-21 10:00:342020-02-21 10:00:34Week 3: Add at least one conditional expression to your program.