Inheritance Starter (Java Assignment)

I have done most of this already. Just need some things looked over and cleaned up. In the Table.java class according to the Javadoc a setter and getter method need to be added in, and in the FurnitureProduct class there is magic number on line 85 that needs to be …

Mars

It is the year 2030, the MarsX Space Vehicles Company is in the process of designing its X-2 single use Space Transportation Systems (STS).  You have been tasked with creating a class to model a single STS. Design a class named STS (Space Transportation System) that contains:1.    A private int …

Computer science coding project

To make a multiple quiz game (with buttons). This game contains logins for students so student id and password required. The students results from the quiz are put into a leaderboard where the teacher using a teacher login can view the students doing well. It needs to be a level …

Software Trojan

material link – https://drive.google.com/open?id=1D10LzXrnt8om97HjmJbmgepJFrghe6Rm above given link contain all required file for completion of assignment.my assignment is I need to work on software Trojan,  my teacher is provided me code already, i need to modify the code and need to compare performance of code without modification and with modification. problem …

Queue system for ticket purchasing (QueueingSimulation problem) in FreeMat

Create a simulation system for ticket purchasing for movie, football, concerts and etc. Thesimulation system should be able to simulate the arrival of the customers and evaluate the resultsof the simulation. Assume that there are different types of tickets for sales. Firstly, create anddisplay the tickets information table, the table …

Movie Listing

The intent of this program is to manage a set of favorite movies. Each movie will have data associated with it: TitleYear producedRating (this can be a simple 1-5 integer) that represents how much the user likes the movie.Anything else youd like to add to make yours unique (can result …

CS

Program AssignmentUse printf to ensure dollar values are rounded to two decimal places.Investments (180 total) The following program models an Investment Protfolio.  Please follow the model as described. There are many different kinds of investments, including stocks, bonds, and bank accounts. There are two kinds of bank accounts: checking and …

Making a Table and a Word Guessing Game with Python

http://www.cs.bc.edu/~straubin/csci1101-2020/Week4/Assignment4.html The assignment instructions are above. I need to solve the assignment with nested for loops. This is what we have learned for this unit, and what we are expected to use in our code:http://www.cs.bc.edu/~straubin/csci1101-2020/Week4/Lecture4.html We are able to use everything we know up to lecture 4:http://www.cs.bc.edu/~straubin/csci1101-2020/syllabus.html I have spent …

Projectile motion

Once dropped from a plane, a package is described by a system of nonlinear differential equations. The task is to find the location where it should be dropped from the plane, which travels at a constant velocity, so that it lands at a fixed location. The solution should include the …

C++ data structure and algorithms

Objectives    Develop C++ programming abilities using object-oriented design, dynamic memory allocation, array manipulation, iterators, and exceptions.    Understand graphs and the adjacency list representation of a graph; implement the adjacency list representation.    Understand the concepts and implemtation of dyanically-resized arrays.