1 / 12

PRG 215 Experience Tradition- tutorialrank.com

For more course tutorials visit<br>www.tutorialrank.com <br><br>PRG 215 Week 1 Individual Hello, World!<br>PRG 215 Week 1 Individual Java Overview<br>PRG 215 Week 2 Individual Explain the Code<br>PRG 215 Week 2 Individual Accept User Input and Perform Calculations<br>PRG 215 Week 3 Individual Computation and Looping<br>

Download Presentation

PRG 215 Experience Tradition- tutorialrank.com

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PRG 215 Entire Course For more course tutorials visit www.tutorialrank.com PRG 215 Week 1 Individual Hello, World! PRG 215 Week 1 Individual Java Overview PRG 215 Week 2 Individual Explain the Code PRG 215 Week 2 Individual Accept User Input and Perform Calculations PRG 215 Week 3 Individual Computation and Looping PRG 215 Week 3 Individual Use a Loop PRG 215 Week 4 Individual Object-Oriented Concepts PRG 215 Week 4 Individual Define and Use a Class PRG 215 Week 5 Individual Add Exception Handling ============================================== PRG 215 Week 1 Individual Hello, World!

  2. For more course tutorials visit www.tutorialrank.com PRG 215 Week 1 Individual Hello, World! Resources:  PRG215r4_Week_1_assignment.zip (unzip to download source code for this week’s Java program)  Using NetBeans to Complete Weekly Assignments For this week’s programming assignment, you will type, debug, and run the attached Java™ program code. Successfully coding and testing a simple program (sometimes referred to as a “Hello, world!” program) is useful because it gives you practice in the development environment. In other words, completing this assignment will demonstrate that you have successfully downloaded and installed the Java™ development and runtime environments and that you are able to key in source code, compile that source code, run it, and observe the results. After you have successfully coded and tested a simple program, you can focus on syntax, data structures, and other programming concepts. Unzip PRG215r4_Week_1_assignment.zip, download the included PNG file, and use it as the basis for your Java™ program. Refer to the file Using NetBeans to Complete Weekly Assignments if you need help.

  3. Submit a .zip file containing the entire project including the “.java” file(s) and Word document with the screenshot using the Assignment Files tab. The entire project will need to be zipped. You can zip the files in NetBeans by going to File (on the menu) then Export Project. The options reads: to ZIP. You can include the screenshot in the same zip file, or submit as a separate file. Note: Please try to name your program, folders, and files with short names as sometimes it is difficult to unzip the program with long file names. ============================================== PRG 215 Week 1 Individual Java Overview For more course tutorials visit www.tutorialrank.com PRG 215 Week 1 Individual Java Overview Resource:  Java Overview Assignment

  4. For this assignment, you will write short answers to several important programming- and Java™-related questions. You will find the questions in the linked Java Overview Assignment document. Download the Java Overview Assignment document. Type your answers to the questions into a different Microsoft® Word document, Submit the Word document containing your answers using the Assignment Files tab. ============================================== PRG 215 Week 2 Individual Accept User Input and Perform Calculations For more course tutorials visit www.tutorialrank.com PRG 215 Week 2 Individual Accept User Input and Perform Calculations Resources:  PRG215r4_Week_2_assignment.zip  Using NetBeans to Complete Weekly Assignments

  5. For this week’s assignment, you will build on your program from the Week One Individual Assignment, “Hello, World!.” Specifically, you will add the capability to accept additional user input (e.g., number of items a customer wants to purchase) and calculate a total sales amount, including tax, based on net sales amount. To complete this assignment, unzip PRG215r4_Week_2_assignment.zip, download the included PNG files, and use them as the basis for your Java™ program. Refer to the document Using NetBeans To Complete Weekly Assignments if you need help. Submit a .zip file containing the entire project including the “.java” file(s) and Word document with the screenshot using the Assignment Files tab. The entire project will need to be zipped. You can zip the files in NetBeans by going to File (on the menu) then Export Project. The options reads: to ZIP. You can include the screenshot in the same zip file, or submit as a separate file. Note: Please try to name your program, folders, and files with short names as sometimes it is difficult to unzip the program with long file names. ============================================== PRG 215 Week 2 Individual Explain the Code

  6. For more course tutorials visit www.tutorialrank.com PRG 215 Week 2 Individual Explain the Code Resource:  Explain the Code Assignment In this assignment, you will analyze Java™ code to determine expected results and identify specific statements. Programmers often use this approach rather than relying on the debugger, because for many kinds of errors, most significantly logic errors, the debugger is no help; only careful examination of code by a human being can identify the problem. To complete this assignment, download the file Explain the Code file. Type your answers to the questions into a new Microsoft® Word document. Submit the Word document containing your answers using the Assignment Files tab. ============================================== PRG 215 Week 3 Individual Computation and Looping

  7. For more course tutorials visit www.tutorialrank.com PRG 215 Week 3 Individual Computation and Looping Resource:  Computation and Looping Assignment Virtually all non-trivial Java™ programs contain some form of looping. Arrays, which are powerful structures used to store groups of related values, are common as well. For this assignment, you will identify important characteristics of both arrays and loops. Download the Computation and Looping Assignment file. Type your answers to the questions into a new Microsoft® Word document. Submit the Word document containing your answers using the Assignment Files tab. ============================================== PRG 215 Week 3 Individual Use a Loop For more course tutorials visit

  8. www.tutorialrank.com PRG 215 Week 3 Individual Use a Loop Resources:  PRG215_Week_3_assignment.zip  Using Net Beans to Complete Weekly Assignments For this week’s assignment, you will build on your program from the Week Two Individual Assignment, Accept User Input and Perform Calculations. Specifically, you will add the capability using a loop to accept additional information from your customer indefinitely until your customer indicates that he or she is ready to see the purchase total by typing in a specific exit value. To complete this assignment, unzip PRG215r4_Week_3_assignment.zip, download the included PNG files, and use them as the basis for your Java™ program. Refer to Using Net Beans to Complete Weekly Assignments if you need help. Submit a .zip file containing the entire project including the “.java” file(s) and Word document with the screenshot using the Assignment Files tab. The entire project will need to be zipped. You can zip the files in NetBeans by going to File (on the menu) then Export Project. The options reads: to ZIP. You can include the screenshot in the same zip file, or submit as a separate file.

  9. Note: Please try to name your program, folders, and files with short names as sometimes it is difficult to unzip the program with long file names. ============================================== PRG 215 Week 4 Individual Define and Use a Class For more course tutorials visit www.tutorialrank.com PRG 215 Week 4 Individual Define and Use a Class Resources:  PRG215r4_Week_4_assignment.zip  Using NetBeans to Complete Weekly Assignments For this week’s assignment, you will build on your program from the Week Three Individual Assignment, Use a Loop. Specifically, you will define a custom Java™ class, instantiate it, and call a method on the instantiation. Unzip PRG215r4_Week_4_assignment.zip, downloadall of the included PNG files, and use them as the basis for your Java™ program. Refer to Using NetBeans to Complete Weekly Assignments if you need help.

  10. Submit a .zip file containing the entire project including the “.java” file(s) and Word document with the screenshot using the Assignment Files tab. The entire project will need to be zipped. You can zip the files in NetBeans by going to File (on the menu) then Export Project. The options reads: to ZIP. You can include the screenshot in the same zip file, or submit as a separate file. Note: Please try to name your program, folders, and files with short names as sometimes it is difficult to unzip the program with long file names. ============================================== PRG 215 Week 4 Individual Object-Oriented Concepts For more course tutorials visit www.tutorialrank.com PRG 215 Week 4 Individual Object-Oriented Concepts Resource:  Object-Oriented Concepts Assignment

  11. For this assignment, you will be asked to identify and explain critical object-oriented concepts. Completing this assignment successfully will help you to understand and complete this week’s coding assignment. Download the Object-Oriented Concepts Assignment file. Type your answers to the questions into a new Microsoft® Word document. Submit the Word document containing your answers using the Assignment Files tab. ============================================== PRG 215 Week 5 Individual Add Exception Handling For more course tutorials visit www.tutorialrank.com PRG 215 Week 5 Individual Add Exception Handling Resources:  PRG215r4_Week_5_assignment.zip  Using NetBeans to Complete Weekly Assignments For this week’s assignment, you will build on your program from the Week Four Individual Assignment, Define and Use a Class. Specifically,

  12. you will add exception handling code to your program to identify when a user inputs unacceptable values and handle those situations gracefully. Unzip PRG215r4_Week_5_assignment.zip, downloadall of the included PNG files, and use them as the basis for your Java™ program. Refer to Using NetBeans to Complete Weekly Assignments if you need help. Submit a .zip file containing the entire project including the “.java” file(s) and Word document with the screenshot using the Assignment Files tab. The entire project will need to be zipped. You can zip the files in NetBeans by going to File (on the menu) then Export Project. The options reads: to ZIP. You can include the screenshot in the same zip file, or submit as a separate file. Note: Please try to name your program, folders, and files with short names as sometimes it is difficult to unzip the program with long file names. ==============================================

More Related