What are the basic requirements for a valid contract entered into via the Internet?
URGENT: Need C++ and PYTHON CODE HELP.
I need help with this project and I am very lost here. Can anyone with coding knowledge and knows how to integrat C++ and Python please help? The faster I receive this the better the tip will be. If no one knows how to integrate these language and offer working code, please do not bother bidding. I will attach put in the directions below and also load the starter/wrapper code in the attachments. Also the input list is provided , but can provide the link if necessary. Thanks.
Scenario
You are doing a fantastic job at Chada Tech in your new role as a junior developer, and you exceeded expectations in your last assignment for Airgead Banking. Since your team is impressed with your work, they have given you another, more complex assignment. Some of the code for this project has already been completed by a senior developer on your team. Because this work will require you to use both C++ and Python, the senior developer has given you the code to begin linking between C++ and Python. Your task is to build an item-tracking program for the Corner Grocer, which should incorporate all of their requested functionality.
The Corner Grocer needs a program that analyzes the text records they generate throughout the day. These records list items purchased in chronological order from the time the store opens to the time it closes. They are interested in rearranging their produce section and need to know how often items are purchased so they can create the most effective layout for their customers. The program that the Corner Grocer is asking you to create should address the following three requirements for a given text-based input file that contains a list of purchased items for a single day:
- Produce a list of all items purchased in a given day along with the number of times each item was purchased.
- Produce a number representing how many times a specific item was purchased in a given day.
- Produce a text-based histogram listing all items purchased in a given day, along with a representation of the number of times each item was purchased.
As you complete this work, your manager at Chada Tech is interested to see your thought process regarding how you use the different programming languages, C++ and Python. To help explain your rationale, you will also complete a written explanation of your code’s design and functionality.
Directions
One of Python’s strengths is its ability to search through text and process large amounts of data, so that programming language will be used to manage internal functions of the program you create. Alternatively, C++ will be used to interface with users who are interested in using the prototype tracking program.
Grocery Tracking Program
Begin with a Visual Studio project file that has been set up correctly to work with both C++ and Python, as you have done in a previous module. Remember to be sure you are working in Release mode, rather than Debug mode. Then add the CS210_Starter_CPP_Code and CS210_Starter_PY_Code files, linked in the Supporting Materials section, to their appropriate tabs within the project file so that C++ and Python will be able to effectively communicate with one another. After you have begun to code, you will also wish to access the CS210_Project_Three_Input_File, linked in the Supporting Materials section, to check the functionality and output of your work.
As you work, continue checking your code’s syntax to ensure your code will run. Note that when you compile your code, you will be able to tell if this is successful overall because it will produce an error message for any issues regarding syntax. Some common syntax errors are missing a semicolon, calling a function that does not exist, not closing an open bracket, or using double quotes and not closing them in a string, among others.
- Use C++ to develop a menu display that asks users what they would like to do. Include options for each of the three requirements outlined in the scenario and number them 1, 2, and 3. You should also include an option 4 to exit the program. All of your code needs to effectively validate user input.
- Create code to determine the number of times each individual item appears. Here you will be addressing the first requirement from the scenario to produce a list of all items purchased in a given day along with the number of times each item was purchased. Note that each grocery item is represented by a word in the input file. Reference the following to help guide how you can break down the coding work.
- Write C++ code for when a user selects option 1 from the menu. Select and apply a C++ function to call the appropriate Python function, which will display the number of times each item (or word) appears.
- Write Python code to calculate the frequency of every word that appears from the input file. It is recommended that you build off the code you have already been given for this work.
- Use Python to display the final result of items and their corresponding numeric value on the screen.
- Create code to determine the frequency of a specific item. Here you will be addressing the second requirement from the scenario to produce a number representing how many times a specific item was purchased in a given day. Remember an item is represented by a word and its frequency is the number of times that word appears in the input file. Reference the following to help guide how you can break down the coding work.
- Use C++ to validate user input for option 2 in the menu. Prompt a user to input the item, or word, they wish to look for. Write a C++ function to take the user’s input and pass it to Python.
- Write Python code to return the frequency of a specific word. It will be useful to build off the code you just wrote to address the first requirement. You can use the logic you wrote but modify it to return just one value; this should be a fairly simple change (about one line). Next, instead of displaying the result on the screen from Python, return a numeric value for the frequency of the specific word to C++.
- Write a C++ function to display the value returned from Python. Remember, this should be displayed on the screen in C++. We recommend reviewing the C++ functions that have already been provided to you for this work.
- Create code to graphically display a data file as a text-based histogram. Here you will be addressing the third requirement from the scenario: to produce a text-based histogram listing all items purchased in a given day, along with a representation of the number of times each item was purchased. Reference the following to help guide how you can break down the coding work:
- Use C++ to validate user input for option 3 in the menu. Then have C++ prompt Python to execute its relevant function.
- Write a Python function that reads an input file (CS210_Project_Three_Input_File, which is linked in the Supporting Materials section) and then creates a file, which contains the words and their frequencies. The file that you create should be named frequency.dat, which needs to be specified in your C++ code and in your Python code. Note that you may wish to refer to work you completed in a previous assignment where you practiced reading and writing to a file. Some of your code from that work may be useful to reuse or manipulate here. The frequency.dat file should include every item (represented by a word) paired with the number of times that item appears in the input file. For example, the file might read as follows:
- Potatoes 4
- Pumpkins 5
- Onions 3
- Write C++ code to read the frequency.dat file and display a histogram. Loop through the newly created file and read the name and frequency on each row. Then print the name, followed by asterisks or another special character to represent the numeric amount. The number of asterisks should equal the frequency read from the file. For example, if the file includes 4 potatoes, 5 pumpkins, and 3 onions then your text-based histogram may appear as represented below. However, you can alter the appearance or color of the histogram in any way you choose.
- Potatoes ****
- Pumpkins *****
- Onions ***
- Apply industry standard best practices such as in-line comments and appropriate naming conventions to enhance readability and maintainability. Remember that you must demonstrate industry standard best practices in all your code to ensure clarity, consistency, and efficiency. This includes the following:
- Using input validation and error handling to anticipate, detect, and respond to run-time and user errors (for example, make sure you have option 4 on your menu so users can exit the program)
- Inserting in-line comments to denote your changes and briefly describe the functionality of the code
- Using appropriate variable, parameter, and other naming conventions throughout your code
Programming Languages Explanation
Consider the coding work you have completed for the grocery-tracking program. You will now take the time to think more deeply regarding how you were able to combine two different programming languages, C++ and Python, to create a complete program. The following should be completed as a written explanation.
- Explain the benefits and drawbacks of using C++ in a coding project. Think about the user-focused portion of the grocery-tracking program you completed using C++. What control does this give you over the user interface? How does it allow you to use colors or formatting effectively?
- Explain the benefits and drawbacks of using Python in a coding project. Think about the analysis portions of the grocery-tracking program you completed using Python. How does Python allow you to deal with regular expressions? How is Python able to work through large amounts of data? What makes it efficient for this process?
- Discuss when two or more coding languages can effectively be combined in a project. Think about how C++ and Python’s different functions were able to support one another in the overall grocery-tracking program. How do the two function well together? What is another scenario where you may wish to use both? Then, consider what would happen if you added in a third language or switched Python or C++ for something else. In past courses, you have worked with Java as a possible example. What could another language add that would be unique or interesting? Could it help you do something more effectively or efficiently in the grocery-tracking program?
Homework Computer Science
Remember to review the syllabus expectations for initial discussion posts and peer replies!
Discuss the following questions:
1. What are the benefits and challenges associated with public and private blockchain and which has the most potential for application in human resource management?
2. What are Smart Contracts and how might they be applied in human resource management?
3. How might Blockchain technology impact labor relations and employee safety? You are required to cite this week’s assigned readings in your paper. You may also cite prior week’s reading assignments and external sources if you wish.
Use the following headings to organize your paper: Introduction, Question 1, Question 2, Question 3, Conclusion, References.Submit your paper as a Word attachment in the discussion forum.
I provide feedback within the paper and will not grade your post unless you submit it as an attachment. Your response to the discussion prompt should contain a minimum of 500 words and it should be submitted no later than Wednesday before 11:59 pm EST. Your response should be formatted in APA style and reference each of this week’s readings.Also, two peer replies should contain a minimum of 150 words each and should be submitted no later than Sunday before 11:59 pm EST. The initial post is worth 40 points and the peer replies are worth 5 points each (10 points). Follow the following writing requirements for all of your discussion prompt responses (note that these writing requirements DO NOT apply to your responses to other students):Writing Requirements for All Assignments:
- References MUST be cited within your paper in APA format. Your reference page and in-text citations must match 100%. Papers without in-text citations will earn failing grades.
- Always include a cover page and reference page with all submissions
- Your paper must have headings in it. For discussion posts Introduction, Prompt/Question, and Conclusion will suffice as headings.
- Provide the EXACT web link for all online sources – do not provide just the home page, but the EXACT LINK – I check all sources
- No abbreviations, no contractions – write formally
- Write in the third person formal voice (no first or second person pronouns)
- Write MORE than the minimum requirement of the word count assigned
- As always, the word count is ONLY for the BODY of the paper – the cover page, reference page, and / or Appendix (if included) do not count towards the word count for the paper
- Indent the first line of each new paragraph five spaces
- Refer to the example APA paper in the getting started folder under the content tab if you need an example. Also, a power is provided under the information tab that addresses APA format.
- Use double-spacing / zero point line spacing, a running header, page numbers, and left justify the margins.
References —-
1. Chapter 3 of Blockchain for Business
From the Harvard Course Pack Link: https://hbsp.harvard.edu/import/822085
2. Morkunas, V. J., Paschen, J., & Boon, E. (2019). How Blockchain technologies impact your business model. Business Horizons, 62, 295-306.
3. Berke, A. (2017, March 7). How safe are Blockchains? IT depends. Harvard Business Review, 51-60.
4. Whitehouse, E. (2018, July/August). We can change the way you work. People Management, 30-34.
5. Druck, J. A. (2018, October). Smart Contracts are neither smart nor contracts. Discuss. Banking & Financial Services Policy Report, 37(10), 5-9.
Reflection assignment 4
requirement in doc
7 short labs in Database
Hey, I have 7 short labs and it shows the steps one by one in the file.
Res Wknd – Research paper (Principles of Mobile App Interface Design)
From a development team of one to two people to an enterprise-level team with multiple divisions, the topic of mobile development will eventually come up. From on your readings this week, write a five to seven (3 – 5) page paper in which you cover the following (not necessarily in this order):
- Discuss the importance of developing a mobile strategy (chapter reading)
- Compare & Contrast mobile applications vs websites (chapter reading)
- Research and discuss at least 7 principles of interface design for Mobile applications
- Discuss two – three different mobile functionalities – functions that differ between platforms (Andriod, iOS & Windows).
- Explain the social aspect of mobile interfaces.
- Discuss two – three mobile application development myths.
- Argue the need for adaptive vs dedicated mobile websites.
Your assignment must follow these formatting requirements:
- Use ten – twelve (5 – 7 ) quality resources in this assignment. Note: Wikipedia and similar Websites do not qualify as quality resources.
- Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format.
- Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment. Please post your paper to iLearn NLT Friday, 9/17 – 8pm EST.
When you are ready to post, click the Res Wknd – Research paper (Principles of Mobile App Interface Design) assignment link, then Either click the “Write Submission” link and directly paste your document into this assignment box OR Browse your Computer and add the entire Microsoft Word document as an attachment (Mac users, please remember to append the “.docx” extension to the filename).
file inclusion vulnerability
Do a bit if research into File Inclusion Vulnerability.
- What is it?
- Why is is dangerous?
- What is the difference of low and remote inclusion?
- What methods can me employed to prevent a security breach?
- What programming languages are vulnerable to this type of attack.
Post between 100-300. Use your own words. Do not copy the work of another students.
Question 18
Briefly respond to all the following questions. Make sure to explain and backup your responses with facts and examples. This assignment should be in APA format and have to include at least two references.
Your work over the next 8 weeks will lead-up to your ability to represent an enterprise security architecture solution as a diagram or diagrams with annotations. The project involves depicting a Security Architecture for one of the following businesses:
· Financial (Bank, brokerage, Insurer, etc.)
· Hospital/Medical Services
· Pharmaceutical/Chemical
· Social Media Company
· Energy Company (Electrical Utility, Oil Company, Solar, Wind, etc.)
· Manufacturer (Automobile, Computer, Consumer Electronics, etc.)
Respond to the following:
· Identify the business type you have selected for your paper.
· Provide a brief overview of the business
· Provide the goals and approach to the project
· Architectural diagrams and annotations
Submission
Compose your work in a .doc or .docx file type using a word processor (such as Microsoft Word, etc.) and save it frequently to your computer.
Check your work and correct any spelling or grammatical errors.
Include at least two APA most recent references.
Business Intelligence
Select an organization of your choosing. This can be real or hypothetical, but it has to be realistic. Please ensure to review the basics from chapters 1-3 and relate these basic concepts to the predictive analytics components from part two (Chapters 4-7) in your text.
Then, select a key area of predictive analytics (from chapters 4-7) to implement in the organization. You must indicate why the predictive analytic component will be implemented by noting the problem that you are trying to solve, noting how your team will solve the problem with the selected method (this must be a thorough, in-depth analysis), and presenting your findings using a PowerPoint presentation.
For example, let us say your organization is going to implement a new Security Operations Center to address cybersecurity concerns. Explain how predictive analytics will play a significant role in this project.
Note any Big Data Challenges or other technology or cultural challenges you may face and how you will mitigate these challenges in your presentation.
The requirements for this project are 10 to 13 pages properly APA formatted.
Attaching Text book
Discussion 500 words
In 500 words or more, consider this statement: For cloud computing to become multi-jurisdictional, it must be separated from politics.
Use at least three sources. Use the Research Databases available from the Danforth Library not Google. Include at least 3 quotes from your sources enclosed in quotation marks and cited in-line by reference to your reference list. Example: “words you copied” (citation) These quotes should be one full sentence not altered or paraphrased. Cite your sources using APA format. Use the quotes in your paragaphs. Stand alone quotes will not count toward the 3 required quotes