Coding RequirementsYou coded a program using the formula below to compute what the money will be worth at the end of the term. A sample output solution is given below. Compound interest arises when interest is added to the principle, so that from that moment on, the interest that has been added also itself earns interest. This addition of interest to the principal is called compounding. A bank account, for example, may have its interest ...
Big-O QuestionsAll Big-O answers must be expressed in terms of simplified Big-O. To receive full credit on each question, youâll need to provide the correct answer and a detailed explanation of your reasoning in your own words. For example, you should explain not only the lines of code that result in your Big-O answer, but also the Big-O terms you were able to ignore when simplifying the expression. ...
Task You will design a program that manages the inventory of an electronics store. You will need to use a number of concepts that you learned in class including: use of classes, use of dictionaries and input and output of comma delimeted csv files. Input:a) ManufacturerList.csv -- contains items listed by row. Each row contains item ID, manufacturer name, item type, and optionally a damaged indicatorb) PriceList.csv -- contains items li...
Question: Introduction to Computer Science Construct a solution algorithm for the following problems. Your solution should contain: • A defining problem• A pseudo code algorithm• A desk check of the algorithm 1. An Employee file contains the employee number, employee name, department number and their salary. The department number contains value 10, 20 and 30. Increment for the employee will be calculated depends on their depa...
TaskChatbots â computer programs that can respond to queries typed in natural language â have recently become a popular addition to web sites and other interactive applications.  The aim of this project is to implement a simple chatbot that can respond to simple queries made up of a single question word (called the intent) and an object (called the entity). The chat...
Task: During the trimester, weekly practical classes will reinforce the principles of the associated lecture topic. Of these, there will be FIVE programming exercises whose solutions should be archived into a portfolio and submitted along with the main assignment at the end of the trimester. These exercises have been marked in practical activities hands-on. These exercises should be worked on in scheduled practical class time, and students can s...
TaskIn this assignment, you are asked to implement a simple version of 'tar'. The program (call it mytar) can either create an archive file from a list of files or extract the files from a given archive file. The program takes the follow arguments: mytar {-t | -c | -x | -u} -f <archive_file> [list_of_files] -t List the contents of the archive file to stdout-c Create a new archive containing the list of one or more files&n...
Problem 1: Calculation of Gross Pay, Tax Deductions, and Net PayAssessment Title: Algorithm Design & Programming You are required to submit C# programs for each of the four problems given in this document. For each C# program, you are required to use appropriate variable names (follow the naming conventions) with suitable data types. Also make use of comments in your code. Write a program in C# to prompt the user to input their na...
Task: Assessment overviewThis portfolio is split up into 4 separate tasks which will test your knowledge of advanced multithreading and GPGPU programming using CUDA. Each task should be zipped up into a single zip folder containing all C/CUDA and resource files for the submission on Canvas. All questions below1. Matrix Multiplication using multithreadingYou will create a matrix multiplication program which uses multithreading. Matrices are...
TaskYou will write python programs that allows you to automate and manage your AWS cloud services. This assignment will test your ability to use the Boto3 package and Ansible to interact with AWS cloud services, as well as your general Python scripting skills. Use free tier on AWS in all cases, it should not be required to use any paid services. 1. You will write a python program for interacting with AWS services using the Boto3 package. ...
Submission InstructionsIn this assignment you will be writing a (vastly simplifed) inventory system for a store / warehouse (like Ikea or Costco) using C++. This store will sell a number of Products. Each product has a StoreLocation. These locations are in the main store area where shoppers shop. Each product may have zero or more overstock locations in the warehouse. These are stored on skids (Figure 1) of all the same Product wrapped in plas...
Task 1: Different data types that could be used in the software for NanospanScenario You are a junior data analyst at Gauntlet PLC. You have been recruited to join the new Nanospan project that is looking at creating a small wearable device that will act as a fitness tracker and personal trainer. Gauntlet PLC is a new company and has recruited heavily in order to make this project a success. Many of the staff members are young and inexperien...
Overview of the simulationIn this section, as a warm-up, you will generate a Poisson process with rate λ and simulate the M/M/1 queueing system with service rate μ, based only on the standard uniform random number generator from [0, 1]. (See Appendix on how to draw a random number from a given distribution FX (x) from the uniform random number generator.) Equivalently, you will simulate the birth- death Markov chain X(t) ∈ ? f...
TaskQuestion:Named Entity Recognition (NER) is an important information extraction task that requires to identify and classify named entities in a given text. These entity types are usually predefined like location, organization, person, and time. In this exercise, you will learn how to develop a neural NER model in Pytorch. In particular, you will learn(a) How to prepare data (input and output) for developing a NER model.(b) &nbs...
Task: IntroductionThis coursework assignment is designed to give you practice in applying all of the main programming concepts you’ve seen in the module so far to solve a larger and more complex problem. The assignment will be marked out of 50 and carries 25% of the module marks (it is 100% of assessment item 2 of the module.)Your taskYour task is to write a program to display patchwork samples, an example of which is illustrated below. The ac...