I need to be able to run it in UBUNTU or some other LINUX OS environment. There are five files attached. one is the assignment. one is what should be the output. one is the input. It should be able to work for other input files, this one is just a sample though. one file is a possible solution using arrays. one file contains notes I took. One file contains a PPT with information on how the assignment is supposed to be done.
c or c++ is required. other programming languages can't be used
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 done in a different way, and also line 53 has a hidden field issue that needs resolved. As far as I know this is all that needs looked at, if I'm wrong let me know.
I know that my price is probably too low, but like I said I just need it looked over, and the coding issues I mentioned fixed. So hopefully someone will be willing to help me out here.
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 data field named STSId for the STS registration ID.
2. A private Date data field named dateCreated that stores the date when the STS was created.
3. A private double data field named emptyMass in pounds (default to 613,100) which represents the mass of the STS before fueling.
4. A private double data field named fuelMass in pounds (default to 3,785,000) which represents the mass of the fuel needed by the STS.
5. A private double data field named payloadMass in pounds (default to 0) which represents the mass of the STS payload.
6. A private double data field n
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 standard so to include databases to store the results etc. Dont worry about the actual questions Ill put them
In so jus put in like one question to test it. Thanks
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 statement ->if a given instance particular processor access a memory block then memory block status is marked in shared list -
three situation may arise - memory block may be marked in sharer list as owned,modified,invalidate
during execution number of processor access the memory block and according to that in shared list memory block status change
if at particular instance a processor p1 access block m1, and modified it so status of block should change in shared list ,but i need to insert Trojan in this code, means need to modify the code so changed status of block should not showed
Create a simulation system for ticket purchasing for movie, football, concerts and etc. The
simulation system should be able to simulate the arrival of the customers and evaluate the results
of the simulation. Assume that there are different types of tickets for sales. Firstly, create and
display the tickets information table, the table of the service time, inter-arrival time, ticket slot/day
and ticket type, with an example given below(Picture1&2).
Before the simulation starts, set the counters that are in operation and counters that are not in
operation. During the simulation, more counters should be opened if there is a need (Set the
conditions for this). Besides, you can create a special counter that exclusively for member only
and so on. Assume that the customers queue up in a line and will proceed to any counter(s)
that are free to serve the customers. End the simulation when all the customers have arrived or
all the tickets are sold off.
The intent of this program is to manage a set of favorite movies. Each movie will have data associated with it:
Title
Year produced
Rating (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 in extra credit)
You must allow the customer to do the following actions on the movie list:
List all movies
Add Movie
Delete Movie
Edit Movie
Exit program
The menu prompted to the user should look something like the following. You can also allow the user to input only the first letter of each word, but you need to make it clear whats happening.
COMMAND MENU
(L)ist List all movies
(A)dd Add a movie to the list
(E)dit Edit a movie on the list
(D)elete Delete a movie on the list
(Q)uit Exit the program
I can now as the user enter either the word, or the letter (capitalized and in parentheses). If I enter anything else besided t
Program Assignment
Use 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 savings. Design subclasses: Stock, Bond, and BankAccount, and its two subclasses SavingsAccount and CheckingAccount.
Investment (10)
Design an abstract Investment class that includes String type and String name attributes, and a double investmentValue attribute. Each has an accessor and mutator method. There is also a toString method to print out the type and the name.
There is a default constructor that sets the type and name to none.
There is also a two parameter constructor with the type and name. The Investment class, being abstract, cannot be instantiated.
There is also a toString met
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 8 hours on this assignment and am struggling to no end. Loops are baffling to me.
Additional materials attached include:
- The windchill function
- The guessword.py file
- The worldlist100.txt file
- Instructions on where and how to download python 3.8
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 steps showing the analytical solution of the derivation of the system of equations.