SlideShare a Scribd company logo
1 of 16
STRAYER CIS 406 Week 6 Assignment 1
Financial Portfolio NEW
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-406-
strayer/cis-406-week-6-assignment-1-
financial-portfolio-new
For more classes visit
http://www.uopassignments.com
Assignment 1: Financial Portfolio
Due Week 6 and worth 200 points
This assignment consists of two (2) sections:
A java program file
A screen shot of the output and a description
of your Java program
Label each file name according to the section
of the assignment for which it is written. Put
both sections together in a single zip file and
submit the zip file.
Suppose you are a Java programmer for an
investment company. Your Chief Technology
Officer (CTO) has asked you to development an
interactive Java application that will be used
by investment advisors to analyze clients’
bank portfolios. The application must show
the investment advisor the total value of the
assets, and the value of the individual assets
(savings account, stocks investments, and
bonds investments).
Section 1: Java Program File
Create a Java program according to the
specifications stated below:
Include a composition class called
“FinancialPortofolio”
Public attributes for the composition class
must include the client’s first name (string
data type), last name (string data type),
portfolio number (integer data type), and total
value of the portfolio (double data type)
The composition class must include a savings
account class called “SavingsAccount” with the
following public attributes: an account number
(string), and an account balance (double)
The composition class must include a bonds
class called “Bonds” with the following public
attributes: bond name (string), face value
(double), and number of bonds (integer)
The composition class must include a stocks
class called “Stocks” with the following public
attributes: stock name (string), stock value
(float), and number of shares (integer)
Create setters and getters methods for all the
public attributes in each of the classes
Create objects that prompt the user
(investment advisor) to enter all of the values
for each of the classes
The savings account object must add the
balance to the portfolio total value
The bonds object must add the total bonds
value (bond value multiplied by the number of
bonds) to the portfolio total value
The stocks object must add the total stocks
value (stock value multiplied by the number of
shares) to the total portfolio value
When a user (investment advisor) runs the
Java program, it must prompt the advisor to
enter the financial portfolio data, savings
account data, stocks data, and bonds data. The
program must compute the total value of the
portfolio for each asset (savings account,
stocks, and bonds).
When all of the data has been entered and the
total value of the portfolio has been calculated,
the program must display the results using the
following format as an example:
Portfolio Name: Jane’s Portfolio
Savings account: Blue Bank ($2000.00)
Bonds: Derby ($3000.00)
Stocks: IBM ($10000.00)
Portfolio value: $15000.00
Section 2: Screen Shot of the Output and
Description of Your Java Program
Create a screen shot of the interactive session
output, and include a description of your Java
program.
Submit a screen shot which shows the output
of your Java Program. Note: Go to
http://www.take-a-screenshot.org/ if you
need a tutorial on taking a screen shot.
Include a one (1) page description about your
program. Note: Use MS Word for your program
description, and place the screen shot of the
output from your Java program into the Word
file as an attached image.
Section 1 and Section 2 will be graded based
on the following:
The program must compile, execute, produce
correct results, and meet all of the
specifications stated in Section 1.
Additionally you must:
Organize the code for user readability.
Organize the code for reusability.
Organize the code for efficiency.
Provide documentation with embedded
comments for reader understanding.
Include a one (1) page description about your
program.
The specific course learning outcomes
associated with this assignment are:
Demonstrate the proper use and application of
syntax in the Java programming language.
Demonstrate the ability to design, compile,
implement, test, and debug simple programs
in Java.
Demonstrate the ability to manipulate
numbers and character strings in Java.
Compare and contrast classes and objects in
Java.
Construct classes through systematic
procedures.
Differentiate between static and non-static
methods and variables.
Demonstrate the ability to program simple and
complex decisions in Java.
Write clearly and concisely about Java
programming using proper writing mechanics
and technical style conventions.
STRAYER CIS 406 Week 8 Case Study Business
Applications of Java NEW
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-406-
strayer/cis-406-week-8-case-study-
business-applications-of-java-new
For more classes visit
http://www.uopassignments.com
Case Study: Business Applications of Java
Due Week 8 and worth 100 points
Read the article titled, “Business Applications
of Java” dated 2014, located in the online
course shell.
Write a two to four (2-4) page paper in which
you:
Summarize the main points of the article.
Select two (2) features (e.g., class, object, etc.)
of the Java programming language that make it
well suited for business applications. Provide
one (1) example of a scenario in which each
feature is used in business to support your
response.
Provide one (1) example of a scenario which
illustrates that Java programs that make
simple and complex decisions are useful in
business. Justify your response.
Speculate on the overall trend of the
application of Java within the business world
over the next five (5) years. Justify your
response.
Your assignment must follow these formatting
requirements:
Be typed, double spaced, using Times New
Roman font (size 12), with one-inch margins
on all sides; citations and references must
follow APA or school-specific format. Check
with your professor for any additional
instructions.
Include a cover page containing the title of the
assignment, the student’s name, the
professor’s name, the course title, and the
date. The cover page and the reference page
are not included in the required assignment
page length.
The specific course learning outcomes
associated with this assignment are:
Compare and contrast classes and objects in
Java.
Demonstrate the ability to program simple and
complex decisions in Java.
Use technology and information resources to
research issues in Java programming.
Write clearly and concisely about Java
programming using proper writing mechanics
and technical style conventions.
STRAYER CIS 406 Week 10 Assignment 2
uGrade NEW
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-406-
strayer/cis-406-week-10-assignment-2-
ugrade-new
For more classes visit
http://www.uopassignments.com
Assignment 2: uGrade
Due Week 10 and worth 200 points
This assignment consists of two (2) sections:
A Java program file
A screen shot of the output and a description
of your Java program
Label each file name according to the section
of the assignment for which it is written. Put
both sections together in a single zip file and
submit the zip file.
Imagine that you work as a Java programmer
for a software company. Your company is
developing a new interactive learning
management tool called uGrade. You have the
task of creating the functionality that will
allow the user to manually enter names and
grades. The program will store this
information in parallel arrays. Next, it will
prompt the user to sort the date by name or by
grade and display the sorted data accordingly
in an organized table.
Section 1: Java Program File
Create a Java program in which you include:
a class called “roster” attributes, which must
be last names and numerical grades, and must
also be parallel arrays an indefinite loop,
which allows the user to manually enter five
(5) names and grades and stores them in the
array. Note: The loop must end either when
the user specifies that they are done or when a
maximum of five (5) values have been stored
in the arrays, i.e., five (5) names and a
corresponding grade for each name
an indefinite loop, which prompts the user to
select a sorting criterion or to end the
program, and must also use bubble sort. Note:
The user may either selectname or grade as
the sorting criteria. The program must use
bubble sort to sort that data according to the
specific criteria and then use another loop to
display the data. This process must continue
until the user ends the program.
Section 2: Screen Shot of the Output and
Description of Your Java Program
Create a screen shot of the output and include
a description about your Java program.
Submit a screen shot which shows the output
of your Java Program. Note: Go to
http://www.take-a-screenshot.org/ if you
need a tutorial on taking a screen shot.
Include a one (1) page description about your
program. Note: Use MS Word for your program
description, and place the screen shot of the
output from your Java program into the Word
file as an attached image.
The output should look like this if the user
chose to sort by name:
Name Numerical Grade
Bailey 97
David 88
Ericson 79
Frank 99
Manning 91
The output should look like this if the user
chose to sort by grade:
Name Numerical Grade
Frank 99
Bailey 97
Manning 91
David 88
Ericson 79
Note: The name and grade pairs must stay
together.
Section 1 and Section 2 will be graded based
on the following:
The program must compile, execute, produce
correct results, and meet all of the
specifications stated in Section 1.
Additionally you must:
Organize the code for user readability.
Organize the code for reusability.
Organize the code for efficiency.
Provide documentation with embedded
comments for reader understanding.
Include a one (1) page description about your
program.
The specific course learning outcomes
associated with this assignment are:
Demonstrate the proper use and application of
syntax in the Java programming language.
Demonstrate the ability to design, compile,
implement, test, and debug simple programs
in Java.
Demonstrate the ability to manipulate
numbers and character strings in Java.
Compare and contrast classes and objects in
Java.
Construct classes through systematic
procedures.
Discuss object-oriented design principles.
Compare and contrast abstract and concrete
data types.
Demonstrate the ability to implement generic
classes and methods.
Declare and use interface types.
Implement loops for repetitive tasks.
Compare and contrast definite loops and
indefinite loops.
Write clearly and concisely about Java
programming using proper writing mechanics
and technical style conventions.
Demonstrate the ability to program simple and
complex decisions in Java.
Compare and contrast arrays and array lists in
Java.

More Related Content

What's hot

Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newuopassignment
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newshyaminfo16
 
PRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comPRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comagathachristie127
 
PRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comPRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comvenkat60044
 
2) java development
2) java development2) java development
2) java developmenttechbed
 
02장 Introduction to Java Applications
02장 Introduction to Java Applications02장 Introduction to Java Applications
02장 Introduction to Java Applications유석 남
 
Project 4 1/tutorialoutlet
Project 4 1/tutorialoutletProject 4 1/tutorialoutlet
Project 4 1/tutorialoutletMessanz
 

What's hot (11)

Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Prg421 prg 421
Prg421 prg 421Prg421 prg 421
Prg421 prg 421
 
PRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.comPRG 420 NERD Become Exceptional--prg420nerd.com
PRG 420 NERD Become Exceptional--prg420nerd.com
 
PRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.comPRG 420 NERD Education Counseling--prg420nerd.com
PRG 420 NERD Education Counseling--prg420nerd.com
 
2) java development
2) java development2) java development
2) java development
 
Resume
ResumeResume
Resume
 
02장 Introduction to Java Applications
02장 Introduction to Java Applications02장 Introduction to Java Applications
02장 Introduction to Java Applications
 
Unit i
Unit iUnit i
Unit i
 
OOP Programs
OOP ProgramsOOP Programs
OOP Programs
 
Project 4 1/tutorialoutlet
Project 4 1/tutorialoutletProject 4 1/tutorialoutlet
Project 4 1/tutorialoutlet
 

Similar to CIS 406 Entire Course NEW

Cis 406 Technology levels--snaptutorial.com
Cis 406 Technology levels--snaptutorial.comCis 406 Technology levels--snaptutorial.com
Cis 406 Technology levels--snaptutorial.comsholingarjosh58
 
Cis 406 Success Begins / snaptutorial.com
Cis 406 Success Begins / snaptutorial.comCis 406 Success Begins / snaptutorial.com
Cis 406 Success Begins / snaptutorial.comRobinson071
 
CIS 406 Imagine Your Future/newtonhelp.com   
CIS 406 Imagine Your Future/newtonhelp.com   CIS 406 Imagine Your Future/newtonhelp.com   
CIS 406 Imagine Your Future/newtonhelp.com   bellflower47
 
CIS 406 Focus Dreams/newtonhelp.com
CIS 406 Focus Dreams/newtonhelp.comCIS 406 Focus Dreams/newtonhelp.com
CIS 406 Focus Dreams/newtonhelp.combellflower87
 
Strayer cis 406 week 6 assignment 1 financial portfolio new
Strayer cis 406 week 6 assignment 1 financial portfolio newStrayer cis 406 week 6 assignment 1 financial portfolio new
Strayer cis 406 week 6 assignment 1 financial portfolio newlroselyn
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newlroselyn
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newcharlesangles123
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newchanduruc123
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newshyaminfo40
 
PRG 421 version 10 Entire Course
PRG 421 version 10 Entire CoursePRG 421 version 10 Entire Course
PRG 421 version 10 Entire Coursenonstop1
 
PRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comPRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comwilliamwordsworth25
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire coursePRG421
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire courseACC421
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comkopiko76
 
PRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comPRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comkopiko112
 
Project Overview Project Requirements Our PROG 24178 p.pdf
Project Overview   Project Requirements     Our PROG 24178 p.pdfProject Overview   Project Requirements     Our PROG 24178 p.pdf
Project Overview Project Requirements Our PROG 24178 p.pdfaddtechglobalmarketi
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comULLPTT
 
PRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comPRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comMcdonaldRyan108
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire CourseDR Dean Jame
 

Similar to CIS 406 Entire Course NEW (20)

Cis 406 Technology levels--snaptutorial.com
Cis 406 Technology levels--snaptutorial.comCis 406 Technology levels--snaptutorial.com
Cis 406 Technology levels--snaptutorial.com
 
Cis 406 Success Begins / snaptutorial.com
Cis 406 Success Begins / snaptutorial.comCis 406 Success Begins / snaptutorial.com
Cis 406 Success Begins / snaptutorial.com
 
CIS 406 Imagine Your Future/newtonhelp.com   
CIS 406 Imagine Your Future/newtonhelp.com   CIS 406 Imagine Your Future/newtonhelp.com   
CIS 406 Imagine Your Future/newtonhelp.com   
 
CIS 406 Focus Dreams/newtonhelp.com
CIS 406 Focus Dreams/newtonhelp.comCIS 406 Focus Dreams/newtonhelp.com
CIS 406 Focus Dreams/newtonhelp.com
 
Strayer cis 406 week 6 assignment 1 financial portfolio new
Strayer cis 406 week 6 assignment 1 financial portfolio newStrayer cis 406 week 6 assignment 1 financial portfolio new
Strayer cis 406 week 6 assignment 1 financial portfolio new
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Strayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade newStrayer cis 406 week 10 assignment 2 u grade new
Strayer cis 406 week 10 assignment 2 u grade new
 
Prg421
Prg421Prg421
Prg421
 
PRG 421 version 10 Entire Course
PRG 421 version 10 Entire CoursePRG 421 version 10 Entire Course
PRG 421 version 10 Entire Course
 
PRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.comPRG 420 Education for Service--prg420.com
PRG 420 Education for Service--prg420.com
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire course
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire course
 
PRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.comPRG 420 Education Counseling / prg420.com
PRG 420 Education Counseling / prg420.com
 
PRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.comPRG 420 Inspiring Innovation--prg420.com
PRG 420 Inspiring Innovation--prg420.com
 
Project Overview Project Requirements Our PROG 24178 p.pdf
Project Overview   Project Requirements     Our PROG 24178 p.pdfProject Overview   Project Requirements     Our PROG 24178 p.pdf
Project Overview Project Requirements Our PROG 24178 p.pdf
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
 
PRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comPRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.com
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire Course
 

More from shyamuopfive

COM 105 Entire Course nEW
COM 105 Entire Course nEWCOM 105 Entire Course nEW
COM 105 Entire Course nEWshyamuopfive
 
BSHS 375 Entire Course NEW
BSHS 375 Entire Course NEWBSHS 375 Entire Course NEW
BSHS 375 Entire Course NEWshyamuopfive
 
BSHS 352 Entire Course NEW
BSHS 352 Entire Course NEWBSHS 352 Entire Course NEW
BSHS 352 Entire Course NEWshyamuopfive
 
BSHS 345 Entire Course NEW
BSHS 345 Entire Course NEWBSHS 345 Entire Course NEW
BSHS 345 Entire Course NEWshyamuopfive
 
BSHS 335 Entire Course NEW
BSHS 335 Entire Course NEWBSHS 335 Entire Course NEW
BSHS 335 Entire Course NEWshyamuopfive
 
BUS 630 Entire Course NEW
BUS 630 Entire Course NEWBUS 630 Entire Course NEW
BUS 630 Entire Course NEWshyamuopfive
 
BUS 611 Entire Course NEW
BUS 611 Entire Course NEWBUS 611 Entire Course NEW
BUS 611 Entire Course NEWshyamuopfive
 
BUS 599 Entire Course NEW
BUS 599 Entire Course NEWBUS 599 Entire Course NEW
BUS 599 Entire Course NEWshyamuopfive
 
BUS 510 Entire Course NEW
BUS 510 Entire Course NEWBUS 510 Entire Course NEW
BUS 510 Entire Course NEWshyamuopfive
 
BUS 600 Entire Course NEW
BUS 600 Entire Course NEWBUS 600 Entire Course NEW
BUS 600 Entire Course NEWshyamuopfive
 
CMGT 430 Entire Course NEW
CMGT 430 Entire Course NEWCMGT 430 Entire Course NEW
CMGT 430 Entire Course NEWshyamuopfive
 
CMGT 411 Entire Course NEW
CMGT 411 Entire Course NEWCMGT 411 Entire Course NEW
CMGT 411 Entire Course NEWshyamuopfive
 
CMGT 245 Entire Course NEW
CMGT 245 Entire Course NEWCMGT 245 Entire Course NEW
CMGT 245 Entire Course NEWshyamuopfive
 
CMGT 400 Entire Course NEW
CMGT 400 Entire Course NEWCMGT 400 Entire Course NEW
CMGT 400 Entire Course NEWshyamuopfive
 
CMGT 230 Entire Course NEW
CMGT 230 Entire Course NEWCMGT 230 Entire Course NEW
CMGT 230 Entire Course NEWshyamuopfive
 
CIS 333 Entire Course NEW
CIS 333 Entire Course NEWCIS 333 Entire Course NEW
CIS 333 Entire Course NEWshyamuopfive
 
CIS 273 Entire Course NEW
CIS 273 Entire Course NEWCIS 273 Entire Course NEW
CIS 273 Entire Course NEWshyamuopfive
 
CIS 210 Entire Course NEW
CIS 210 Entire Course NEWCIS 210 Entire Course NEW
CIS 210 Entire Course NEWshyamuopfive
 
CIS 170 Entire Course NEW
CIS 170 Entire Course NEWCIS 170 Entire Course NEW
CIS 170 Entire Course NEWshyamuopfive
 
CIS 409 Entire Course NEW
CIS 409 Entire Course NEWCIS 409 Entire Course NEW
CIS 409 Entire Course NEWshyamuopfive
 

More from shyamuopfive (20)

COM 105 Entire Course nEW
COM 105 Entire Course nEWCOM 105 Entire Course nEW
COM 105 Entire Course nEW
 
BSHS 375 Entire Course NEW
BSHS 375 Entire Course NEWBSHS 375 Entire Course NEW
BSHS 375 Entire Course NEW
 
BSHS 352 Entire Course NEW
BSHS 352 Entire Course NEWBSHS 352 Entire Course NEW
BSHS 352 Entire Course NEW
 
BSHS 345 Entire Course NEW
BSHS 345 Entire Course NEWBSHS 345 Entire Course NEW
BSHS 345 Entire Course NEW
 
BSHS 335 Entire Course NEW
BSHS 335 Entire Course NEWBSHS 335 Entire Course NEW
BSHS 335 Entire Course NEW
 
BUS 630 Entire Course NEW
BUS 630 Entire Course NEWBUS 630 Entire Course NEW
BUS 630 Entire Course NEW
 
BUS 611 Entire Course NEW
BUS 611 Entire Course NEWBUS 611 Entire Course NEW
BUS 611 Entire Course NEW
 
BUS 599 Entire Course NEW
BUS 599 Entire Course NEWBUS 599 Entire Course NEW
BUS 599 Entire Course NEW
 
BUS 510 Entire Course NEW
BUS 510 Entire Course NEWBUS 510 Entire Course NEW
BUS 510 Entire Course NEW
 
BUS 600 Entire Course NEW
BUS 600 Entire Course NEWBUS 600 Entire Course NEW
BUS 600 Entire Course NEW
 
CMGT 430 Entire Course NEW
CMGT 430 Entire Course NEWCMGT 430 Entire Course NEW
CMGT 430 Entire Course NEW
 
CMGT 411 Entire Course NEW
CMGT 411 Entire Course NEWCMGT 411 Entire Course NEW
CMGT 411 Entire Course NEW
 
CMGT 245 Entire Course NEW
CMGT 245 Entire Course NEWCMGT 245 Entire Course NEW
CMGT 245 Entire Course NEW
 
CMGT 400 Entire Course NEW
CMGT 400 Entire Course NEWCMGT 400 Entire Course NEW
CMGT 400 Entire Course NEW
 
CMGT 230 Entire Course NEW
CMGT 230 Entire Course NEWCMGT 230 Entire Course NEW
CMGT 230 Entire Course NEW
 
CIS 333 Entire Course NEW
CIS 333 Entire Course NEWCIS 333 Entire Course NEW
CIS 333 Entire Course NEW
 
CIS 273 Entire Course NEW
CIS 273 Entire Course NEWCIS 273 Entire Course NEW
CIS 273 Entire Course NEW
 
CIS 210 Entire Course NEW
CIS 210 Entire Course NEWCIS 210 Entire Course NEW
CIS 210 Entire Course NEW
 
CIS 170 Entire Course NEW
CIS 170 Entire Course NEWCIS 170 Entire Course NEW
CIS 170 Entire Course NEW
 
CIS 409 Entire Course NEW
CIS 409 Entire Course NEWCIS 409 Entire Course NEW
CIS 409 Entire Course NEW
 

Recently uploaded

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 

Recently uploaded (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 

CIS 406 Entire Course NEW

  • 1. STRAYER CIS 406 Week 6 Assignment 1 Financial Portfolio NEW Check this A+ tutorial guideline at http://www.uopassignments.com/cis-406- strayer/cis-406-week-6-assignment-1- financial-portfolio-new For more classes visit http://www.uopassignments.com Assignment 1: Financial Portfolio Due Week 6 and worth 200 points This assignment consists of two (2) sections: A java program file A screen shot of the output and a description
  • 2. of your Java program Label each file name according to the section of the assignment for which it is written. Put both sections together in a single zip file and submit the zip file. Suppose you are a Java programmer for an investment company. Your Chief Technology Officer (CTO) has asked you to development an interactive Java application that will be used by investment advisors to analyze clients’ bank portfolios. The application must show the investment advisor the total value of the assets, and the value of the individual assets (savings account, stocks investments, and bonds investments). Section 1: Java Program File Create a Java program according to the specifications stated below: Include a composition class called “FinancialPortofolio”
  • 3. Public attributes for the composition class must include the client’s first name (string data type), last name (string data type), portfolio number (integer data type), and total value of the portfolio (double data type) The composition class must include a savings account class called “SavingsAccount” with the following public attributes: an account number (string), and an account balance (double) The composition class must include a bonds class called “Bonds” with the following public attributes: bond name (string), face value (double), and number of bonds (integer) The composition class must include a stocks class called “Stocks” with the following public attributes: stock name (string), stock value (float), and number of shares (integer) Create setters and getters methods for all the public attributes in each of the classes Create objects that prompt the user (investment advisor) to enter all of the values for each of the classes The savings account object must add the balance to the portfolio total value The bonds object must add the total bonds
  • 4. value (bond value multiplied by the number of bonds) to the portfolio total value The stocks object must add the total stocks value (stock value multiplied by the number of shares) to the total portfolio value When a user (investment advisor) runs the Java program, it must prompt the advisor to enter the financial portfolio data, savings account data, stocks data, and bonds data. The program must compute the total value of the portfolio for each asset (savings account, stocks, and bonds). When all of the data has been entered and the total value of the portfolio has been calculated, the program must display the results using the following format as an example: Portfolio Name: Jane’s Portfolio Savings account: Blue Bank ($2000.00) Bonds: Derby ($3000.00) Stocks: IBM ($10000.00) Portfolio value: $15000.00
  • 5. Section 2: Screen Shot of the Output and Description of Your Java Program Create a screen shot of the interactive session output, and include a description of your Java program. Submit a screen shot which shows the output of your Java Program. Note: Go to http://www.take-a-screenshot.org/ if you need a tutorial on taking a screen shot. Include a one (1) page description about your program. Note: Use MS Word for your program description, and place the screen shot of the output from your Java program into the Word file as an attached image. Section 1 and Section 2 will be graded based on the following: The program must compile, execute, produce correct results, and meet all of the specifications stated in Section 1. Additionally you must: Organize the code for user readability. Organize the code for reusability.
  • 6. Organize the code for efficiency. Provide documentation with embedded comments for reader understanding. Include a one (1) page description about your program. The specific course learning outcomes associated with this assignment are: Demonstrate the proper use and application of syntax in the Java programming language. Demonstrate the ability to design, compile, implement, test, and debug simple programs in Java. Demonstrate the ability to manipulate numbers and character strings in Java. Compare and contrast classes and objects in Java. Construct classes through systematic procedures. Differentiate between static and non-static methods and variables. Demonstrate the ability to program simple and complex decisions in Java. Write clearly and concisely about Java programming using proper writing mechanics and technical style conventions.
  • 7. STRAYER CIS 406 Week 8 Case Study Business Applications of Java NEW Check this A+ tutorial guideline at http://www.uopassignments.com/cis-406- strayer/cis-406-week-8-case-study- business-applications-of-java-new For more classes visit http://www.uopassignments.com Case Study: Business Applications of Java Due Week 8 and worth 100 points
  • 8. Read the article titled, “Business Applications of Java” dated 2014, located in the online course shell. Write a two to four (2-4) page paper in which you: Summarize the main points of the article. Select two (2) features (e.g., class, object, etc.) of the Java programming language that make it well suited for business applications. Provide one (1) example of a scenario in which each feature is used in business to support your response. Provide one (1) example of a scenario which illustrates that Java programs that make simple and complex decisions are useful in business. Justify your response. Speculate on the overall trend of the application of Java within the business world over the next five (5) years. Justify your response. Your assignment must follow these formatting requirements:
  • 9. Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions. Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length. The specific course learning outcomes associated with this assignment are: Compare and contrast classes and objects in Java. Demonstrate the ability to program simple and complex decisions in Java. Use technology and information resources to research issues in Java programming. Write clearly and concisely about Java programming using proper writing mechanics and technical style conventions.
  • 10. STRAYER CIS 406 Week 10 Assignment 2 uGrade NEW Check this A+ tutorial guideline at http://www.uopassignments.com/cis-406- strayer/cis-406-week-10-assignment-2- ugrade-new For more classes visit http://www.uopassignments.com Assignment 2: uGrade Due Week 10 and worth 200 points This assignment consists of two (2) sections: A Java program file A screen shot of the output and a description
  • 11. of your Java program Label each file name according to the section of the assignment for which it is written. Put both sections together in a single zip file and submit the zip file. Imagine that you work as a Java programmer for a software company. Your company is developing a new interactive learning management tool called uGrade. You have the task of creating the functionality that will allow the user to manually enter names and grades. The program will store this information in parallel arrays. Next, it will prompt the user to sort the date by name or by grade and display the sorted data accordingly in an organized table. Section 1: Java Program File Create a Java program in which you include: a class called “roster” attributes, which must be last names and numerical grades, and must
  • 12. also be parallel arrays an indefinite loop, which allows the user to manually enter five (5) names and grades and stores them in the array. Note: The loop must end either when the user specifies that they are done or when a maximum of five (5) values have been stored in the arrays, i.e., five (5) names and a corresponding grade for each name an indefinite loop, which prompts the user to select a sorting criterion or to end the program, and must also use bubble sort. Note: The user may either selectname or grade as the sorting criteria. The program must use bubble sort to sort that data according to the specific criteria and then use another loop to display the data. This process must continue until the user ends the program. Section 2: Screen Shot of the Output and Description of Your Java Program Create a screen shot of the output and include a description about your Java program. Submit a screen shot which shows the output of your Java Program. Note: Go to http://www.take-a-screenshot.org/ if you
  • 13. need a tutorial on taking a screen shot. Include a one (1) page description about your program. Note: Use MS Word for your program description, and place the screen shot of the output from your Java program into the Word file as an attached image. The output should look like this if the user chose to sort by name: Name Numerical Grade Bailey 97 David 88 Ericson 79 Frank 99 Manning 91 The output should look like this if the user chose to sort by grade: Name Numerical Grade
  • 14. Frank 99 Bailey 97 Manning 91 David 88 Ericson 79 Note: The name and grade pairs must stay together. Section 1 and Section 2 will be graded based on the following: The program must compile, execute, produce correct results, and meet all of the specifications stated in Section 1. Additionally you must: Organize the code for user readability. Organize the code for reusability. Organize the code for efficiency. Provide documentation with embedded comments for reader understanding. Include a one (1) page description about your
  • 15. program. The specific course learning outcomes associated with this assignment are: Demonstrate the proper use and application of syntax in the Java programming language. Demonstrate the ability to design, compile, implement, test, and debug simple programs in Java. Demonstrate the ability to manipulate numbers and character strings in Java. Compare and contrast classes and objects in Java. Construct classes through systematic procedures. Discuss object-oriented design principles. Compare and contrast abstract and concrete data types. Demonstrate the ability to implement generic classes and methods. Declare and use interface types. Implement loops for repetitive tasks. Compare and contrast definite loops and indefinite loops. Write clearly and concisely about Java programming using proper writing mechanics
  • 16. and technical style conventions. Demonstrate the ability to program simple and complex decisions in Java. Compare and contrast arrays and array lists in Java.