+1(316)4441378

+44-141-628-6690

Archive for the ‘Computer science and IT assignments’ Category

Create a Simple Computer Game

Begin with several insects walking around the screen. The user must click the mouse on an insect to kill it. The user must kill as many insects as possible in 30 seconds.
Keep an on-screen count of the number of insects killed and an on-screen timer counting down form 30 seconds. The game should get harder as it proceeds, so make the insects move faster with each kill. After 30 seconds the game ends.
Use an image editing software to draw an animated insect. There should also be an image for it being dead.
Animate the insect so it faces the direction it is moving.
It is recommended that you define a class to represent an insect and use an array of objects to create several insects.
Note-The player must "click" on an insect to kill it. Do not simply test if the mouse button is pressed while the pointer is on the insect, as this lets the player click once and simply drag around to score kills. Too easy!

Python coding test.

I have an assignment that I must do online in the class, so I still don't have the exact question of the assignment. what is actually required will be a to code an (advanced-less advanced) python program within 3 hours.
I want someone to be able to receive the question once I have it and do it for me within the allowed time. I can provide you now, with a similar python program from previous years questions. However, the actual assignment could vary and be much easier than expected. Therefore, I really need a python programming expert.

Java Connect Four Board


My professor wrote a whole java prgram with the classes and all, what needs to be done is 3 functions and the instructions are on the file Board.java.

Please, I know the deadline is soon but it was given recently and I could not do it.
Its just 3 functions.

Design and Inheritance

You work with the given project hauntedCastleStart. This is yet another variant of the game of Zuul that is described in Chapter 8 of the module text book. This variant uses a dierent scenario, namely a haunted castle. You will extend the project towards a more interesting game.

Assignment 3 – Inheritance, Abstract Classes, Interfaces, and Polymorphism

# Assignment 3 - Inheritance, Abstract Classes, Interfaces, and Polymorphism

## Due: 02-19-2020

## Author


## Description

The Jawas on Tatooine have recently opened a droid factory and they want to hire you to write a program to hold a list of the available droids, and the price of each droid. The price is based on the type: (protocol, utility, janitor, or astromech), the material used and the options selected by the Jawa creating the list.

The program will keep a list of Droids that are created. This list MUST be an Array. The array should be of a type that is high enough on the inheritance chain that all droids no matter what type they are can be stored in it (Think Polymorphism). Don't make it of type 'object'. That is too high on the inheritance chain. Also, just make the size of the array large enough that it can accommodate some droids. 100 is a good number that comes to mind. I'm not concerned with it being auto-resizing, or anything fancy.<

Computer science project

Create a soccer game using preferably either Visual Basic or Unity. It must be a simple game with the title 'Galactik Football'. With a fire ball effect when players take a shot. Controls will be W,A,S,D keys to move up,left,down and right. Mouse will be used to pass/shoot and aim. Use retro pixelated type graphics.

Please try to get this done as soon as you can i will be forever grateful!

Find a snippet in a document

You will write code that, given a document (a sequence of words) and set of search terms, will find the minimal length subsequence in the document that contains all of the search terms. If there are multiple subsequences that have the same minimal length, you may return any one of them.

This is the class you will write. We have provided you with a skeleton of the class for you to fill in. As you will see, the constructor for the class does most of the work, including locating the minimum snippet containing a list of terms in a given document.

For a complete description of what you must implement in this class, please see the Javadoc for the MinimumSnippet class. Read this document very thoroughly and carefully!

Java Code

Code must be written to satisfy this.

The program for this Assessment will consist of four sections, each headed by the three-line comment below:
//*********************************************************
//****Assessment 5 Section X
//*********************************************************
(where X stands for the portion of the Assessment to follow.)

Section 1:
1. Enter the comment with the section title as described above.
2. Create a base class called scoreKeeper.
    * Include a private property called gamePlayed to contain the name of the game being played.
    * Add a private property which will allow for any number of players. A dictionary or dynamic array would be a good option. The container will hold the names and scores of the players.
    * Include a new public method, addName(), to accept a players name and insert it into the container. (Note: If the container you used does not have an add metho

Python project 1

You are very welcome to use online resources to help you carry out these tasks. You MUST cite (in the code comments or in an adjacent cell) if you use code or tutorials that you have got from another source. A brief statement and a link to the material is considered acceptable acknowledgement.

Debt to income calculator Python Project

Project - Debt to Income Calculator
Program Python in Spyder IDE
Project Guidelines
    At the minimum, your code should include a least one of each of the following:
    container type (list, tuple, set, or dictionary)
    iteration type (for, while)
    conditional (if)
    try blocks
    user-defined functions
    input and/or output file (submit input data)
    user-defined class. The class must be imported by your main program and have the following required structures.
at least 1 private and 2 public self attributes
at least 1 private and 1 public method that take arguments, return values and are used by your program
an init() method that takes at least 1 argument
a repr() method
Provide unit tests that prove that your class methods work as expected. The tests should evaluate results using assert stat