+1(316)4441378

+44-141-628-6690

Archive for the ‘Desktop software development’ Category

Music Player Assignment

Smart pointers are required. Basic requirements: Create three classes: Disc.h, Disc.cpp, DiscList.h, DiscList.cpp, Track.h, Track.cpp. Follow the UML for a diagram with how to construct the classes. Main file should implement a menu that looks like this:

(A)dd a new disc.
(R)emove an disc.
(P)rint an disc.
(L)ist discs.
(Q)uit

Assignment due on Tuesday.

Java Development

1 Questions which i have outlined below.

The work coding needs to be completed within the blue J project file i have uploaded below and to the specification that the questions ask it be. A lot of the project is completed already.

QUESTIONS:

This question involves completing a class called WizardController, instrances of which coordinate an exhibition performed by two wizards. The exhibition consists of a series of actions performed by each wizard in turn and repeated a number of times selected by the user. The actions are "fly" and "slither" and these incorporate jumps, making use of methods in Wizard to achieve these.

Wizards are represented by objects of the Wizard class which is provided.

Wizards have an instance variable persona of type Triangle, which enables them to be visible in the Shapes window. They are located in cells. They move from cell to cell horizontally or vertically. Cells have width CELL_SIZE_X and height CELL_SIZE_Y. The persona

C# Console Application project

TASK 1:

Create a new C# Console Application project and add a class called Employee. This class should have two
instance variables: a name (of type String) and a salary (of type double). Implement the constructor with
two parameters that will set up the initial values of the instance variables:

public Employee (string employeeName, double currentSalary)
You must implement the following methods:
getName this is an accessor method that should return the name of the employee
getSalary this is an accessor method that should return the salary of the employee in currency format
raiseSalary this method should raise the employees salary by a certain percentage

add a new method Tax(), which calculates how much tax is
deducted from the Employees annual pay, according to the following criteria:

$0 $18,200            0%        Nil
$18,201 $37,000  19%      19c for

Unity Game Dev

The goal of this milestone is to provide a rst demonstration of your product. You run the show and present your game to us and what it can do. At least the minimal functionality outlined below must be shown during the demo. The demonstrations will take place on the 3rd oor of the Trottier building in the week of March 9th - March 13th 2019, just after Spring break. If your game does not run on the Trottier machines or you prefer running it on your own machines, please bring your devices and set them up in one of the meeting rooms.

Student staff app

implement a new student-staff management software app.  In the first instance you have been asked to build a console proof of concept or prototype.

Write a Console application in C# to implement the details given in the assignment specification below.

Your programme must support the ability to do basic CRUD operations such as adding/editing/removing/finding students, lecturers, etc.  Students, Lecturers and Administrators should be stored in one or more lists.

Create an inheritance hierarchy for this application, below are the minimum amount of classes to use in your programme.


Person Class with properties Name, Phone and Email.

Student Class (should inherit the functionality of the base class Person) with properties Status and StudentID.  A students status can only be either Postgrad or an Undergrad.

Employee Class (should inherit the functionality of the base class Person) with a properties called Salary and EmployementTyp

C Program

write a simple C program. (No headings or screen captures are required.) You will submit a single .c file.

Here are the requirements of the program:

1. Ask the user for their age in years.

2. Ask them for their height in inches.

3. Ask them for their weight.

4. Calculate and show their age in months.

5. Calculate and show them their height in feet (this will be a decimal number).

6. Calculate and show their BMI.

c programing

I will get Problem Sets in C which I need to accomplish  .I need use  dynamic memory allocation , strings , pointers and structures . So if you are really good , it could be long term relationship .
The Problemsets are like "Create a Game K what is modified version of game 2048 but instead of numbers you have to use alphabets ". It consists of 3 modules . First one is the game K.c module and K.h file with functions which I need to create . Then HOF.c with HOF.h file "The Hall of Fame "  which include names of players and scores . And the last one is UI.c what is same kind of user graphical user interface there is more options how to make it works with Sdl library or curses or standard output . I have like 2 weeks to make all 3 modules . Every code has to be gnuine I have to submit them . I have to use GCC and valgrind to avoid memory leaks . It wil be translated with
$ gcc -std=c11 -Werror -Wall -Wconversion -lm
I can provide more information .

Java JWJGL Library

USE ONLY NETBEANS 8.2 IDE, NO OTHER IDE's ALLOWED!

Write a Java program which uses the LWJGL library to draw a window of 640x480 (with a black background).

THIS PROGRAM WILL NOT USE ANY OTHER GRAPHICS LIBRARIES BESIDES LWJGL!

To download and setup LWJGL with Netbeans 8.2 go here:
http://wiki.lwjgl.org/wiki/Setting_Up_LWJGL_with_NetBeans.html

The coordinate system should be centered in this window. Your program will read a file titled 'coordinates.txt' and draw the corresponding filled polygon in this window using the scanline polygon fill algorithm.

Each specified polygon should be filled in the color specified in the text file and then undergo the transformations specified in the input file before being drawn on the screen.

Hence you will need to calculate the composition ofthe transformation matrices and then calculate the position of the polygon vertices and then apply the scan line
fill algorithm.

Use the glVertex2f() comman

populatiom

Write a program that prints the current world population on screen. Then give them a choice of at least three locations to put the population in (one of which has to be Texas. The other two can be your choice). It then prints the amount of space per person in sq. ft., sq. mi., and acres for that location.Also, I want you to do the area conversions inside of Python. Start with one of the values (Square Feet, for example) and then get the other values by converting the Square Feet into Square Miles and Acres.

Python Programming with FTK

1.    Write unit tests for the posted solution(s) from a previous assignment:

    Write at least 3 test cases for each function (text and binary files)
o    the tests should try different situations
    You may use 2 test files, or more
o    you may alter the prior test files or make your own

submit (1) your test files used for the unit tests, and (2) your unit test code.