Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please solve ASSIGNMENT 3 Write a program that uses functions to read and process the data from a formatted file. The program should contain the

Please solve image text in transcribed
image text in transcribed
ASSIGNMENT 3 Write a program that uses functions to read and process the data from a formatted file. The program should contain the following exact functions (exact name, parameters names, parameters type, parameter order, returned values, functionality and no global variables or concepts not studied in class) in this exact order: 1. A ReadConcepts function that reads a list of concepts/strings from the LIST.txt text file (one concept per line), stores them into an array of 100 strings called Concepts, and count how many concepts are in the list and store in the reference parameter Number. The function should have two parameters (the array of concepts and a reference to the number of concepts in the array and should not return a value. 1 2. A PrintAllConcepts function that prints all the concepts from the array, one concept per line. The function should receive the array of concepts and the number of concepts as parameters and should not return any values. 3. An EnterString function that prompt the user to enter a string with at least 2 characters, lets the user input a string, validates it (check if it has at least 2 characters - its length is at least 2), and if it is not, repeats the input of the string until it is a valid (has at least 2 characters) and returns it. The function should not have any parameters and should return the string. 4. A Printconceptostring function that prints all the concepts from the array that contain an occurrence of the exact string Searchstring, one concept per line. The function should receive the array of concepts, the number of concepts and the Searchstring as parameters and should not return any values. 5. A PrintConceptswithoutstring function that prints all the concepts from the array that do not contain the exact string Searchstring, one concept per line. The function should receive the array of concepts, the number of concepts, and the Searchstring as parameters and should not return any values. 6. A SortConcepts function that sort the array using the method from the textbook and practice exercises, without using any predefined functions or other sorting methods. The function should receive the array of concepts and the number of concepts as parameters and should not return any values. 7. The main function should do all of the exact following in this order: 1. Call the Readconcepts function to read the concepts from the file and store them into the array ArrayConcepts and compute the NumberConcepts of concepts, it. Call the printAllConcepts for Arrayconcepts and NumberConcepts ili. Call EnterString for ArrayConcepts and Numberconcepts to enter a searchStringi iv. Call Print Concepts String for ArrayConcepts and NumberConcepts and SearchStringi above Call EnterString for ArrayConcepts and NumberConcepts to enter a Search String2 vi. Call Print ConceptsWithoutString for Arrayconcepts, NumberConcepts, and SearchString2 vii. Call the sortConcepts to sort the ArrayConcepts and vili. Call Print Concepts again to print the sorted Arrayconcepts. You should write the program in Visual Studio 2019 using only concepts learned in class so far (Chapters 1 to 8, so, without data structures, pointers, and any other concepts not studied in class so far). You need to create and submit the following exact 2 files (names, functionality, and format, not archived): 1. Your Name-Assignment3.cpp C++ source code file for the algorithm 2. Your Name-Assignment3-Screenshot.docx screenshots document containing screenshots of your entire code in Editor window and entire program output in Output window (if it does not fit on one screen or cannot be easily read, take multiple screenshots of the code window and of the output window) V. Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of Columbia Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming American Samoa District of Columbia Guam Northern Mariana Islands Puerto Rico United States Virgin Islands

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

What is the environment we are trying to create?

Answered: 1 week ago

Question

How would we like to see ourselves?

Answered: 1 week ago

Question

How can we visually describe our goals?

Answered: 1 week ago