+1(316)4441378

+44-141-628-6690

Archive for the ‘Undergraduate’ Category

I have to create a store that sells pijamas for women in Java Neatbeas

the program in NeatBeans should be created in Java and it must have:
8 classes
4 arrays (bidimensional)
use only JOptionPane.showInputDialog and JOptionPane.showMessageDialog to gather and show data (no GUI)
it mush have a menu (something like JOptionPane.showInputDialog("Pick your choice: "nn1. name of the person buyingn2. show pijamas availablen3. buyn4. show what you are buyingn5. delete the shoppingn6. buy

the pijamas should be electable by color (white, black, red, blue) and size (s, m, l)

Math Project Management

I need assistance in answering 9 math questions dealing with Project Management.  The due date is 24APR at 1PM.  I'm not able to provide additional time to this deadline.  I'm in college living off financial aid so I can't afford to pay a huge price.  Please see the attached document which list the questions.  PLEASE show ALL l work so that I can understand how you came to your conclusion.

Data Structures Assignment 4 and 5

I need help doing two of my data structures assignments. Attached are the assignment, textbook, source codes, and mock assignment. The textbook is included is the 2nd edition while the course uses the 4th edition so chapter and question numbers will be different. Assignment should be done in java.

Filo IO Assignment

In this assignment, you will practice using recursion, as well as file operations. Submit a single ZIP file called assignment6.zip containing your IntelliJ project. This assignment has 50 marks see the marking scheme posted on cuLearn for details.
Assume that we have an assembly line that can take a picture of a machine part which moves along a conveyor belt. The picture (or image) is represented as a 2D grid of pixels which are either black or white. The pixels can be accessed by specifying the row and column of the pixel where rows and columns are specified by an integer value. The machine examines the images and attempts to determine whether or not the parts are broken. A broken part will appear as a set of black pixels which are not all connected together (i.e., there is a separation between one or more sets of black pixel groups. Here are some examples of four possible images. Note that (c) and (d) represent images of broken parts. The red border represents the perimeter of a

GUI house rentals system using scenebuilder

Here is the zip file the system package has the phase1 one and the main package has the phase 2 which I couldnt complete it so can you help me in this also i did only the main view  in the phase to and I didnt know what I should write in the controller so please help me

House Rental System phase 2 GUI (JavaFX)

here in the zip file the the system package has the phase one and the main package has the phase 2 which I couldn't do it I only did the main view of the app and the rest I need your help in it by using sceneBuilder (GUI)

Implementing network using packet tracer

Hi,

I am having some difficulty and not being able to figure it out how to

Add a default static route on Home Router so that it will deliver all packets correctly. ( What IP should I be using)
Add a static route to 44.1.1.0/24 on SF router.
I have attached the Cisco Packet Tracer and highlight where I got stuck. Please let me know if you are able to complete it

GPS PROJECT

This project needs to be able to tell me the time it will take to get from one latitude and longitude to another for example (26.2146 N, 98.1415 W) to (26.1911 N, 98.2060 W) the functions name it should have are Time, Position, and what i mean by position i mean just call it Position A, Position B, etc. and a compass that tells you in what direction you will have to go from Position A to Position B

A cylindrical pill-like cluster of radius r nucl

A cylindrical pill-like cluster of radius r nucleates on a dislocation substrate. The freeenergy change per unit thickness is given by
? = ??
2?? + 2??? + ? ???(?)
(a) Sketch the plot of ? vs r. [note: as r = 0, ? = ]
(b)Find critical radius and critical Gibbs free energy of the nucleation.

C Program needed

[prob1.c][100%] Develop a C program to read hurricane data and store and sort those hurricane data.
Each hurricane record contains the hurricanes name, year, month, and category. An input file named
hurricane.txt contains 100 hurricane records. Your program will perform the following tasks.
a) Read hurricane data from input file hurricane.txt and store them in an array of structure. The
structure definition is shown below. Then write the hurricane data stored in the array of structure
to a binary file named hurricane.bin.
typedef struct hurricane
{
char name[20];
int year;
int month;
int category;
}H_RECORD;
b) Create a new structure for storing the same hurricane data. This new structure should contain the
same members (name, year, month, and category) but utilize a minimum size as a data type.
Take the definition of the new structure shown below as an example. Design this new structure
so that the value sizeof(H_RECORD_MIN) is minimized