Find Us On: Facebook Twitter Rss Feed Blog
Need To Register?
<< < 1 2 3 4 5 6 7 8 > >>
Assignment Price Category Due
Java - StringTokenizer, Door, MtnHeight, BankAccount 20.00 Programming 11/5/2013
* Demonstrate the use of the StringTokenizer class. Chapter 2 lab. * * The Java code below contains numerous errors. Your solution * should implement the following pseudocode: * * PSEUDOCODE: * ----------- * Prompt and get from the user their complete name. For exam...
Pseudocode Array 10.00 Programming 11/6/2013
You will be graded by the quality of your response. Also, please do not copy someone else's post but try to make it yours. You may look at the posts of others for ideas, but do not copy and paste it and make it yours. Do one post that answers it. So think carefully about your ...
Java - DynamicArray2, StringSet, StringMap 15.00 Programming 11/6/2013
DynamicArray2 P8 contains the partially implemented DynamicArray2.java, which we discussed in lecture. You are to complete the implementation. You must use the representation strategy that is provided. When the data array fills up, allocate a new one that is twice as big. You do ...
Java - Count alligators and clone sheep 10.00 Programming 11/10/2013
Project 8-1: Count alligators and clone sheep Console Counting alligators... 1 alligator 2 alligator 3 alligator Counting sheep... 1 Blackie 2 Blackie 1 Dolly 2 Dolly 3 Dolly 1 Blackie Press any key to continue . . . Operation This application us...
Java - Student Scores Application 10.00 Programming 11/15/2013
Example: Welcome to the Student Scores Application. Enter number of students to enter: 4 Student 1 last name: Steelman Student 1 first name: Andrea Student 1 score: 95 Student 2 last name: Murach Student 2 first name: Joel Student 2 score: 92 Student 3 last n...
Java - Accumulate test scores 15.00 Programming 11/20/2013
This project requires a basic GUI with a somewhat complicated action listener. Operation •The user enters test scores one at a time and then clicks the Enter Score button. •For each entered score, the application adds one to the number of scores, calculates the aver...
Java - Circle, Shape, Temperture, Movie, Dog 15.00 Programming 11/22/2013
Q1. Write a program in Java to construct a circle class with two circle objects of radius 5 cms and 7cms respectively. Display the area of the circle by creating and calling a method appropriately. Q2. Several geometric shapes possess two common properties: an area and volume. Cre...
Tic Tac Toe - Java Swing 12.00 Programming 11/27/2013
Design and code a Swing GUI for a two player tic tac toe (noughts and crosses) game on a 3 by 3 game board. The JFrame should use a BorderLayout with a JLabel in the NORTH region to display messages (eg who won the game), and a JPanel in the center region to display the game board. Fo...
Java Reverse String program 4.00 Programming 11/30/2013
Create a Java application that will accept a string input and return the characters of the string in reverse order.
Java sum Numbers in Sequence 4.00 Programming 11/30/2013
Write a programname Sum.java which accepts a number greater or equal to zero (say n) and computes and outputs the value 0 + 1 + 2 + · · · + n. if the input is less than zero, it should output an error message and terminate. Use an if-else and while loop in your program ...
Java - Largest And Smallest Number 7.00 Programming 12/3/2013
Write a program that will search a text file of strings representing numbers of type int and will write the largest and the smallest numbers to the screen. The file contains nothing but strings representing numbers of type int, one per line.
Java - Double Array 7.00 Programming 12/5/2013
Write a program that declares an array "alpha" of 50 elements of type "double". Initialize the array so that the first 25 elements are equal to the square of the index variable and the last 25 elements are equal to three times the index variable. Output the array s...
Java - COP2551 - Project 3 - New Vehicle Sales Info 30.00 Programming 12/6/2013
Submission Requirements  Submit your project folder via the Submit tool provided on the website o Follow the project submission guidelines for the class Design Specification Requirements Note: Refer to the sample output in the Example Output section below. 1. The program ...
Java - ExtendedDate 25.00 Programming 12/8/2013
The project for this course is the creation of an ExtendedDate class. Note that this definition of the Date class will permit saving any values for a date’s instance variables including zero or negative values, values for month greater than 12, values for day greater than 31, ...
Java - Weighted Average 10.00 Programming 12/14/2013
Design a GUI program to find the weighted average of four test scores. The four test scores and their respective weights are given in the following format: testscore1 weight1 ... For example, the sample data is as follows: 75 0.20 95 0.35 85 0.15 65 0.30 The user is su...