SlideShare a Scribd company logo
1 of 8
POS/409
.NET II
The Latest Version A+ Study Guide
**********************************************
POS 409 Entire Course Link
http://www.uopstudy.com/pos-409
**********************************************
POS 409 Week 1 Individual - Record Objects
Below is the original assignment:
Your software development company wants to continue developing and enhance
a software for internal use. The Software Development Company is now
requesting that you add GUI/Windows form elements to the C# application.
For this week's assignment, the application is required to read from a file (data.txt)
containing data about the employees. Your tasks include:
 Create a C# data structure based on the software developer data that will
be read from file (data.txt).
 The C# data structure class/methods must demonstrate the use of
inheritance.
 Implement an array of employee record objects containing the data pulled
from the file.
 Meet specifications by displaying a welcome message along with the
following information on three employees on a Windows Form Application:
 Employee Record(super class):
 name
 address
 age
 gross monthly pay
 department id
 Developer Type (sub class):
 Scripts (i.e., Python, Perl, PowerShell)
 Object-Oriented (i.e., C#, C++, Java)
 Employee Tax Type (sub class):
 W2 (Fed, FICA, Medicare)
 1099 (no taxes)
 Annual taxes determined by employee tax type
 Annual net pay determined by salary and tax type
Note: Developers' type records can only be of one type. Employees' tax records
structure should be W-2 (taxes deducted from gross salary) or 1099 )no taxes
deducted from gross salary).
For More Classes Please Visit
http://www.uopstudy.com/
Program Input File:
Create a Comma Separated Values (CSV) text file and named "data.txt." The
data.txt file shall include information on at least five developers put into rows,
including software developer name, addresses, age, gross monthly pay,
department ID, developer type, and employee type, all separated by commas
(CSV).
Using Visual Studio® and C# programming concepts, write a program to meet the
specifications of the company's request. The program should have the following
characteristics:
 Compile and execute without errors
 Meet specifications by demonstrating file handling, array data structure
manipulation, and console output mastery by accomplishing the following:
 Read employees' data from a file
 Input the data into an array data structure
 Display the employees' data on a Windows Form
 Logic flow is clear, concise, and effective
 User inputs and outputs should be clear on screen
 Validation for input types and data format
 Appropriate indentation to logically illustrate program structure
 Identifiers logically describe use
 Naming conventions are consistent
 Comments and headers to explain processing that is not obvious
Zip your Visual Studio solution project folder so it can be submitted for grading. In
Visual Studio®, you can locate the folder with your solution by left clicking on the
solution node in the Solution Explorer. Look at the Properties window to find the
folder name in the Path property. Locate this folder in File Explorer and zip the
folder.
Submit your ZIP file.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 2 Team -Designingand Planning the Learning
Team Project
Software developers are often hired as contractors to work in teams to accomplish
software development tasks. Over the coming weeks, you will build a Universal Windows
Platform (UWP) application as a team of contractors. Each week your team will build a
portion of the program.
As a team, examine the following programs and the linked sources data, and select one
to complete by the end of the course:
 Create a program that will allow the user to enter a zip code and show the weather
for the zip code entered. (Possible source of
data: https://www.wunderground.com/weather/api/d/docs)
 Create a program to search the World Wide Web. Keep track of the last 10
searches the user entered. (Possible source of
data: https://developers.google.com/custom-search/json-api/v1/using_rest)
 Create a program to take in two locations and show the driving directions between
those two points. (Possible source of
data: https://developers.google.com/maps/documentation/directions/start)
Note: Each of the programs can be accomplished by creating a UWP application calling
an Application Programming Interface (API) using a Representational State Transfer
(REST) web service.
For your team assignment this week, create a 1- to 2-page document using Microsoft®
Word including each of the following:
 Identify and investigate the service you will use and the data the service will
return.
 Investigate whatever setup you need to do in order to use the selected API,
including registering for a developer key.
 Use a tool like Postman to test the API and make sure it will work for you (use the
link to download Postman).
 Complete the initial class design for your selected program including properties
and collections.
 Complete the initial user interface design for your program.
 Create a project plan for the work you will do with clear expectations for each team
member.
Note: The Learning Team Assignment Tips document will help you as you work through
all the steps to build your Universal Windows Platform application.
Submit your assignment.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 3 Team -Class Design,Construction,and
Testing
You and your team of software development contractors are moving forward with the
steps to build your Universal Windows Platform (UWP) application.
Using the document you created for last week's Learning Team assignment, read the
information on the attached "Basic Queries (LINQ to XML) (C#)" tutorial,
and research where you will get the data for your program design. Use this
information to build the classes you will use for your selected team program.
Remember, the query class represents the base class for executing search queries.
Create a simple application that demonstrates and uses the classes. You could
mock-up the data that the service API will provide by using LINQ. Each team
member should be contributing to the construction of the code and reviewing the code
and design. Each team member needs to know how to build, debug, and run the
program.
Note: Each week's Learning Team assignment will help you complete your Week
Five Individual Assignment.
Zip your Visual Studio®
solution project folder so it can be submitted for grading. In
Visual Studio®
, you can locate the folder with your solution by left clicking on the
solution node in the Solution Explorer. Look at the Properties window to find the
folder name in the Path property. Locate this folder in File Explorer and zip the
folder.
Submit your ZIP file.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 3 Individual - LINQ
Below is the original assignment:
Your software development company wants to continue developing and
enhancing a software for internal use.
For this week's assignment, the application is required to read from a file (data.txt)
containing employee data. Your tasks include:
 Use the data file from Week One (data.txt)
 Implement LINQ functionalities to search, display, and modify employees'
records
 Meet specifications by displaying on a Windows Form Application
Program Input File:
Using Visual Studio and C# programming concepts and using your Week one
data.txt file as your source file, write a program to meet the specifications of the
company's request. The program should have the following characteristics:
 Compile and execute without errors
 Meet specifications by demonstrating LINQ queries, data structure
manipulation, and Windows Form output mastery by accomplishing the following:
 Query employees' data
 Input the data into a data structure
 Display the employees' data on the console
 Logic flow is clear, concise, and effective
 User inputs and outputs should be clear on screen
 Validation for input types and data format
 Appropriate indentation to logically illustrate program structure
 Identifiers logically describe use
 Naming conventions are consistent
 Comments and headers to explain processing that is not obvious
Zip your Visual Studio® solution project folder so it can be submitted for grading.
In Visual Studio®, you can locate the folder with your solution by left clicking on the
solution node in the Solution Explorer. Look at the Properties window to find the
folder name in the Path property. Locate this folder in File Explorer and zip the
folder.
Submit your ZIP file.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 4 Team -Implementthe Initial User Interface
You and your team of software development contractors are moving forward with the
steps to build your Universal Windows Platform (UWP) application.
For this week's Learning Team assignment, implement the initial user interface for the
program your team designed in Week Two. Continue using test data which will allow you
to test all user functions.
Each team member should demonstrate the following:
 Test the user interface
 Add validation code for any data entry input by the user
 Contribute to the construction of the code
 Review the code and design
 Be able to build, debug, and run the program
Note: Each week's Learning Team assignment will help you complete your Week Five
Individual Assignment.
Zip your Visual Studio®
solution project folder so it can be submitted for grading. In Visual
Studio®
, you can locate the folder with your solution by left clicking on the solution node in
the Solution Explorer. Look at the Properties window to find the folder name in the Path
property. Locate this folder in File Explorer and zip the folder.
Submit your ZIP file.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 5 Team -Connecting the Application to Live
Data
You and your team of software development contractors are ready to finalize your
Universal Windows Platform (UWP) application.
Complete your Learning Team assignment by adding the capability to make the
necessary API calls using REST in your program.
Each team member should be contributing to the construction of the code and
reviewing the code and design. Each team member is responsible for knowing how to
build, debug, and run the program.
Zip your Visual Studio®
solution project folder so it can be submitted for grading. In
Visual Studio®
, you can locate the folder with your solution by left clicking on the
solution node in the Solution Explorer. Look at the Properties window to find the
folder name in the Path property. Locate this folder in File Explorer and zip the
folder.
Note: Each week's Learning Team assignment will help you complete your Week
Five Individual Assignment.
Submit your ZIP file.
For More Classes Please Visit
http://www.uopstudy.com/
POS 409 Week 5 Overview of C# ProgrammingPresentation
Because of your recent work as a software development contractor, you are hired
to present an overviewof C# programming to a new group of contractors who are
working on a Universal Windows Platform (UWP) application.
Using what you learned from your experience in the weekly Learning Team
assignments, prepare a 12- to 15-slide presentation with voice over narration or you
may include a recording/podcast of the presentation with your slides.
If you do not wish to use voice over, you must include detailed notes with each
slide.
The slides should cover the following content:
 Highlights of C# syntax
 Overview of mathematical operators and a coding fragment sample
 Overview of loops and a coding fragment sample
 Overview of conditional expressions and a coding fragment sample
 Working with object models in C#
 Code Debugging, Resource Management and Data Validation
 Databases versus text files
 Using events and delates and collections
 Overview of exceptions, errors, and debugging
 Explanation of the benefits of LINQ in C# programming. Including how LINQ
compares to other query languages, such as SQL and XQuery
 Explanation of the benefits of JSON in C# programming
 REST and C# programming
 A conclusion slide that contains at least three important tips for C# programmers
that you have gained over the last four weeks
Submit the PowerPoint®
presentation with voice over narration or the presentation with
the audio recording/podcast.
For More Classes Please Visit
http://www.uopstudy.com/

More Related Content

What's hot

Programming basics
Programming basicsProgramming basics
Programming basicsSenri DLN
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan
 
Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming francopw
 
Chapter 01
Chapter 01Chapter 01
Chapter 01llmeade
 
visual basic for the beginner
visual basic for the beginnervisual basic for the beginner
visual basic for the beginnerSalim M
 
Chapter 01: Intro to VB2010 Programming
Chapter 01: Intro to VB2010 ProgrammingChapter 01: Intro to VB2010 Programming
Chapter 01: Intro to VB2010 Programmingpatf719
 
Introduction to visual basic programming
Introduction to visual basic programmingIntroduction to visual basic programming
Introduction to visual basic programmingRoger Argarin
 
Visual basic 6
Visual basic 6Visual basic 6
Visual basic 6Spy Seat
 
Creating extendable applications using MEF
Creating extendable applications using MEFCreating extendable applications using MEF
Creating extendable applications using MEFBen Hall
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpslilylucy
 
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...John Head
 
Ppr Pts Training Highlights
Ppr Pts Training HighlightsPpr Pts Training Highlights
Ppr Pts Training Highlightsjlschwartz1969
 

What's hot (19)

Programming basics
Programming basicsProgramming basics
Programming basics
 
Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2Daniel Egan Msdn Tech Days Oc Day2
Daniel Egan Msdn Tech Days Oc Day2
 
Composica presentation
Composica presentationComposica presentation
Composica presentation
 
Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming Chapter 1 — Introduction to Visual Basic 2010 Programming
Chapter 1 — Introduction to Visual Basic 2010 Programming
 
Tutorial 1
Tutorial 1Tutorial 1
Tutorial 1
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
 
visual basic for the beginner
visual basic for the beginnervisual basic for the beginner
visual basic for the beginner
 
Chapter 01: Intro to VB2010 Programming
Chapter 01: Intro to VB2010 ProgrammingChapter 01: Intro to VB2010 Programming
Chapter 01: Intro to VB2010 Programming
 
Introduction to visual basic programming
Introduction to visual basic programmingIntroduction to visual basic programming
Introduction to visual basic programming
 
Visual Studio
Visual StudioVisual Studio
Visual Studio
 
As pnet
As pnetAs pnet
As pnet
 
Visual Studio 2012 introduction
Visual Studio  2012 introductionVisual Studio  2012 introduction
Visual Studio 2012 introduction
 
Protean User Guide
Protean User GuideProtean User Guide
Protean User Guide
 
Visual basic 6
Visual basic 6Visual basic 6
Visual basic 6
 
Creating extendable applications using MEF
Creating extendable applications using MEFCreating extendable applications using MEF
Creating extendable applications using MEF
 
Vbasic
VbasicVbasic
Vbasic
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumps
 
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...
JMP205 - Integration of IBM Lotus Notes and Lotus Domino with Microsoft Offic...
 
Ppr Pts Training Highlights
Ppr Pts Training HighlightsPpr Pts Training Highlights
Ppr Pts Training Highlights
 

Similar to Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com

Pos 408 Social Responsibility - tutorialrank.com
Pos 408  Social Responsibility - tutorialrank.comPos 408  Social Responsibility - tutorialrank.com
Pos 408 Social Responsibility - tutorialrank.comPrescottLunt1008
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire CourseDR Dean Jame
 
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
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
 
POS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.commyblue69
 
POS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.comPOS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.commyblue99
 
POS/408 ENTIRE CLASS UOP TUTORIALS
POS/408 ENTIRE CLASS UOP TUTORIALSPOS/408 ENTIRE CLASS UOP TUTORIALS
POS/408 ENTIRE CLASS UOP TUTORIALSSharon Reynolds
 
POS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALSPOS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALSSharon Reynolds
 
How create react app help in creating a new react applications
How create react app help in creating a new react applications How create react app help in creating a new react applications
How create react app help in creating a new react applications Concetto Labs
 
M365 global developer bootcamp 2019
M365 global developer bootcamp 2019M365 global developer bootcamp 2019
M365 global developer bootcamp 2019Thomas Daly
 
Software Portfolio - SetFocus
Software Portfolio - SetFocusSoftware Portfolio - SetFocus
Software Portfolio - SetFocusAlexander Vogel
 
Prg 218 entire course
Prg 218 entire coursePrg 218 entire course
Prg 218 entire coursegrades4u
 
Building a design system with (p)react
Building a design system with (p)reactBuilding a design system with (p)react
Building a design system with (p)reactBart Waardenburg
 
4-5 PagesThe analysis phase helps determine what the software is.docx
4-5 PagesThe analysis phase helps determine what the software is.docx4-5 PagesThe analysis phase helps determine what the software is.docx
4-5 PagesThe analysis phase helps determine what the software is.docxpriestmanmable
 
CIS 406 Entire Course NEW
CIS 406 Entire Course NEWCIS 406 Entire Course NEW
CIS 406 Entire Course NEWshyamuopfive
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PAThomas Daly
 
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 Enthusiastic Study - snaptutorial.com
Cis 406 Enthusiastic Study - snaptutorial.comCis 406 Enthusiastic Study - snaptutorial.com
Cis 406 Enthusiastic Study - snaptutorial.comStephenson01
 

Similar to Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com (20)

Pos 408 Social Responsibility - tutorialrank.com
Pos 408  Social Responsibility - tutorialrank.comPos 408  Social Responsibility - tutorialrank.com
Pos 408 Social Responsibility - tutorialrank.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 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire course
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
 
POS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.com
 
POS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.comPOS 408 Creative and Effective/newtonhelp.com
POS 408 Creative and Effective/newtonhelp.com
 
POS/408 ENTIRE CLASS UOP TUTORIALS
POS/408 ENTIRE CLASS UOP TUTORIALSPOS/408 ENTIRE CLASS UOP TUTORIALS
POS/408 ENTIRE CLASS UOP TUTORIALS
 
POS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALSPOS/409 ENTIRE CLASS UOP TUTORIALS
POS/409 ENTIRE CLASS UOP TUTORIALS
 
How create react app help in creating a new react applications
How create react app help in creating a new react applications How create react app help in creating a new react applications
How create react app help in creating a new react applications
 
M365 global developer bootcamp 2019
M365 global developer bootcamp 2019M365 global developer bootcamp 2019
M365 global developer bootcamp 2019
 
Software Portfolio - SetFocus
Software Portfolio - SetFocusSoftware Portfolio - SetFocus
Software Portfolio - SetFocus
 
Prg 218 entire course
Prg 218 entire coursePrg 218 entire course
Prg 218 entire course
 
Building a design system with (p)react
Building a design system with (p)reactBuilding a design system with (p)react
Building a design system with (p)react
 
4-5 PagesThe analysis phase helps determine what the software is.docx
4-5 PagesThe analysis phase helps determine what the software is.docx4-5 PagesThe analysis phase helps determine what the software is.docx
4-5 PagesThe analysis phase helps determine what the software is.docx
 
CIS 406 Entire Course NEW
CIS 406 Entire Course NEWCIS 406 Entire Course NEW
CIS 406 Entire Course NEW
 
M365 global developer bootcamp 2019 PA
M365 global developer bootcamp 2019  PAM365 global developer bootcamp 2019  PA
M365 global developer bootcamp 2019 PA
 
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 Enthusiastic Study - snaptutorial.com
Cis 406 Enthusiastic Study - snaptutorial.comCis 406 Enthusiastic Study - snaptutorial.com
Cis 406 Enthusiastic Study - snaptutorial.com
 

More from ULLPTT

Mha 506 mha506 mha 506 best tutorials guide uopstudy.com
Mha 506 mha506 mha 506 best tutorials guide  uopstudy.comMha 506 mha506 mha 506 best tutorials guide  uopstudy.com
Mha 506 mha506 mha 506 best tutorials guide uopstudy.comULLPTT
 
Hcs 380 hcs380 hcs 380 education for service uopstudy.com
Hcs 380 hcs380 hcs 380 education for service   uopstudy.comHcs 380 hcs380 hcs 380 education for service   uopstudy.com
Hcs 380 hcs380 hcs 380 education for service uopstudy.comULLPTT
 
Hcs 380 hcs380 hcs 380 best tutorials guide uopstudy.com
Hcs 380 hcs380 hcs 380 best tutorials guide  uopstudy.comHcs 380 hcs380 hcs 380 best tutorials guide  uopstudy.com
Hcs 380 hcs380 hcs 380 best tutorials guide uopstudy.comULLPTT
 
Soc 110 soc110 soc 110 discussions uopstudy.com
Soc 110 soc110 soc 110 discussions  uopstudy.comSoc 110 soc110 soc 110 discussions  uopstudy.com
Soc 110 soc110 soc 110 discussions uopstudy.comULLPTT
 
Mth 213 mth213 mth 213 discussions uopstudy.com
Mth 213 mth213 mth 213 discussions  uopstudy.comMth 213 mth213 mth 213 discussions  uopstudy.com
Mth 213 mth213 mth 213 discussions uopstudy.comULLPTT
 
Mth 213 all discussions uop course guide uopstudy.com
Mth 213 all discussions uop course guide  uopstudy.comMth 213 all discussions uop course guide  uopstudy.com
Mth 213 all discussions uop course guide uopstudy.comULLPTT
 
Dat 305 dat305 dat 305 education for service uopstudy.com
Dat 305 dat305 dat 305 education for service   uopstudy.comDat 305 dat305 dat 305 education for service   uopstudy.com
Dat 305 dat305 dat 305 education for service uopstudy.comULLPTT
 
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.com
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.comOps 571 ops571 ops 571 forecasting and strategic planning -uopstudy.com
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.comULLPTT
 
Ops 571 ops571 ops 571 effective communication uopstudy.com
Ops 571 ops571 ops 571 effective communication   uopstudy.comOps 571 ops571 ops 571 effective communication   uopstudy.com
Ops 571 ops571 ops 571 effective communication uopstudy.comULLPTT
 
Ops 571 ops571 ops 571 education for service uopstudy.com
Ops 571 ops571 ops 571 education for service   uopstudy.comOps 571 ops571 ops 571 education for service   uopstudy.com
Ops 571 ops571 ops 571 education for service uopstudy.comULLPTT
 
Ops 571 ops571 ops 571 best tutorials guide uopstudy.com
Ops 571 ops571 ops 571 best tutorials guide  uopstudy.comOps 571 ops571 ops 571 best tutorials guide  uopstudy.com
Ops 571 ops571 ops 571 best tutorials guide uopstudy.comULLPTT
 
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.com
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.comCmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.com
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.comULLPTT
 
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.com
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.comCjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.com
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.comULLPTT
 
Ntc 362 forecasting and strategic planning -uopstudy.com
Ntc 362 forecasting and strategic planning -uopstudy.comNtc 362 forecasting and strategic planning -uopstudy.com
Ntc 362 forecasting and strategic planning -uopstudy.comULLPTT
 
Ntc 362 effective communication uopstudy.com
Ntc 362 effective communication   uopstudy.comNtc 362 effective communication   uopstudy.com
Ntc 362 effective communication uopstudy.comULLPTT
 
Bshs 437 teaching effectively -uopcourse.com
Bshs 437 teaching effectively -uopcourse.comBshs 437 teaching effectively -uopcourse.com
Bshs 437 teaching effectively -uopcourse.comULLPTT
 
Bshs 437 effective communication uopcourse.com
Bshs 437 effective communication   uopcourse.comBshs 437 effective communication   uopcourse.com
Bshs 437 effective communication uopcourse.comULLPTT
 
Bshs 437 education for service uopcourse.com
Bshs 437 education for service   uopcourse.comBshs 437 education for service   uopcourse.com
Bshs 437 education for service uopcourse.comULLPTT
 
Bshs 437 best tutorials guide uopcourse.com
Bshs 437   best tutorials guide  uopcourse.comBshs 437   best tutorials guide  uopcourse.com
Bshs 437 best tutorials guide uopcourse.comULLPTT
 
Iscom 361 teaching effectively -uopcourse.com
Iscom 361 teaching effectively -uopcourse.comIscom 361 teaching effectively -uopcourse.com
Iscom 361 teaching effectively -uopcourse.comULLPTT
 

More from ULLPTT (20)

Mha 506 mha506 mha 506 best tutorials guide uopstudy.com
Mha 506 mha506 mha 506 best tutorials guide  uopstudy.comMha 506 mha506 mha 506 best tutorials guide  uopstudy.com
Mha 506 mha506 mha 506 best tutorials guide uopstudy.com
 
Hcs 380 hcs380 hcs 380 education for service uopstudy.com
Hcs 380 hcs380 hcs 380 education for service   uopstudy.comHcs 380 hcs380 hcs 380 education for service   uopstudy.com
Hcs 380 hcs380 hcs 380 education for service uopstudy.com
 
Hcs 380 hcs380 hcs 380 best tutorials guide uopstudy.com
Hcs 380 hcs380 hcs 380 best tutorials guide  uopstudy.comHcs 380 hcs380 hcs 380 best tutorials guide  uopstudy.com
Hcs 380 hcs380 hcs 380 best tutorials guide uopstudy.com
 
Soc 110 soc110 soc 110 discussions uopstudy.com
Soc 110 soc110 soc 110 discussions  uopstudy.comSoc 110 soc110 soc 110 discussions  uopstudy.com
Soc 110 soc110 soc 110 discussions uopstudy.com
 
Mth 213 mth213 mth 213 discussions uopstudy.com
Mth 213 mth213 mth 213 discussions  uopstudy.comMth 213 mth213 mth 213 discussions  uopstudy.com
Mth 213 mth213 mth 213 discussions uopstudy.com
 
Mth 213 all discussions uop course guide uopstudy.com
Mth 213 all discussions uop course guide  uopstudy.comMth 213 all discussions uop course guide  uopstudy.com
Mth 213 all discussions uop course guide uopstudy.com
 
Dat 305 dat305 dat 305 education for service uopstudy.com
Dat 305 dat305 dat 305 education for service   uopstudy.comDat 305 dat305 dat 305 education for service   uopstudy.com
Dat 305 dat305 dat 305 education for service uopstudy.com
 
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.com
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.comOps 571 ops571 ops 571 forecasting and strategic planning -uopstudy.com
Ops 571 ops571 ops 571 forecasting and strategic planning -uopstudy.com
 
Ops 571 ops571 ops 571 effective communication uopstudy.com
Ops 571 ops571 ops 571 effective communication   uopstudy.comOps 571 ops571 ops 571 effective communication   uopstudy.com
Ops 571 ops571 ops 571 effective communication uopstudy.com
 
Ops 571 ops571 ops 571 education for service uopstudy.com
Ops 571 ops571 ops 571 education for service   uopstudy.comOps 571 ops571 ops 571 education for service   uopstudy.com
Ops 571 ops571 ops 571 education for service uopstudy.com
 
Ops 571 ops571 ops 571 best tutorials guide uopstudy.com
Ops 571 ops571 ops 571 best tutorials guide  uopstudy.comOps 571 ops571 ops 571 best tutorials guide  uopstudy.com
Ops 571 ops571 ops 571 best tutorials guide uopstudy.com
 
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.com
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.comCmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.com
Cmgt 554 cmgt554 cmgt 554 forecasting and strategic planning -uopstudy.com
 
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.com
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.comCjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.com
Cjs 251 cjs251 cjs 251 cjs251 forecasting and strategic planning -uopstudy.com
 
Ntc 362 forecasting and strategic planning -uopstudy.com
Ntc 362 forecasting and strategic planning -uopstudy.comNtc 362 forecasting and strategic planning -uopstudy.com
Ntc 362 forecasting and strategic planning -uopstudy.com
 
Ntc 362 effective communication uopstudy.com
Ntc 362 effective communication   uopstudy.comNtc 362 effective communication   uopstudy.com
Ntc 362 effective communication uopstudy.com
 
Bshs 437 teaching effectively -uopcourse.com
Bshs 437 teaching effectively -uopcourse.comBshs 437 teaching effectively -uopcourse.com
Bshs 437 teaching effectively -uopcourse.com
 
Bshs 437 effective communication uopcourse.com
Bshs 437 effective communication   uopcourse.comBshs 437 effective communication   uopcourse.com
Bshs 437 effective communication uopcourse.com
 
Bshs 437 education for service uopcourse.com
Bshs 437 education for service   uopcourse.comBshs 437 education for service   uopcourse.com
Bshs 437 education for service uopcourse.com
 
Bshs 437 best tutorials guide uopcourse.com
Bshs 437   best tutorials guide  uopcourse.comBshs 437   best tutorials guide  uopcourse.com
Bshs 437 best tutorials guide uopcourse.com
 
Iscom 361 teaching effectively -uopcourse.com
Iscom 361 teaching effectively -uopcourse.comIscom 361 teaching effectively -uopcourse.com
Iscom 361 teaching effectively -uopcourse.com
 

Recently uploaded

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
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
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
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
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 

Recently uploaded (20)

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
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
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
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
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 

Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com

  • 1. POS/409 .NET II The Latest Version A+ Study Guide ********************************************** POS 409 Entire Course Link http://www.uopstudy.com/pos-409 ********************************************** POS 409 Week 1 Individual - Record Objects Below is the original assignment: Your software development company wants to continue developing and enhance a software for internal use. The Software Development Company is now requesting that you add GUI/Windows form elements to the C# application. For this week's assignment, the application is required to read from a file (data.txt) containing data about the employees. Your tasks include:  Create a C# data structure based on the software developer data that will be read from file (data.txt).  The C# data structure class/methods must demonstrate the use of inheritance.  Implement an array of employee record objects containing the data pulled from the file.  Meet specifications by displaying a welcome message along with the following information on three employees on a Windows Form Application:  Employee Record(super class):
  • 2.  name  address  age  gross monthly pay  department id  Developer Type (sub class):  Scripts (i.e., Python, Perl, PowerShell)  Object-Oriented (i.e., C#, C++, Java)  Employee Tax Type (sub class):  W2 (Fed, FICA, Medicare)  1099 (no taxes)  Annual taxes determined by employee tax type  Annual net pay determined by salary and tax type Note: Developers' type records can only be of one type. Employees' tax records structure should be W-2 (taxes deducted from gross salary) or 1099 )no taxes deducted from gross salary). For More Classes Please Visit http://www.uopstudy.com/ Program Input File: Create a Comma Separated Values (CSV) text file and named "data.txt." The data.txt file shall include information on at least five developers put into rows, including software developer name, addresses, age, gross monthly pay, department ID, developer type, and employee type, all separated by commas (CSV). Using Visual Studio® and C# programming concepts, write a program to meet the specifications of the company's request. The program should have the following characteristics:  Compile and execute without errors  Meet specifications by demonstrating file handling, array data structure manipulation, and console output mastery by accomplishing the following:  Read employees' data from a file  Input the data into an array data structure  Display the employees' data on a Windows Form  Logic flow is clear, concise, and effective  User inputs and outputs should be clear on screen  Validation for input types and data format  Appropriate indentation to logically illustrate program structure  Identifiers logically describe use  Naming conventions are consistent
  • 3.  Comments and headers to explain processing that is not obvious Zip your Visual Studio solution project folder so it can be submitted for grading. In Visual Studio®, you can locate the folder with your solution by left clicking on the solution node in the Solution Explorer. Look at the Properties window to find the folder name in the Path property. Locate this folder in File Explorer and zip the folder. Submit your ZIP file. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 2 Team -Designingand Planning the Learning Team Project Software developers are often hired as contractors to work in teams to accomplish software development tasks. Over the coming weeks, you will build a Universal Windows Platform (UWP) application as a team of contractors. Each week your team will build a portion of the program. As a team, examine the following programs and the linked sources data, and select one to complete by the end of the course:  Create a program that will allow the user to enter a zip code and show the weather for the zip code entered. (Possible source of data: https://www.wunderground.com/weather/api/d/docs)  Create a program to search the World Wide Web. Keep track of the last 10 searches the user entered. (Possible source of data: https://developers.google.com/custom-search/json-api/v1/using_rest)  Create a program to take in two locations and show the driving directions between those two points. (Possible source of data: https://developers.google.com/maps/documentation/directions/start) Note: Each of the programs can be accomplished by creating a UWP application calling an Application Programming Interface (API) using a Representational State Transfer (REST) web service. For your team assignment this week, create a 1- to 2-page document using Microsoft® Word including each of the following:  Identify and investigate the service you will use and the data the service will return.
  • 4.  Investigate whatever setup you need to do in order to use the selected API, including registering for a developer key.  Use a tool like Postman to test the API and make sure it will work for you (use the link to download Postman).  Complete the initial class design for your selected program including properties and collections.  Complete the initial user interface design for your program.  Create a project plan for the work you will do with clear expectations for each team member. Note: The Learning Team Assignment Tips document will help you as you work through all the steps to build your Universal Windows Platform application. Submit your assignment. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 3 Team -Class Design,Construction,and Testing You and your team of software development contractors are moving forward with the steps to build your Universal Windows Platform (UWP) application. Using the document you created for last week's Learning Team assignment, read the information on the attached "Basic Queries (LINQ to XML) (C#)" tutorial, and research where you will get the data for your program design. Use this information to build the classes you will use for your selected team program. Remember, the query class represents the base class for executing search queries. Create a simple application that demonstrates and uses the classes. You could mock-up the data that the service API will provide by using LINQ. Each team member should be contributing to the construction of the code and reviewing the code and design. Each team member needs to know how to build, debug, and run the program. Note: Each week's Learning Team assignment will help you complete your Week Five Individual Assignment. Zip your Visual Studio® solution project folder so it can be submitted for grading. In Visual Studio® , you can locate the folder with your solution by left clicking on the solution node in the Solution Explorer. Look at the Properties window to find the
  • 5. folder name in the Path property. Locate this folder in File Explorer and zip the folder. Submit your ZIP file. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 3 Individual - LINQ Below is the original assignment: Your software development company wants to continue developing and enhancing a software for internal use. For this week's assignment, the application is required to read from a file (data.txt) containing employee data. Your tasks include:  Use the data file from Week One (data.txt)  Implement LINQ functionalities to search, display, and modify employees' records  Meet specifications by displaying on a Windows Form Application Program Input File: Using Visual Studio and C# programming concepts and using your Week one data.txt file as your source file, write a program to meet the specifications of the company's request. The program should have the following characteristics:  Compile and execute without errors  Meet specifications by demonstrating LINQ queries, data structure manipulation, and Windows Form output mastery by accomplishing the following:  Query employees' data  Input the data into a data structure  Display the employees' data on the console  Logic flow is clear, concise, and effective  User inputs and outputs should be clear on screen  Validation for input types and data format  Appropriate indentation to logically illustrate program structure  Identifiers logically describe use  Naming conventions are consistent  Comments and headers to explain processing that is not obvious Zip your Visual Studio® solution project folder so it can be submitted for grading. In Visual Studio®, you can locate the folder with your solution by left clicking on the solution node in the Solution Explorer. Look at the Properties window to find the
  • 6. folder name in the Path property. Locate this folder in File Explorer and zip the folder. Submit your ZIP file. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 4 Team -Implementthe Initial User Interface You and your team of software development contractors are moving forward with the steps to build your Universal Windows Platform (UWP) application. For this week's Learning Team assignment, implement the initial user interface for the program your team designed in Week Two. Continue using test data which will allow you to test all user functions. Each team member should demonstrate the following:  Test the user interface  Add validation code for any data entry input by the user  Contribute to the construction of the code  Review the code and design  Be able to build, debug, and run the program Note: Each week's Learning Team assignment will help you complete your Week Five Individual Assignment. Zip your Visual Studio® solution project folder so it can be submitted for grading. In Visual Studio® , you can locate the folder with your solution by left clicking on the solution node in the Solution Explorer. Look at the Properties window to find the folder name in the Path property. Locate this folder in File Explorer and zip the folder. Submit your ZIP file. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 5 Team -Connecting the Application to Live Data
  • 7. You and your team of software development contractors are ready to finalize your Universal Windows Platform (UWP) application. Complete your Learning Team assignment by adding the capability to make the necessary API calls using REST in your program. Each team member should be contributing to the construction of the code and reviewing the code and design. Each team member is responsible for knowing how to build, debug, and run the program. Zip your Visual Studio® solution project folder so it can be submitted for grading. In Visual Studio® , you can locate the folder with your solution by left clicking on the solution node in the Solution Explorer. Look at the Properties window to find the folder name in the Path property. Locate this folder in File Explorer and zip the folder. Note: Each week's Learning Team assignment will help you complete your Week Five Individual Assignment. Submit your ZIP file. For More Classes Please Visit http://www.uopstudy.com/ POS 409 Week 5 Overview of C# ProgrammingPresentation Because of your recent work as a software development contractor, you are hired to present an overviewof C# programming to a new group of contractors who are working on a Universal Windows Platform (UWP) application. Using what you learned from your experience in the weekly Learning Team assignments, prepare a 12- to 15-slide presentation with voice over narration or you may include a recording/podcast of the presentation with your slides. If you do not wish to use voice over, you must include detailed notes with each slide. The slides should cover the following content:  Highlights of C# syntax  Overview of mathematical operators and a coding fragment sample  Overview of loops and a coding fragment sample  Overview of conditional expressions and a coding fragment sample  Working with object models in C#  Code Debugging, Resource Management and Data Validation
  • 8.  Databases versus text files  Using events and delates and collections  Overview of exceptions, errors, and debugging  Explanation of the benefits of LINQ in C# programming. Including how LINQ compares to other query languages, such as SQL and XQuery  Explanation of the benefits of JSON in C# programming  REST and C# programming  A conclusion slide that contains at least three important tips for C# programmers that you have gained over the last four weeks Submit the PowerPoint® presentation with voice over narration or the presentation with the audio recording/podcast. For More Classes Please Visit http://www.uopstudy.com/