Articulate the roles played by team members in a software development project, and explain how the Java programming language
Articulate the roles played by team members in a software development project, and explain how the Java programming language and development environment enable you to perform your role as a software programmer/developer in a development project.
It is suggested that you complete the assessments in this course in the order they are presented so that you will build your skills and utilize resources appropriately.
In this assessment, you will learn about computers and how they work. You will learn about the software development process and the role a programmer plays in this process. And you will also learn about the Java programming language and get an overview of its many programming features.
You will use the NetBeans IDE to develop your Java applications. For this assessment, you will setup your NetBeans development environment so that you can use it for completing the course weekly assessments.
10 Assignments (Need to submit every 2-3 days 1 assignment).
****$25 Per Assignment****
Assessment 1.docx
Assessment 1
In software development projects, a team is formed to carry out the project. The team is made of several members, each with a distinct role and responsibilities. Examples of these roles include the client, the project manager, the software architect, and the software programmer/developer roles.
Please refer to the resources of this assessment to learn about the software development process and the roles played in a typical software development project.
You may wish to reference these resources in your assessment.
Follow these steps to complete this assessment:
1. Research the software development process and the roles played by the development team members in software development projects. This research may include the readings suggested with this assessment, or you may conduct additional research.
2. Create a PDF or Word document named “U1A1_SWRoles” of 1–2 pages in which you:
a. Describe the software development process and its phases.
b. Explain at least four of the roles played by team members in a software development project and examine their corresponding responsibilities. The four roles must include the role of the software developer/programmer.
c. As an aspiring Java programmer, articulate how the Java programming language and the Java development environment enable you to perform the role of a Java developer in a software development project.
Your document should follow APA style and guidelines, including proper spelling and grammar. APA guides are available in the assessment resources.
Deliverables
Submit your paper as Word document named as U1A1_SWRoles.doc (a PDF is also acceptable).Your document should follow APA style and guidelines, including proper spelling and grammar.
By successfully completing this assessment, you will demonstrate your proficiency in the following course competencies and assessment criteria:
1. Describe the software development process and its phases.
2. Explain roles and responsibilities of the developer/programmer teams.
3. Articulate how the programming language and development environment enable the role of a developer/programmer.
4. Communicate efficiently, effectively, and in an appropriate manner for an IT professional.
Overview 1.docx
OverView1
Bottom of Form
· Software Development and Your Role in It
Required Resources
The following resources are required to complete the assessment.
Capella Resources
· Week X Solution Submission Template [DOCX].
Software
For this course, follow the instructions provided through the links below to download and install software or register for an account, as required.
Open-Source Software
· Oracle. (n.d.). Java SE development kit (Version 16 or later) [Computer software]. https://www.oracle.com/java/technologies/javase-jdk16-downloads.html
. Download the current version of the Oracle JDK. Install the program.
· Apache Software Foundation. (n.d.). NetBeans (Version 12.4) [Computer software]. https://netbeans.apache.org/download/nb124/nb124.html
. Download the installer for NetBeans 12.4 for your operating system. Run the installer.
If you encounter any difficulties in the download and installation process, post a detailed question in the Ask Your Faculty Discussion in the menu dropdown when you click the image of your faculty.
Suggested Resources
The resources provided here are optional. You may use other resources of your choice to prepare for this assessment however, you will need to ensure that they are appropriate, credible, and valid. The Supplemental Resources and Research Resources, both linked from the left navigation menu in your courseroom, provide additional resources to help support you.
Capella Resources
· APA Module.
Suggested Skillsoft Resource
· Skillsoft, (n.d.). Getting started with software programming [Tutorial].
Internet Resources
· Brown, S. (n.d.). The key difference between developer and architect roles. http://www.codingthearchitecture.com/2008/02/11/the_key_difference_between_developer_and_architect_roles.html
· Rouse, M. (n.d.). Learn IT: Software development. http://whatis.techtarget.com/reference/Learn-IT-Software-development
· Microsoft. (2017). Team functions and responsibilities. https://msdn.microsoft.com/en-us/library/aa266916(v=vs.60).aspx
· Solve100.com. (2015). Five key roles and responsibilities for software development projects success. http://solve100.com/responsibilities-for-software-development-success/
· Tutorialspoint.com. (n.d.). SDLC: Overview. https://www.tutorialspoint.com/sdlc/sdlc_overview.htm
· Workable.com. (2017). Java developer job description. https://resources.workable.com/java-developer-job-description
VitalSource Resources
· Liang, Y. D. (2020). Introduction to Java programming and data structures (12th ed.). Pearson. Available in the courseroom via the VitalSource Bookshelf link.
. Chapter 1, "Introduction to Computers, Programs, and Java," pages 1–30.
Assessment Instructio
cf_week_x_submission_template.docx
IT-FP2249 Assignment Submission Template
Unit 1, Part 1 Assignment Instructions
Name: Date: Course: IT-FP2249 Unit:
1 |
When you submit your assignment, attach the complete, zipped NetBeans project (not just the .java file) to your submission and attach a completed copy of this submission template as a second attachment. (Please do not embed the zip file in this document.) For u03a1, u06a1, u08a1, and u10a1: Be sure to turn in the zip file with code that you have completed—not the original zip file downloaded from Resources. |
Insert here a copy of your *.java source code text that you used here (copy and paste source code here, do not simply insert *.java files): |
|
2 |
Insert screenshot(s) here showing the result of testing your application as directed by the assignment instructions. (Programs with more than one possible outcome require screen shots to show that the different possible outcomes work as required.) |
3 |
Describe your approach to complete the coding for this assignment and explain the major decisions you made in designing a program that meets the specified requirements. As part of your explanation, be sure to identify the Java constructs you used that are specific and relevant to your program. Depending on the program, these may include the mechanisms for output, input, selection statements, loops, methods, and so forth. In Units 9 and 10, be sure to discuss the classes used in the application. (Please do not just list Java keywords or snippets of code without indicating why they are important.) |
Capella University Proprietary and Confidential 1
Capella Proprietary and Confidential
ShortDoc_Internal.doc
Last updated: 1/24/2022 2:36 PM 2
,
Assessment 2.docx
Assessment 2
Add and Multiply Three Integers
In this assessment, you will design and code a simple Java application that reads in three integer values and prints out both the sum and the product of these three values.
To start the project in NetBeans, go to the File menu in NetBeans and select New Project. When the New Project dialog box opens, under Categories select Java with Ant, and under Projects select Java Application. Click the Next button and give the project an appropriate name. Note the location where the project folder will be saved so you can locate the project and zip it when you are finished. Click the Finish button, and the Java source code file will open in the editor portion of the window.
Your program output should look like the sample output provided in the Add and Multiply Three Integers Instructions [PDF] course file resource. Full instructions for successfully completing this assessment are included in this resource. Use the Week X Solution Submission Template [DOCX] .
Your assessment will be scored on the following criteria:
1. Design a program that meets Java arithmetic operators requirements.
2. Code an application that exercises fundamental constructs.
3. Test the application and document that testing.
4. Explain the approach taken to develop the application and the major decisions made.
5. Identify relevant fundamental constructs in a submitted program.
6. Communicate efficiently, effectively, and in an appropriate manner for an IT professional.
Overview 2.docx
Top of Form
Bottom of Form
Required Resources
The following resources are required to complete the assessment.
· Add and Multiply Three Integers Instructions [PDF].
· Week X Solution Submission Template [DOCX].
Software
For this course, follow the instructions provided through the links below to download and install software or register for an account, as required.
Open-Source Software
· Oracle. (n.d.). Java SE development kit (Version 16 or later) [Computer software]. https://www.oracle.com/java/technologies/javase-jdk16-downloads.html
. Download the current version of the Oracle JDK. Install the program.
· Apache Software Foundation. (n.d.). NetBeans (Version 12.4) [Computer software]. https://netbeans.apache.org/download/nb124/nb124.html
. Download the installer for NetBeans 12.4 for your operating system. Run the installer.
If you encounter any difficulties in the download and installation process, post a detailed question in the Ask Your Faculty Discussion in the menu dropdown when you click the image of your faculty.
Suggested Resources
The resources provided here are optional. You may use other resources of your choice to prepare for this assessment however, you will need to ensure that they are appropriate, credible, and valid. The Supplemental Resources and Research Resources, both linked from the left navigation menu in your courseroom, provide additional resources to help support you.
Capella Resources
· Opening an Existing Project in NetBeans [PDF].
Suggested Skillsoft Resource
· Campbell, J. (2015). Java SE 8 fundamentals: Working with data types [Video]. Skillsoft Ireland.
VitalSource Resources
· Liang, Y. D. (2020). Introduction to Java programming and data structures (12th ed.). Pearson. Available in the courseroom via the VitalSource Bookshelf link.
. Chapter 2, "Elementary Programming," pages 34–70.
cf_week_x_submission_template.docx
IT-FP2249 Assignment Submission Template
Unit 1, Part 1 Assignment Instructions
Name: Date: Course: IT-FP2249 Unit:
1 |
When you submit your assignment, attach the complete, zipped NetBeans project (not just the .java file) to your submission and attach a completed copy of this submission template as a second attachment. (Please do not embed the zip file in this document.) For u03a1, u06a1, u08a1, and u10a1: Be sure to turn in the zip file with code that you have completed—not the original zip file downloaded from Resources. |
Insert here a copy of your *.java source code text that you used here (copy and paste source code here, do not simply insert *.java files): |
|
2 |
Insert screenshot(s) here showing the result of testing your application as directed by the assignment instructions. (Programs with more than one possible outcome require screen shots to show that the different possible outcomes work as required.) |
3 |
Describe your approach to complete the coding for this assignment and explain the major decisions you made in designing a program that meets the specified requirements. As part of your explanation, be sure to identify the Java constructs you used that are specific and relevant to your program. Depending on the program, these may include the mechanisms for output, input, selection statements, loops, methods, and so forth. In Units 9 and 10, be sure to discuss the classes used in the application. (Please do not just list Java keywords or snippets of code without indicating why they are important.) |
Capella University Proprietary and Confidential 1
Capella Proprietary and Confidential
ShortDoc_Internal.doc
Last updated: 1/24/2022 2:36 PM 2
Add and Multiply Three Integers.pdf
1
Add and Multiply Three Integers In this assessment, you will design and code a simple Java application that reads in three integer values and prints out both the sum and the product of these three values. You can use either the Toolwire environment or your local Java development environment to complete this assignment.
The requirements of this application are as follows: The application is to read three integer numbers entered by the user from the keyboard. It assigns these three values to three int variables respectively. The application then prints out the sum and the product of these three integer variables.
Assume that the user always entered correct information so there is no need to validate user input in your application.
Use these three input values to test your application: 10, 20, and 30.
Successful completion of this assignment will show the correct sum and product of the three test values printed out when the application is run. Your program output should look like this sample output:
Follow these steps to complete this assignment:
2
1. Create a NetBeans Java console application project called U2A1_AddMultiplyThreeInts.
2. Develop the application to meet the stated requirements.
3. Compile and test your application using the provided input data.
4. Make sure to document the result of your testing by taking screenshots of the result of running your application similar to the provided sample output. One screenshot is required for this assignment. NOTE: your screenshot should be included in ONE document with your other deliverables.
5. Explain the approach you took to complete this assignment and the major decisions you made. As part of your explanation, be sure to identify the fundamental Java constructs you used that were specific and relevant to your submitted program.
Deliverables Use the submission template provided in the resources section (WeekXSolutionSubmissionTemplate.docx) to complete and submit your deliverables. Your deliverables in the attached submission template should include:
1. Your work (Netbeans project zip file + copy of *.java source code).
2. A screenshot of the result of testing your application. See the examples provided above.
3. Explain the approach you took to complete this assignment and the major decisions you made. As part of your explanation, be sure to identify the fundamental Java constructs you used that were specific and relevant to your submitted program.
,
Assessment 5.docx
Assessment 5
Find Highest and Lowest of Five Integers Using Java Loops
In this assessment, you will design and code a Java console application that takes as input five integer values and produces as output the lowest and highest values of these five integer values. The application uses Java looping constructs to implement its functionality.
To start the project in NetBeans, go to the File menu in NetBeans and select New Project. When the New Project dialog box opens, under Categories select Java with Ant, and under Projects select Java Application. Click the Next button, and on the next panel name the project. Click the Finish button, and the Java source code will open in the editing window.
Your program output should look like the sample output provided in the Find Highest & Lowest of Five Integers Using Java Loops Instructions course file resource. Full instructions for successfully completing this assessment are included in this resource. Use the Week X Solution Submission Template .
Your assessment will be scored according to the following criteria:
1. Design a program that meets Java looping statements requirements.
2. Code an application that exercises looping constructs.
3. Test the application and document that testing.
4. Explain the approach taken to develop the application and the major decisions made.
5. Identify relevant fundamental constructs in a submitted program.
6. Communicate efficiently, effectively, and in an appropriate manner for an IT professional.
Overview 5.docx
OverView 5
Find Highest and Lowest of Five Integers Using Java Loops
Top of Form
Bottom of Form
This assessment examines the different Java statement for looping or iterating over statements. Looping statements include the for, while, and do while statements. You will learn how to program these looping statements and when to use each.
You will develop a Java console application that finds the highest and lowest integers among five given integers.
Required Resources
The following resources are required to complete the assessment.
Capella Resources
· Find Highest and Lowest of Five Integers Using Java Loops Instructions [PDF].
· Week X Solution Submission Template [DOCX].
Software
For this course, follow the instructions provided through the links below to download and install software or register for an account, as required.
Open-Source Software
· Oracle. (n.d.). Java SE development kit (Version 16 or later) [Computer software]. https://www.oracle.com/java/technologies/javase-jdk16-downloads.html
. Download the current version of the Oracle JDK.
· Apache Software Foundation. (n.d.). NetBeans (Version 12.4) [Computer software]. https://netbeans.apache.org/download/nb124/nb124.html
. Download the installer for NetBeans 12.4 for your operating system.
If you encounter any difficulties in the download and installation process, post a detailed question in the Ask Your Faculty Discussion in the menu dropdown when you click the image of your faculty.
Suggested Resources
The resources provided here are optional. You may use other resources of your choice to prepare for this assessment however, you will need to ensure that they are appropriate, credible, and valid. The Supplemental Resources and Research Resources, both linked from the left navigation menu in your courseroom, provide additional resources to help support you.
VitalSource Resources
· Liang, Y. D. (2020). Introduction to Java programming and data structures (12th ed.). Pearson. Available in the courseroom via the VitalSource Bookshelf link.
. Chapter 5, "Loops," pages 160–194.
cf_week_x_submission_template.docx
IT-FP2249 Assignment Submission Template
Unit 1, Part 1 Assignment Instructions
Name: Date: Course: IT-FP2249 Unit:
1 |
When you submit your assignment, attach the complete, zipped NetBeans project (not just the .java file) to your submission and attach a completed copy of this submission template as a second attachment. (Please do not embed the zip file in this document.) For u03a1, u06a1, u08a1, and u10a1: Be sure to turn in the zip file with code that you have completed—not the original zip file downloaded from Resources. |
Insert here a copy of your *.java source code text that you used here (copy and paste source code here, do not simply insert *.java files): |
|
2 |
Insert screenshot(s) here showing the result of testing your application as directed by the assignment instructions. (Programs with more than one possible outcome require screen shots to show that the different possible outcomes work as required.) |
3 |
Describe your approach to complete the coding for this assignment and explain the major decisions you made in designing a program that meets the specified requirements. As part of your explanation, be sure to identify the Java constructs you used that are specific and relevant to your program. Depending on the program, these may include the mechanisms for output, input, selection statements, loops, methods, and so forth. In Units 9 and 10, be sure to discuss the classes used in the application. (Please do not just list Java keywords or snippets of code without indicating why they are important.) |
Capella University Proprietary and Confidential 1
Capella Proprietary and Confidential
ShortDoc_Internal.doc
Last updated: 1/24/2022 2:36 PM 2
Find Highest and Lowest of Five Integers Using Java Loops.pdf
1
Find Highest and Lowest of Five Integers Using Java Loops In this assessment, you will design and code a Java console application that takes as input five integer values and produces as output the lowest and highest values of these five integer values. The application uses Java looping constructs to implement its functionality. You can use either the Toolwire environment or your local Java development environment to complete this assignment.
The requirements of this application are as follows: The application is to read five integer numbers entered by the user from the keyboard using a Java looping construct. The application then prints out the highest integer and the lowest integer numbers that were entered.
Use these five input values to test your application: 3 56 89 602 1
Successful completion of this assignment will show the correct highest and lowest integer values that were entered printed out when the application is run. Your program output should look like this sample output:
2
Follow these steps to complete this assignment:
1. Create a NetBeans Java console application project called “U5A1_ FindHighLowOfFiveInts”.
2. Develop the application to meet the stated requirements.
3. Compile and test your application using the provided input data.
4. Make sure to document the result of your testing by taking screenshots of the result of running your application similar to the provided sample output. One screenshot is required for this assignment.
5. Explain the approach you took to complete this assignment and the major decisions you made. As part of your explanation, be sure to identify the fundamental Java constructs you used that were specific and relevant to your submitted program.
Deliverables Use the provided submission template (WeekXSolutionSubmissionTemplate.docx)from the resources to complete and submit your deliverables. Your deliverables in the attached submission template should include:
1. Your work (Netbeans project zip file + copy of *.java source code)
2. A screenshot of the result of testing your application. See the examples above.
3. Explain the approach you took to complete this assignment and the major decisions you made. As part of your explanation, be sure to id
Collepals.com Plagiarism Free Papers
Are you looking for custom essay writing service or even dissertation writing services? Just request for our write my paper service, and we'll match you with the best essay writer in your subject! With an exceptional team of professional academic experts in a wide range of subjects, we can guarantee you an unrivaled quality of custom-written papers.
Get ZERO PLAGIARISM, HUMAN WRITTEN ESSAYS
Why Hire Collepals.com writers to do your paper?
Quality- We are experienced and have access to ample research materials.
We write plagiarism Free Content
Confidential- We never share or sell your personal information to third parties.
Support-Chat with us today! We are always waiting to answer all your questions.
All Rights Reserved Terms and Conditions
College pals.com Privacy Policy 2010-2018