Friday 21 December 2012


WHOLE COURSE PRG/421 PRG 421 Version 10 Java Programming II - Screenshot Documentation SOLID CODE




WHOLE COURSE PRG/421 PRG 421 Version 10 Java Programming II - Screenshot Documentation SOLID CODE



http://www.studentoffortune.com/question/2003059/WHOLE-COURSE-PRG421-PRG-421-Version-10-Java-Programming-II---Screenshot-Documentation-SOLID-CODE

Thursday 6 December 2012


PRG 421 Version 10 Java Programming II
PRG/421, PRG-421

Tutorial Includes 

PROJECT PLAN
Develop a project plan for the fundraiser program due in Week Five.

•             The project plan should describe the design of the program and how it is to be modularized. The design should include the layout of the GUI.

Note. The program should be designed in a modular way so that individual team members can write the code for specific methods.

•             The project plan should also include individual task assignments.

Submit the project plan to your facilitator.

RETAIL CALCULATOR PROGRAM
For this assignment, you will choose from the following options:

•             Option 1: Retail Calculator
•             Option 2: Payroll Application

Read the instructions in the University of Phoenix Material: GUI Components Program located on the student website and select one option to complete the assignment.

Submit assignment per the APA template that will be provided, to include cover page, description of code, flowchart or pseudocode, code with header data, and finally a screen shot of your code executing on your computer.  Please submit your assignment as YourLastNameWk2.doc and YourLastNameWk2.java.  Ensure that your code executes prior to submittal.

DISCUSSION QUESTION # 1

•             How do arrays and combo boxes work together? Write a small program in which you add the elements of an array to a combo box and post the code for your program.
DISCUSSION QUESTION # 2

•             What are advantages of using menus in a GUI application? Design a menu structure for a program you would find useful in your work or hobbies. Write and post the code for the menu creation.


http://www.studentoffortune.com/question/1950775/PRG-421-Version-10-ENTIRE-WEEK-2

PRG/421 version 10 Java Programming II
PRG 421 version 10 Week 1

Tutorial Includes

Fundraiser Program
A city is sponsoring a run to support local charities and would like an application to track the pledges. The result will be a database that holds data on individuals, total pledges obtained, and the charity for which the donation is designated.

Design and implement a GUI-based program to accept a participant’s name, the amount pledged, and the designated charity’s name. The program will store these data for later retrieval. The project will be completed in several stages, with the first deliverable due in Week Two.
Hello World Program
Design, implement, test, and debug a GUI-based version of a “Hello, World!” program.
Create a JFrame that includes a JLabel that reads “Hello, World!” Use a layout manager of your choice.
Include an Exit button to close the program.
Submit assignment per the APA template that will be provided, to include cover page, description of code, flowchart or pseudocode, code with header data, and finally a screen shot of your code executing

DISCUSSION QUESTION # 1
 •  What is an event? How are events and graphical user interfaces (GUIs) related? Provide an example of an event and relate it to a GUI.

DISCUSSION QUESTION # 2
 •How are containers used in the Java® language? Write a small program in which you add components to a container. Then post the code for your program.

DISCUSSION QUESTION # 3
 •What do you feel are the advantages and disadvantages to using Swing versus AWT?


http://www.studentoffortune.com/question/1948083/PRG-421-version-10-week-1

PRG 420 Discussion Question # 2


Super class: The super of the class SavingsAccount would be Accounts, since there are many kinds of accounts, the class Accounts will store the basic values that are common in all the accounts such as a unique account number. Sub class: The subclasses of class SavingAccount will be PassbookSavings ad CertificateOfSavings, since these two accounts are types of saving accounts therefore we have made them the subclasses of SavingAccount. Attribute: There will be many attributes in SavingAccount class, one of them will be interest, because the interest of a SavingsAccount is compund therefore it will be dealt in the SavingsAccount class. Method: One method in the SavingsAccount class will be calcInterest(), this method will calculate the compound interest. Instance: An instance will be formed for every new account holder, this instance will keep all the information and will carry out the primary tasks as required. Encapsulation: Encapsulation is defined as the hiding of data in a class so that it is not accessed by any other class. Mostly classes are designed in a way that the secret/important data is not accessible to any other class. The important attribute here is the interest, if interest is modified by any means then it can cause trouble for account-holder and bank. So this attribute will be well encapsulated in the class SavingsAccount.



http://www.studentoffortune.com/question/1880165/PRG-420-Discussion-Question--2