PRG 215 Entire Course | University Of Phoenix
- University of Phoenix / PRG 215
- 15 Feb 2019
- Price: $40
- Other / Other
PRG 215 Entire Course | University Of Phoenix
PRG 215 Entire Course
PRG 215 Week 1 Individual Assignment Fix the Error
Use the following code:
import java.util.Scanner;
public class SyntaxError
{
public static void main(String[] args)
{
System.out.println(Enter two numbers to multiply.)
Scanner keyboard = new Scanner(System.in);
n1 = keyboard.nextInt();
n2 = keyboard.nextInt();
int product = n1 * n2;
System.out.println("The product is " + product);
}
}
Find and fix the error.
Compile and run the fixed program.
Take a screenshot of the result.
Paste your screenshot into a Microsoft® Word document that includes the following:
The new fixed source code
At least 3 error messages you observed (include screenshots of the messages)
Submit your document using the Assignment Files tab.
PRG 215 Week 2 Individual Assignment Conversion Program
Tsubo is a Japanese unit of measure for area. 1 Tsubo is equal to 35.58 square feet.
Write a program that asks the user if they want to convert from Tsubo to square feet or from square feet to Tsubo.
Include code that asks users to input a number to convert. The code should also display the converted unit.
Include proper documentation in the source code.
Take a screenshot of the program output and paste it into a Word document.
Submit a .zip file containing the ".java" file(s) and Word document with the screenshot using the Assignment Files tab
PRG 215 Week 2 Individual Assignment Code Improvement
Based on your Week Two Learning Team discussion, modify your Week One Fix the Error Program.
Write a 1/2- to 1-page summary of the changes you made and how these changes improve or add features to your program.
Submit a .zip file containing the ".java" file(s) using the Assignment Files tab.
PRG 215 Week 3 Individual Assignment Game Program
Write a program to play the rock-paper-scissors game. Two users take turns entering R, P, or S. The program then announces the winner, based on the rule that paper covers rock, rock breaks scissors, scissors cut paper.
Include proper documentation in the source code.
Take a screenshot of the program output and paste it into a Word document.
Submit a .zip file containing the ".java" file(s) and Word document with the screenshot using the Assignment Files tab.
PRG 215 Week 3 Individual Assignment Conversion Program Updates
Based on your Week Three Learning Team discussion, modify your Conversion Program.
Write a 1/2- to 1-page summary of the changes you made and how these changes improve or add features to your program.
Submit a .zip file containing the ".java" file(s) using the Assignment Files tab.
PRG 215 Week 4 Individual Assignment Game Score
Continue working on your Rock-Paper-Scissors game from Week Three.
Add new code that causes the game to stop when 1 user has 5 more wins than the other user. The program should keep a running score of each user after each round.
Include proper documentation in the source code.
Take a screenshot of the program output and paste it into a Word document.
Submit a .zip file containing the ".java" file(s) and Word document with the screenshot using the Assignment Files tab.
PRG 215 Week 4 Individual Assignment Game Program Updates
Based on your Week Four Learning Team discussion, modify your Game Program.
Write a 1/2- to 1-page summary of the changes you made and how these changes improve or add features to your program.