CAREFULLY
• The Assignment must be submitted on Blackboard (WORD format only) via allocated folder.
• Assignments submitted through email will not be accepted.
• Students are advised to make their work clear and well presented, marks may be reduced for poor presentation. This includes filling your information on the cover page.
• Students must mention question number clearly in their answer.
• Late submission will NOT be accepted.
• Avoid plagiarism, the work should be in your own words, copying from students or other resources without proper referencing will result in ZERO marks. No exceptions.
• All answered must be typed using Times New Roman (size 12, double-spaced) font. No pictures containing text will be accepted and will be considered plagiarism).
• Submissions without this cover page will NOT be accepted.
Tag: Programming
It 402- discussion huss27
All answered must be typed using Times New Roman (size 12, double-spaced) font. No pictures containing text will be accepted and will be considered plagiarism). The Assignment must be submitted in (WORD format only). Use 2 to 4 References and write it in the last page by APA style. I want new words, No plagiarism “Please make it 0% percentage (we want put it the solution with the Cove page🙏)
it 405- discussion -2233
All answered must be typed using Times New Roman (size 12, double-spaced) font. No pictures containing text will be accepted and will be considered plagiarism). The Assignment must be submitted in (WORD format only). Use 2 to 4 References and write it in the last page by APA style. I want new words, No plagiarism “Please make it 0% percentage (we want put it the solution with the Cove page🙏)
Positive Countdown
Write the Simple Computer instructions for this program beside the flowchart. Use the labels
BEGIN/END to indicate the start and end of the program and for the loop. Group the instructions beside the appropriate flowchart symbol as described in class. Include all necessary information. The variable N will immediately follow the program in memory.
personal computer application
com, an Information System is an integrated set of components for collecting, storing, and processing data and for delivering information, knowledge, and digital products.
For this assignment, you will compose a 500-word minimum paper that identifies 3 different companies that use Information Systems. Then for each company describe the WHAT the company actually uses, the HOW the company uses it, and the WHY the company needs to implement this system within itself.
Example: Dunkin Donuts uses a Radiant POS Information System. This system collects all information on sales, inventory, staff, etc. The company then uses this information for projected ordering, hiring, and sales growth.
In the closing paragraph of your paper, describe the impact that these companies have on our society and how the use of this technology plays a role in their impact. Would their companies have such an impact if they did not use these information systems?
Apply appropriate technology tools and resources to locate and retrieve information from various sources (e.g., on-line, libraries, etc.) while completing this assignment. Use proper English grammar and spelling, normal page margins, and standard formatting of Microsoft Word. Include at least 3 sources at the end of the paper. Resources to write your paper can be collected from various Internet sites using Google.
A program in C to read and write from LinkedList to file and vice versa
***Looking for fresh answers, please do not copy solutions from other sources as that could result in Plagarism***Write a complete C program – you must declare and use a self-referential structure for this question
You are asked to write a c program that deals with the online purchase of TVs. The purchase order is handled first come first served basis. When a customer places an order to buy a TV, the program should search that item in the data base and if it is found the purchase should be processed according to the instructions given below.
TVs available in the shop are kept in a text file called TVs.txt.
At the beginning of the program the details of the TVs are read from TVs.txt and stored in a LinkedList. Then the list of the TVs ordered by customers is saved in a queue. Then the program should take the order from the beginning (head) of the queue and search for it in the LinkedList. If the item found in the list delete it and put this TV in a stack to be able to retrieve for the last TV sold.
The main() function handles all interactions with the user and other functions:• Calls a function named readTVs()which opens a text file TVs.txt (a sample text file is shown below) for reading and storing names of TVs from the file to a LinkedList in order of name
(insertion should happen in alphabetical order).• It then repeatedly calls the menu () function to display user options, get the user selection
returned by the menu() function, use a switch (or if ..else if) statement to process user
request by calling appropriate function(s).Details of options in menu function:(1) Display the current stock of TVs– here you display the contents of the LinkedList(2) Add a new TV to stock – you need to insert a new TV to LinkedList(3) Display next order information – displays the next TV in the order-list (first node of the queue) (4) Display all orders – displays all nodes of the queue(5) Add order to queue – adds new order to the end of the queue(6) Process the next order – Processes the first order in the queue. This function searches for this TV in the LinkedList and deletes (if found) from LinkedList and puts it into a stack, deletes from the queue as well.(7) Cancel last order – It cancels the last processed order. It inserts the TV (top of the stack) back into LinkedList (TV is not added back into queue).(8) Display info of last order – displays the information of the last processed order (top of the stack).(9) Update TV file – updates the TVs.txt with the remaining TVs in the list (including the TVs added in option2).(10) Quit program
C program to read and write from LinkedList to file and vice versa
Write a complete C program – you must declare and use a self-referential structure for this question
You are asked to write a c program that deals with the online purchase of TVs. The purchase order is handled first come first served basis. When a customer places an order to buy a TV, the program should search that item in the data base and if it is found the purchase should be processed according to the instructions given below.
TVs available in the shop are kept in a text file called TVs.txt.
At the beginning of the program the details of the TVs are read from TVs.txt and stored in a LinkedList. Then the list of the TVs ordered by customers is saved in a queue. Then the program should take the order from the beginning (head) of the queue and search for it in the LinkedList. If the item found in the list delete it and put this TV in a stack to be able to retrieve for the last TV sold.
The main() function handles all interactions with the user and other functions:• Calls a function named readTVs()which opens a text file TVs.txt (a sample text file is shown below) for reading and storing names of TVs from the file to a LinkedList in order of name
(insertion should happen in alphabetical order).• It then repeatedly calls the menu () function to display user options, get the user selection
returned by the menu() function, use a switch (or if ..else if) statement to process user
request by calling appropriate function(s).Details of options in menu function:(1) Display the current stock of TVs– here you display the contents of the LinkedList(2) Add a new TV to stock – you need to insert a new TV to LinkedList(3) Display next order information – displays the next TV in the order-list (first node of the queue) (4) Display all orders – displays all nodes of the queue(5) Add order to queue – adds new order to the end of the queue(6) Process the next order – Processes the first order in the queue. This function searches for this TV in the LinkedList and deletes (if found) from LinkedList and puts it into a stack, deletes from the queue as well.(7) Cancel last order – It cancels the last processed order. It inserts the TV (top of the stack) back into LinkedList (TV is not added back into queue).(8) Display info of last order – displays the information of the last processed order (top of the stack).(9) Update TV file – updates the TVs.txt with the remaining TVs in the list (including the TVs added in option2).(10) Quit program
C program to read content from a text file, sort them and write these to another text file
Write a C program to create a text file that contains four columns and ten rows. First column contains strings values, second and third column contains integer values, and fourth column contains double values (you are free to use your own values).
Declare a structure that contains 4 elements (you are free to use your own variables).First element should be a char array – to read first column values from the text file. Second element should be an int value – to read second column values from the text file. Third element should be an int value – to read third column values from the text file. Fourth element should be a double value – to read fourth column values from the text file.
Declare an array of this structure with size 10 and read the contents of the text file into this array.
Then prompt the user with the following instructions:1: Display the details of the array – call a function to display the contents of the array on screen. 2: To sort the array (you should call sort function – output of the sorting function should be written onto a text file and terminal)
You should give the user the chance to sort in ascending or descending order with respect to string value.
Then you should give the user the option to select from different sorting techniques (you should write minimum two sorting algorithm functions, call the functions according to the choice the user enters – call the sorting function only after the user selects the above-mentioned options).
3: To search for a string element (Write the output on terminal)You should give the user to select the searching technique (linear or binary – must use recursive version of the searching functions)
if binary is selected call a sort function first.4: To insert these array elements into a linked list in the order of string values. Display the contents on the terminal.5: QuitYour complete program should have multiple files (minimum two .c files and two .h files).Give your file name as heading and then paste your code. You must include your text files as well
in the submission.
C program to read content from a text and sort them and write them another text file
Write a C program to create a text file that contains four columns and ten rows. First column contains strings values, second and third column contains integer values, and fourth column contains double values (you are free to use your own values).
Declare a structure that contains 4 elements (you are free to use your own variables).First element should be a char array – to read first column values from the text file. Second element should be an int value – to read second column values from the text file. Third element should be an int value – to read third column values from the text file. Fourth element should be a double value – to read fourth column values from the text file.
Declare an array of this structure with size 10 and read the contents of the text file into this array.
Then prompt the user with the following instructions:1: Display the details of the array – call a function to display the contents of the array on screen. 2: To sort the array (you should call sort function – output of the sorting function should be written onto a text file and terminal)
You should give the user the chance to sort in ascending or descending order with respect to string value.
Then you should give the user the option to select from different sorting techniques (you should write minimum two sorting algorithm functions, call the functions according to the choice the user enters – call the sorting function only after the user selects the above-mentioned options).
3: To search for a string element (Write the output on terminal)You should give the user to select the searching technique (linear or binary – must use recursive version of the searching functions)
if binary is selected call a sort function first.4: To insert these array elements into a linked list in the order of string values. Display the contents on the terminal.5: QuitYour complete program should have multiple files (minimum two .c files and two .h files).Give your file name as heading and then paste your code. You must include your text files as well
in the submission.
A. Translation
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc. However, it’s easy to make a mistake during the «translation». Vasya translated word s from Berlandish into Birlandish as t. Help him: find out if he translated the word correctly.
Input
The first line contains word s, the second line contains word t. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
Output
If the word t is a word s, written reversely, print YES, otherwise print NO.
Examples:
input
codeedocoutput
YESinput
abbabaoutput
NO