SlideShare a Scribd company logo
POS 408 All Assignments
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 1 Individual Console Display Message
POS 408 Assignment Week 2 Learning Team Methods Can Help with
Maintenance
POS 408 Assignment Week 2 Individual Adding Variables
POS 408 Assignment Week 3 Learning Team Understanding and
Applying Bitwise Operators
POS 408 Assignment Week 3 Individual Branching in C#
POS 408 Assignment Week 4 Learning Team Learn How to Apply
Inheritance Using Class Hierarchies
POS 408 Assignment Week 4 Individual Error Handling
POS 408 Assignment Week 5 Learning Team Learn How to Save
Objects to a File
POS 408 Assignment Week 5 Individual Data Structures
******************************
POS 408 Assignment Week 1 Individual Console
Display Message
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 1 Individual Console Display Message
The Software Development Company wants to develop software for
internal use. The company hired you to develop a Visual Studio® C#
Console Application displaying a Software Development Company
Welcome message on the console.
Using Visual Studio® and relating C# programming concepts, write a
program that displays a welcome message on the console.
Review debugging in Lesson 2, “An Introduction to C# and .NET” of
the Pluralsight course C# Fundamentals with Visual Studio 2015.
Demonstrate basic debugging capabilities by inserting breakpoints in
the code. Run the program in debug mode and provide a screenshot
showing the use of the breakpoints. The program should have the
following characteristics:
 Compile and Execute without errors
 Meets specifications by displaying a welcome message 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® project folder into a ZIP file with your name in
the file name. 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 using Assignment Files tab.
******************************
POS 408 Assignment Week 2 Individual Adding
Variables
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 2 Individual Adding Variables
The Software Development Company now requests you build a C#
program to collect information on software developers.
For this week’s assignment, build on the Week One Individual
Assignment, “Console Display Message,” by enhancing the program to
allow the user to enter one software developer’s name, addresses, and
monthly gross pay. The program should display on the console the
software developer’s name, address, monthly gross pay, and taxes paid
for that month. Taxes are set at 7% of the monthly gross pay.
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
 Meets specifications by displaying on the console a welcome
message along with allowing user input for the following
information:
o Software developer name
o Address
o Gross monthly pay
o Taxes
 Display the data the user input with the properly calculated taxes.
 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 using Assignment Files tab.
******************************
POS 408 Assignment Week 2 Learning Team
Methods Can Help with Maintenance
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 2 Learning Team Methods Can Help
with Maintenance
As software developers, you know coding standards are an important
part of software development, and nearly every organization has a
coding standard that developers are expected to follow. You might even
be expected to collaborate on defining the coding standard for your team
or organization.
Refer to “C# Coding Conventions (C# Programming Guide)” from this
week’s reading.
As a team of software developers, discuss how using methods helps
with code maintenance.
Create a 1/2- to 1-page coding standard for your team that specifies how
methods are to be used in your team assignment.
Submit your assignment using the Assignment Files tab.
******************************
POS 408 Assignment Week 3 Individual
Branching in C#
www.snaptutorial.com
POS 408 Assignment Week 3 Individual Branching in C#
The Software Development Company now requests you enhance the C#
program to display on the console additional information on all the
software developers’ information:
For this week’s assignment, build on the Week Two Individual
Assignment, “Adding Variables,” by asking the user to enter the names,
addresses, and monthly gross pay of three software developers. The
program should display on the console the software developer name,
address, monthly gross pay, and taxes paid for that month. Taxes are set
at 7% of the monthly gross pay. The program should also display the
annual gross pay and annual taxes of all three software developers.
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
 Meets specifications by displaying on the console a welcome
message along with allowing the user to enter the following
information on all three software developers:
o Software developer name
o Address
o Gross monthly pay
o Monthly Taxes
o Annual gross pay
o Annual taxes
 Data entered is displayed back to the user and taxes are properly
calculated.
 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 using Assignment Files tab.
******************************
POS 408 Assignment Week 3 Learning Team
Understanding and Applying Bitwise Operators
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 3 Learning Team Understanding and
Applying Bitwise Operators
A common use of bitwise operators is the use of bit fields. If you and
your team of software developers has a set of permissions (Read, Create,
Update, and Delete), it is possible to use bit fields to store these values
in a single byte rather than needing 4 bytes, one for each permission.
Refer to “C Bitwise Operators” on the Microsoft® Developer
Network website.
As a team of software developers, research C# bitwise
operators, write a 1/2- to 1-page C# program in Word demonstrating
their use for this set of permissions.
Submit your assignment using the Assignment Files tab.
******************************
POS 408 Assignment Week 4 Individual Error
Handling
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 4 Individual Error Handling
The Software Development Company requests you add user error
exception handling capabilities to the C# program.
For this week’s assignment, build on the Week Three Individual
Assignment, “Branching in C#,” by storing the data input by the user in
a class. You will also use this stored data when you display the data.
The C# class must include the type of employee as either W2 or 1099
using the following requirements:
 The 1099 software development employees’ records do not include
or calculate any taxes
 The program properly handles and informs the user about errors on
user input
 The program demonstrates in the code the use of references types
 The program displays on the console all the software developers’
data, monthly pay, monthly taxes, annual gross pay, annual taxes,
and net pay
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
 Meets specifications by displaying on the console a welcome
message along with allowing the user to enter the following
information on three software developers:
o Software developer name
o Address
o Gross monthly pay
o Annual gross pay
o Employee type: W2/1099
o Monthly and annual taxes determined by employee type
 Data is stored in a class
 Data that is input is displayed properly from the class.
 Logic flow is clear, concise, and effective; demonstrates exception
handling routines and reference types by catching and displaying
user data entry errors and implementing reference types as part of
the code
 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 using Assignment Files tab.
******************************
POS 408 Assignment Week 4 Learning Team
Learn How to Apply Inheritance Using Class
Hierarchies
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 4 Learning Team Learn How to Apply
Inheritance Using Class Hierarchies
You and your team of software developers are creating a game for
children. The game has different types of animals.
As a team of software developers, create in a 1-page Word document
the class “Animal,” including appropriate methods and properties that
are common to all animals, subclasses of Animal, such as Cats, Dogs,
and Birds, and appropriate methods and properties unique to these
subclasses.
Submit your assignment using the Assignment Files tab.
******************************
POS 408 Assignment Week 5 Individual Data
Structures
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 5 Individual Data Structures
The Software Development Company now requests you add final
elements to the C# program.
For this week’s assignment, build on the Week Four Individual
Assignment, “Error Handling,” by reading the software developers’ C#
data structure records data from a file (data.txt), implement an array data
structure containing the data, and display on the console all the software
developers’ data, monthly pay, monthly taxes, annual gross pay, annual
taxes, and net pay.
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 and including software developer name,
addresses, and monthly gross pay separated by a comma.
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
 Meets specifications by demonstrating file handling, array data
structure manipulation, and console output mastery by
accomplishing the following:
o Read software developers’ data from a file
o Input the data into an array data structure
o Display the software developers’ 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 using Assignment Files tab.
******************************
POS 408 Assignment Week 5 Learning Team
Learn How to Save Objects to a File
For more classes visit
www.snaptutorial.com
POS 408 Assignment Week 5 Learning Team: Learn How to Save
Objects to a File
You and your team of software developers are experiencing problems
saving the state of a program between different times that the program is
run.
An object oriented program state can be maintained by saving the state
of the objects in the program. Also, you can transfer the state of an
object between different computer systems by creating the object based
on the state once it is saved onto that other computer. In order to provide
a way to persist object state, you must serialize objects in C#.
As a team of software developers and using the classes created in the
Week Four Learning Team Collaborative Activity, “Learn How to
Apply Inheritance Using Class Hierarchies,” serialize the objects of the
classes from that activity to a file as a Visual Studio® solution.
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 using the Assignment Files tab.
******************************

More Related Content

What's hot

visual basic for the beginner
visual basic for the beginnervisual basic for the beginner
visual basic for the beginner
Salim M
 
What's New in Visual Studio 2008
What's New in Visual Studio 2008What's New in Visual Studio 2008
What's New in Visual Studio 2008
Acend Corporate Learning
 
CV Coral
CV CoralCV Coral
CV Coral
Coral Li
 
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
 
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
uopassignment
 
Vb lecture
Vb lectureVb lecture
Vb lecture
alldesign
 
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
dixonbakerr
 
Debug tool
Debug toolDebug tool
MCP_LogoUsageGuidelines_2013
MCP_LogoUsageGuidelines_2013MCP_LogoUsageGuidelines_2013
MCP_LogoUsageGuidelines_2013
MURU GESAN
 
Vb.net ide
Vb.net ideVb.net ide
Vb.net ide
Faisal Aziz
 

What's hot (10)

visual basic for the beginner
visual basic for the beginnervisual basic for the beginner
visual basic for the beginner
 
What's New in Visual Studio 2008
What's New in Visual Studio 2008What's New in Visual Studio 2008
What's New in Visual Studio 2008
 
CV Coral
CV CoralCV Coral
CV Coral
 
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
 
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
 
Vb lecture
Vb lectureVb lecture
Vb lecture
 
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
 
Debug tool
Debug toolDebug tool
Debug tool
 
MCP_LogoUsageGuidelines_2013
MCP_LogoUsageGuidelines_2013MCP_LogoUsageGuidelines_2013
MCP_LogoUsageGuidelines_2013
 
Vb.net ide
Vb.net ideVb.net ide
Vb.net ide
 

Similar to POS 408 Education Specialist / snaptutorial.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
myblue99
 
POS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.com
myblue69
 
Web-Dev Portfolio
Web-Dev PortfolioWeb-Dev Portfolio
Web-Dev Portfolio
nwbgh
 
Intro to C++ - Class 2 - Objects & Classes
Intro to C++ - Class 2 - Objects & ClassesIntro to C++ - Class 2 - Objects & Classes
Intro to C++ - Class 2 - Objects & Classes
Blue Elephant Consulting
 
Intro To C++ - Class 2 - An Introduction To C++
Intro To C++ - Class 2 - An Introduction To C++Intro To C++ - Class 2 - An Introduction To C++
Intro To C++ - Class 2 - An Introduction To C++
Blue Elephant Consulting
 
The Software Development Company now requests you add final elem.docx
The Software Development Company now requests you add final elem.docxThe Software Development Company now requests you add final elem.docx
The Software Development Company now requests you add final elem.docx
teresehearn
 
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
uopassignment
 
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
lroselyn
 
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
dixonbakerr
 
Visual Studio 2008 Overview
Visual Studio 2008 OverviewVisual Studio 2008 Overview
Visual Studio 2008 Overview
Roman Okolovich
 
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docxStudent Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
emelyvalg9
 
Data structures POS 408 University of Phoenix.docx
Data structures POS 408 University of Phoenix.docxData structures POS 408 University of Phoenix.docx
Data structures POS 408 University of Phoenix.docx
write31
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire Course
DR Dean Jame
 
Design documentation
Design documentationDesign documentation
Design documentation
nicky_walters
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire course
PRG421
 
Prg 421 entire course
Prg 421 entire coursePrg 421 entire course
Prg 421 entire course
ACC421
 
visual basic 2005 programmer certification
visual basic 2005 programmer certificationvisual basic 2005 programmer certification
visual basic 2005 programmer certification
Vskills
 
Cis 170 i lab 2 of 7
Cis 170 i lab 2 of 7Cis 170 i lab 2 of 7
Cis 170 i lab 2 of 7
helpido9
 
IT 200 Network DiagramBelow is the wired network configurat.docx
IT 200 Network DiagramBelow is the wired network configurat.docxIT 200 Network DiagramBelow is the wired network configurat.docx
IT 200 Network DiagramBelow is the wired network configurat.docx
priestmanmable
 
On Demand Feedback Analysis for Certification Process
On Demand Feedback Analysis for Certification ProcessOn Demand Feedback Analysis for Certification Process
On Demand Feedback Analysis for Certification Process
rahulmonikasharma
 

Similar to POS 408 Education Specialist / snaptutorial.com (20)

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  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.comPOS 408  Focus Dreams/newtonhelp.com
POS 408  Focus Dreams/newtonhelp.com
 
Web-Dev Portfolio
Web-Dev PortfolioWeb-Dev Portfolio
Web-Dev Portfolio
 
Intro to C++ - Class 2 - Objects & Classes
Intro to C++ - Class 2 - Objects & ClassesIntro to C++ - Class 2 - Objects & Classes
Intro to C++ - Class 2 - Objects & Classes
 
Intro To C++ - Class 2 - An Introduction To C++
Intro To C++ - Class 2 - An Introduction To C++Intro To C++ - Class 2 - An Introduction To C++
Intro To C++ - Class 2 - An Introduction To C++
 
The Software Development Company now requests you add final elem.docx
The Software Development Company now requests you add final elem.docxThe Software Development Company now requests you add final elem.docx
The Software Development Company now requests you add final elem.docx
 
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 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 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
 
Visual Studio 2008 Overview
Visual Studio 2008 OverviewVisual Studio 2008 Overview
Visual Studio 2008 Overview
 
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docxStudent Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
Student Lab Activity A. Lab # CIS CIS170A-A1B. Lab.docx
 
Data structures POS 408 University of Phoenix.docx
Data structures POS 408 University of Phoenix.docxData structures POS 408 University of Phoenix.docx
Data structures POS 408 University of Phoenix.docx
 
PRG 421 Entire Course
PRG 421 Entire CoursePRG 421 Entire Course
PRG 421 Entire Course
 
Design documentation
Design documentationDesign documentation
Design documentation
 
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
 
visual basic 2005 programmer certification
visual basic 2005 programmer certificationvisual basic 2005 programmer certification
visual basic 2005 programmer certification
 
Cis 170 i lab 2 of 7
Cis 170 i lab 2 of 7Cis 170 i lab 2 of 7
Cis 170 i lab 2 of 7
 
IT 200 Network DiagramBelow is the wired network configurat.docx
IT 200 Network DiagramBelow is the wired network configurat.docxIT 200 Network DiagramBelow is the wired network configurat.docx
IT 200 Network DiagramBelow is the wired network configurat.docx
 
On Demand Feedback Analysis for Certification Process
On Demand Feedback Analysis for Certification ProcessOn Demand Feedback Analysis for Certification Process
On Demand Feedback Analysis for Certification Process
 

Recently uploaded

Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 

Recently uploaded (20)

Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 

POS 408 Education Specialist / snaptutorial.com

  • 1. POS 408 All Assignments For more classes visit www.snaptutorial.com POS 408 Assignment Week 1 Individual Console Display Message POS 408 Assignment Week 2 Learning Team Methods Can Help with Maintenance POS 408 Assignment Week 2 Individual Adding Variables POS 408 Assignment Week 3 Learning Team Understanding and Applying Bitwise Operators POS 408 Assignment Week 3 Individual Branching in C# POS 408 Assignment Week 4 Learning Team Learn How to Apply Inheritance Using Class Hierarchies POS 408 Assignment Week 4 Individual Error Handling POS 408 Assignment Week 5 Learning Team Learn How to Save Objects to a File POS 408 Assignment Week 5 Individual Data Structures
  • 2. ****************************** POS 408 Assignment Week 1 Individual Console Display Message For more classes visit www.snaptutorial.com POS 408 Assignment Week 1 Individual Console Display Message The Software Development Company wants to develop software for internal use. The company hired you to develop a Visual Studio® C# Console Application displaying a Software Development Company Welcome message on the console. Using Visual Studio® and relating C# programming concepts, write a program that displays a welcome message on the console. Review debugging in Lesson 2, “An Introduction to C# and .NET” of the Pluralsight course C# Fundamentals with Visual Studio 2015. Demonstrate basic debugging capabilities by inserting breakpoints in the code. Run the program in debug mode and provide a screenshot showing the use of the breakpoints. The program should have the following characteristics:  Compile and Execute without errors  Meets specifications by displaying a welcome message on the console
  • 3.  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® project folder into a ZIP file with your name in the file name. 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 using Assignment Files tab. ****************************** POS 408 Assignment Week 2 Individual Adding Variables For more classes visit www.snaptutorial.com POS 408 Assignment Week 2 Individual Adding Variables The Software Development Company now requests you build a C# program to collect information on software developers.
  • 4. For this week’s assignment, build on the Week One Individual Assignment, “Console Display Message,” by enhancing the program to allow the user to enter one software developer’s name, addresses, and monthly gross pay. The program should display on the console the software developer’s name, address, monthly gross pay, and taxes paid for that month. Taxes are set at 7% of the monthly gross pay. 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  Meets specifications by displaying on the console a welcome message along with allowing user input for the following information: o Software developer name o Address o Gross monthly pay o Taxes  Display the data the user input with the properly calculated taxes.  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 using Assignment Files tab. ******************************
  • 5. POS 408 Assignment Week 2 Learning Team Methods Can Help with Maintenance For more classes visit www.snaptutorial.com POS 408 Assignment Week 2 Learning Team Methods Can Help with Maintenance As software developers, you know coding standards are an important part of software development, and nearly every organization has a coding standard that developers are expected to follow. You might even be expected to collaborate on defining the coding standard for your team or organization. Refer to “C# Coding Conventions (C# Programming Guide)” from this week’s reading. As a team of software developers, discuss how using methods helps with code maintenance. Create a 1/2- to 1-page coding standard for your team that specifies how methods are to be used in your team assignment. Submit your assignment using the Assignment Files tab. ******************************
  • 6. POS 408 Assignment Week 3 Individual Branching in C# www.snaptutorial.com POS 408 Assignment Week 3 Individual Branching in C# The Software Development Company now requests you enhance the C# program to display on the console additional information on all the software developers’ information: For this week’s assignment, build on the Week Two Individual Assignment, “Adding Variables,” by asking the user to enter the names, addresses, and monthly gross pay of three software developers. The program should display on the console the software developer name, address, monthly gross pay, and taxes paid for that month. Taxes are set at 7% of the monthly gross pay. The program should also display the annual gross pay and annual taxes of all three software developers. 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  Meets specifications by displaying on the console a welcome message along with allowing the user to enter the following information on all three software developers: o Software developer name o Address o Gross monthly pay o Monthly Taxes
  • 7. o Annual gross pay o Annual taxes  Data entered is displayed back to the user and taxes are properly calculated.  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 using Assignment Files tab. ****************************** POS 408 Assignment Week 3 Learning Team Understanding and Applying Bitwise Operators For more classes visit www.snaptutorial.com
  • 8. POS 408 Assignment Week 3 Learning Team Understanding and Applying Bitwise Operators A common use of bitwise operators is the use of bit fields. If you and your team of software developers has a set of permissions (Read, Create, Update, and Delete), it is possible to use bit fields to store these values in a single byte rather than needing 4 bytes, one for each permission. Refer to “C Bitwise Operators” on the Microsoft® Developer Network website. As a team of software developers, research C# bitwise operators, write a 1/2- to 1-page C# program in Word demonstrating their use for this set of permissions. Submit your assignment using the Assignment Files tab. ****************************** POS 408 Assignment Week 4 Individual Error Handling For more classes visit www.snaptutorial.com POS 408 Assignment Week 4 Individual Error Handling
  • 9. The Software Development Company requests you add user error exception handling capabilities to the C# program. For this week’s assignment, build on the Week Three Individual Assignment, “Branching in C#,” by storing the data input by the user in a class. You will also use this stored data when you display the data. The C# class must include the type of employee as either W2 or 1099 using the following requirements:  The 1099 software development employees’ records do not include or calculate any taxes  The program properly handles and informs the user about errors on user input  The program demonstrates in the code the use of references types  The program displays on the console all the software developers’ data, monthly pay, monthly taxes, annual gross pay, annual taxes, and net pay 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  Meets specifications by displaying on the console a welcome message along with allowing the user to enter the following information on three software developers: o Software developer name o Address o Gross monthly pay o Annual gross pay o Employee type: W2/1099 o Monthly and annual taxes determined by employee type  Data is stored in a class  Data that is input is displayed properly from the class.  Logic flow is clear, concise, and effective; demonstrates exception handling routines and reference types by catching and displaying user data entry errors and implementing reference types as part of the code  User inputs and outputs should be clear on screen
  • 10.  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 using Assignment Files tab. ****************************** POS 408 Assignment Week 4 Learning Team Learn How to Apply Inheritance Using Class Hierarchies For more classes visit www.snaptutorial.com POS 408 Assignment Week 4 Learning Team Learn How to Apply Inheritance Using Class Hierarchies
  • 11. You and your team of software developers are creating a game for children. The game has different types of animals. As a team of software developers, create in a 1-page Word document the class “Animal,” including appropriate methods and properties that are common to all animals, subclasses of Animal, such as Cats, Dogs, and Birds, and appropriate methods and properties unique to these subclasses. Submit your assignment using the Assignment Files tab. ****************************** POS 408 Assignment Week 5 Individual Data Structures For more classes visit www.snaptutorial.com POS 408 Assignment Week 5 Individual Data Structures The Software Development Company now requests you add final elements to the C# program. For this week’s assignment, build on the Week Four Individual Assignment, “Error Handling,” by reading the software developers’ C# data structure records data from a file (data.txt), implement an array data structure containing the data, and display on the console all the software
  • 12. developers’ data, monthly pay, monthly taxes, annual gross pay, annual taxes, and net pay. 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 and including software developer name, addresses, and monthly gross pay separated by a comma. 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  Meets specifications by demonstrating file handling, array data structure manipulation, and console output mastery by accomplishing the following: o Read software developers’ data from a file o Input the data into an array data structure o Display the software developers’ 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 using Assignment Files tab. ******************************
  • 13. POS 408 Assignment Week 5 Learning Team Learn How to Save Objects to a File For more classes visit www.snaptutorial.com POS 408 Assignment Week 5 Learning Team: Learn How to Save Objects to a File You and your team of software developers are experiencing problems saving the state of a program between different times that the program is run. An object oriented program state can be maintained by saving the state of the objects in the program. Also, you can transfer the state of an object between different computer systems by creating the object based on the state once it is saved onto that other computer. In order to provide a way to persist object state, you must serialize objects in C#. As a team of software developers and using the classes created in the Week Four Learning Team Collaborative Activity, “Learn How to Apply Inheritance Using Class Hierarchies,” serialize the objects of the classes from that activity to a file as a Visual Studio® solution. 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 using the Assignment Files tab.