1 / 4

CIS 247 DEVRY WEEK 2 ILAB LATEST

<br>Visit Below Link, To Download This Course:<br><br>https://www.tutorialsservice.net/product/cis-247-devry-week-2-ilab-latest/<br><br>Or <br>Email us on<br>SUPPORT@TUTORIALSSERVICE.NET<br><br>CIS 247 DeVry Week 2 iLab Latest<br>CIS247<br>CIS 247 DeVry Week 2 iLab Latest<br>iLab 2 of 7: Employee Class<br>Remember This! .devry.edu/vpn/index.html”>Connect to the iLab here.<br>Note! Submit your assignment to the Dropbox located on the silver tab at the top of this page. (See the Syllabus section “Due Dates for Assignments & Exams” for due dates.)<br>

Download Presentation

CIS 247 DEVRY WEEK 2 ILAB LATEST

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. CIS 247 DEVRY WEEK 2 ILAB LATEST Visit Below Link, To Download This Course: https://www.tutorialsservice.net/product/cis-247-devry-week-2-ilab-latest/ Or Email us on SUPPORT@TUTORIALSSERVICE.NET CIS 247 DeVry Week 2 iLab Latest CIS247 CIS 247 DeVry Week 2 iLab Latest iLab 2 of 7: Employee Class Remember This! .devry.edu/vpn/index.html”>Connect to the iLab here. Note! Submit your assignment to the Dropbox located on the silver tab at the top of this page. (See the Syllabus section “Due Dates for Assignments & Exams” for due dates.) iLAB OVERVIEW Scenario and Summary We begin our investigation of object-oriented programming by creating an object-oriented program with a class called Employee. You will create two objects based on the Employee class, along with a class that contains the main method. The attributes, constructors, and methods for this class must satisfy the requirements in Steps 1 through 3. After you create the objects, you will prompt the user for information and then display it. We will want to ensure that this first class is well-constructed and tested since we will extend this class in Labs 3 through 6. Deliverables Due this week:

  2. Capture the Console output window and paste it into a Word document. Zip the project folder files. Put the zip file and screen shots (Word document that contains programming code and screen shots of program output) in the Dropbox. iLAB STEPS STEP 1: Understand the UML Class Diagram .equella.ecollege.com/file/6eeabc50-43d2-410a-9a6f-a74f918a92f7/1/CIS247B_W2_iLab.html#top”>Back to Top Use the following UML diagram to build the class. The first section specifies the attributes. The second section specifies the behaviors, and the first character specifies the access modifier value, where:   “-” means that the class member is private, and “+” means that the class member is public. STEP 2: Code the Employee Class .equella.ecollege.com/file/6eeabc50-43d2-410a-9a6f-a74f918a92f7/1/CIS247B_W2_iLab.html#top”>Back to Top 1. Create a new project called “CIS247B_WK2_Lab_LASTNAME”. 2. Using the provided Class Diagram from Step 1, code the Employee class in the new project (i.e., “Realize the UML Class diagrams”). 3. The default constructor should set the attributes as follows: o firstName = “not given” o lastName = “not given” o gender = “U” (for unknown) o dependents = 0 o annualSalary = 20,000 4. The multi-arg constructor should initialize all of the attributes using values passed in using its parameter list.

  3. 5. As shown in the Class diagram, each attribute should have a “getter” to retrieve the stored attribute value, and a “setter” that modifies the value. 6. The calculatePay( ) method of the Employee class should return the value of annual salary divided by 52 (return annualSalary / 52;). 7. The displayEmployee() method should display all the attributes of the Employee object in a well- formatted string with logical labels applied to each attribute. Don’t forget to call calculatePay from within the displayEmployee method in order to display the Employee’s weekly pay as well! 8. Inside displayEmployee, create a NumberFormat object for currency with the following: 9. Display the pay with the following: STEP 3: Code the Main Program .equella.ecollege.com/file/6eeabc50-43d2-410a-9a6f-a74f918a92f7/1/CIS247B_W2_iLab.html#top”>Back to Top In the Main class, create code statements that perform the following operations. Be sure you follow proper commenting and programming styles (header, indentation, line spacing, etc.). 1. Create an Employee object using the default constructor. 2. Prompt for and then set the first name, last name, gender, dependents, and annual salary. (Remember that you have to convert gender, dependents, and annual salary from strings to the appropriate data type.) 3. Using your code from last week, display a divider that contains the string “Employee Information” 4. Display the Employee information. 5. Create a second Employee object using the multi-argument constructor, setting each of the attributes with appropriate valid values. 6. Using your code from last week, display a divider that contains the string “Employee Information”. 7. Display the Employee information for the second Employee object. STEP 4: Compile and Test .equella.ecollege.com/file/6eeabc50-43d2-410a-9a6f-a74f918a92f7/1/CIS247B_W2_iLab.html#top”>Back to Top

  4. When done, compile and run your code. Then, debug any errors until your code is error-free. Check your output to ensure that you have the desired output, modify your code as necessary, and rebuild. Your output should resemble the following: STEP 5: Submit Deliverables .equella.ecollege.com/file/6eeabc50-43d2-410a-9a6f-a74f918a92f7/1/CIS247B_W2_iLab.html#top”>Back to Top   Capture the Console output window and paste into a Word document. Put the zip file and screen shots (Word document) in the Dropbox.

More Related