POS 408 Focus Dreams / newtonhelp.com - PowerPoint PPT Presentation

About This Presentation
Title:

POS 408 Focus Dreams / newtonhelp.com

Description:

For more course tutorials visit www.newtonhelp.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# – PowerPoint PPT presentation

Number of Views:5
Slides: 14
Provided by: king1546

less

Transcript and Presenter's Notes

Title: POS 408 Focus Dreams / newtonhelp.com


1
POS 408 Focus Dreams / newtonhelp.com
2
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 All Assignments
  • For more course tutorials visit
  • www.newtonhelp.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

3
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 1 Individual Console
    Display Message
  • For more course tutorials visit
  • www.newtonhelp.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.

4
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 2 Individual Adding
    Variables
  • For more course tutorials visit
  • www.newtonhelp.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 weeks assignment, build on the Week One
    Individual Assignment, Console Display Message,
    by enhancing the program to allow the user to
    enter one software developers name, addresses,
    and monthly gross pay. The program should display
    on the console the software developers 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 companys request. The
    program should have the following characteristics

5
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 2 Learning Team Methods
    Can Help with Maintenance
  • For more course tutorials visit
  • www.newtonhelp.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 weeks reading.
  • As a team of software developers, discuss how
    using methods helps with code maintenance.

6
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 3 Individual Branching in
    C
  • For more course tutorials visit
  • www.newtonhelp.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 weeks 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.

7
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 4 Individual Error
    Handling
  • For more course tutorials visit
  • www.newtonhelp.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 weeks 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

8
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 3 Learning Team
    Understanding and Applying Bitwise Operators
  • For more course tutorials visit
  • www.newtonhelp.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.

9
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 4 Individual Error
    Handling
  • For more course tutorials visit
  • www.newtonhelp.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 weeks 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

10
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 4 Learning Team Learn How
    to Apply Inheritance Using Class Hierarchies
  • For more course tutorials visit
  • www.newtonhelp.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.

11
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 5 Individual Data
    Structures
  • For more course tutorials visit
  • www.newtonhelp.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 weeks 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.

12
POS 408 Focus Dreams / newtonhelp.com
  • POS 408 Assignment Week 5 Learning Team Learn How
    to Save Objects to a File
  • For more course tutorials visit
  • www.newtonhelp.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.

13
POS 408 Focus Dreams / newtonhelp.com
Write a Comment
User Comments (0)
About PowerShow.com