Home > Store

Sams Teach Yourself C++ in 21 Days, 5th Edition

Register your product to gain access to bonus material or receive a coupon.

Sams Teach Yourself C++ in 21 Days, 5th Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2005
  • Edition: 5th
  • Book
  • ISBN-10: 0-672-32711-2
  • ISBN-13: 978-0-672-32711-7

A new edition of this title is available, ISBN-10:  0672329417 ISBN-13: 9780672329418

Join the leagues of thousands of programmers and learn C++ from some of the best. The fifth edition of the best seller Sams Teach Yourself C++ in 21 Days, written by Jesse Liberty, a well-known C++ and C# programming manual author and Bradley L. Jones, manager for a number of high profiler developer websites, has been updated to the new ANSI/ISO C++ Standard. This is an excellent hands-on guide for the beginning programmer. Packed with examples of syntax and detailed analysis of code, fundamentals such as managing I/O, loops, arrays and creating C++ applications are all covered in the 21 easy-to-follow lessons. You will also be given access to a website that will provide you will all the source code examples developed in the book as a practice tool. C++ is the preferred language for millions of developers-make Sams Teach Yourself the preferred way to learn it!

 

Downloads

Downloads

The bonus chapter for the book is available here in Adobe Portable Document Format (PDF) format. You will need Adobe's Acrobat Reader to view this files. If you do not have the Acrobat Reader installed, you may go to Adobe Systems' web site to download this free reader.

Click on the link below to display the PDF file in a new window. Right-click on the link and select Save As if you want to download it to your hard drive.

Appendix D: Answers - 228 KB -- AppendixD.pdf

All the code developed for the book in one convenient download - 152 KB -- code.zip

Sample Content

Table of Contents

Introduction.

    Who Should Read This Book

    Conventions Used in This Book

    Sample Code for This Book

    Week 1 At a Glance

    A Note to C Programmers

    Where You Are Going

1. Getting Started.

      A Brief History of C++

      The Need for Solving Problems

      Procedural, Structured, and Object-Oriented Programming

      Object-Oriented Programming (OOP)

      C++ and Object-Oriented Programming

    How C++ Evolved

    Should I Learn C First?

    C++, Java, and C#

    Microsoft's Managed Extensions to C++

    The ANSI Standard

    Preparing to Program

    Your Development Environment

      The Process of Creating the Program

      Creating an Object File with the Compiler

      Creating an Executable File with the Linker

    The Development Cycle

    HELLO.cpp-Your First C++ Program

    Getting Started with Your Compiler

      Building the Hello World Project

    Compile Errors

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

2. The Anatomy of a C++ Program.

    A Simple Program

    A Brief Look at cout

    Using the Standard Namespace

    Commenting Your Programs

      Types of Comments

      Using Comments

      A Final Word of Caution About Comments

    Functions

      Using Functions

      Methods Versus Functions

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

3. Working with Variables and Constants.

    What Is a Variable?

      Storing Data in Memory

      Setting Aside Memory

      Size of Integers

      signed and unsigned

      Fundamental Variable Types

    Defining a Variable

      Case Sensitivity

      Naming Conventions

      Keywords

    Creating More Than One Variable at a Time

    Assigning Values to Your Variables

    Creating Aliases with typedef

    When to Use short and When to Use long

      Wrapping Around an unsigned Integer

      Wrapping Around a signed Integer

    Working with Characters

      Characters and Numbers

      Special Printing Characters

    Constants

      Literal Constants

      Symbolic Constants

    Enumerated Constants

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

4. Creating Expressions and Statements.

    Starting with Statements

      Using Whitespace

      Blocks and Compound Statements

    Expressions

    Working with Operators

      Assignment Operators

      Mathematical Operators

    Combining the Assignment and Mathematical Operators

    Incrementing and Decrementing

      Prefixing Versus Postfixing

    Understanding Operator Precedence

    Nesting Parentheses

    The Nature of Truth

      Evaluating with the Relational Operators

    The if Statement

      Indentation Styles

      The else Statement

      Advanced if Statements

    Using Braces in Nested if Statements

    Using the Logical Operators

      The Logical AND Operator

      The Logical OR Operator

      The Logical NOT Operator

    Short Circuit Evaluation

    Relational Precedence

    More About Truth and Falsehood

    The Conditional (Ternary) Operator

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

5. Organizing into Functions.

    What Is a Function?

    Return Values, Parameters, and Arguments

    Declaring and Defining Functions

      Function Prototypes

      Defining the Function

    Execution of Functions

    Determining Variable Scope

      Local Variables

      Local Variables Within Blocks

    Parameters Are Local Variables

      Global Variables

      Global Variables: A Word of Caution

    Considerations for Creating Function Statements

    More About Function Arguments

    More About Return Values

    Default Parameters

    Overloading Functions

    Special Topics About Functions

      Inline Functions

      Recursion

    How Functions Work-A Peek Under the Hood

      Levels of Abstraction

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

6. Understanding Object-Oriented Programming.

    Is C++ Object-Oriented?

    Creating New Types

    Introducing Classes and Members

      Declaring a Class

      A Word on Naming Conventions

      Defining an Object

      Classes Versus Objects

    Accessing Class Members

      Assigning to Objects, Not to Classes

      If You Don't Declare It, Your Class Won't Have It

    Private Versus Public Access

      Making Member Data Private

    Implementing Class Methods

    Adding Constructors and Destructors

    Getting a Default Constructor and Destructor

    Using the Default Constructor

    Including const Member Functions

    Interface Versus Implementation

    Where to Put Class Declarations and Method Definitions

    Inline Implementation

    Classes with Other Classes as Member Data

    Exploring Structures

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

7. More on Program Flow.

    Looping

      The Roots of Looping: goto

      Why goto Is Shunned

    Using while Loops

      Exploring More Complicated while Statements

      Introducing continue and break

      Examining while (true) Loops

    Implementing do...while Loops

    Using do...while

    Looping with the for Statement

      Advanced for Loops

      Empty for Loops

      Nesting Loops

      Scoping in for Loops

    Summing Up Loops

    Controlling Flow with switch Statements

      Using a switch Statement with a Menu

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

    Week 1 In Review

    Week 2 At a Glance

      Where You Are Going

8. Understanding Pointers.

    What Is a Pointer?

      A Bit About Memory

      Getting a Variable's Memory Address

      Storing a Variable's Address in a Pointer

      Pointer Names

      Getting the Value from a Variable

      Dereferencing with the Indirection Operator

      Pointers, Addresses, and Variables

      Manipulating Data by Using Pointers

      Examining the Address

    Why Would You Use Pointers?

    The Stack and the Free Store (Heap)

      Allocating Space with the new Keyword

      Putting Memory Back: The delete Keyword

    Another Look at Memory Leaks

    Creating Objects on the Free Store

    Deleting Objects from the Free Store

    Accessing Data Members

    Creating Member Data on the Free Store

    The this Pointer

    Stray, Wild, or Dangling Pointers

    Using const Pointers

      const Pointers and const Member Functions

      Using a const this Pointers

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

9. Exploiting References.

    What Is a Reference?

    Using the Address-Of Operator (&) on References

      Attempting to Reassign References (Not!)

    Referencing Objects

    Null Pointers and Null References

    Passing Function Arguments by Reference

      Making swap() Work with Pointers

      Implementing swap() with References

    Understanding Function Headers and Prototypes

    Returning Multiple Values

      Returning Values by Reference

    Passing by Reference for Efficiency

Passing a const Pointer

References as an Alternative

    Knowing When to Use References Versus Pointers

    Mixing References and Pointers

    Returning Out-of-Scope Object References

      Returning a Reference to an Object on the Heap

    Pointer, Pointer, Who Has the Pointer?

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

10. Working with Advanced Functions.

    Overloaded Member Functions

    Using Default Values

    Choosing Between Default Values and Overloaded Functions

    The Default Constructor

    Overloading Constructors

    Initializing Objects

    The Copy Constructor

    Operator Overloading

      Writing an Increment Function

      Overloading the Prefix Operator

      Returning Types in Overloaded Operator Functions

      Returning Nameless Temporaries

      Using the this Pointer

      Overloading the Postfix Operator

      Difference Between Prefix and Postfix

      Overloading Binary Mathematical Operators

      Issues in Operator Overloading

      Limitations on Operator Overloading

      What to Overload

      The Assignment Operator

    Handling Data Type Conversion

    Conversion Operators

    Summary

    Q&A

      Workshop

      Quiz

      Exercises

11. Object-Oriented Analysis and Design.

    Building Models

    Software Design: The Modeling Language

    Software Design: The Process

      Waterfall Versus Iterative Development

      The Process of Iterative Development

    Step 1: The Conceptualization Phase: Starting with The Vision

    Step 2: The Analysis Phase: Gathering Requirements

      Use Cases

      Application Analysis

      Systems Analysis

      Planning Documents

      Visualizations

      Artifacts

    Step 3: The Design Phase

      What Are the Classes?

      Transformations

      Other Transformations

      Building the Static Model

      Dynamic Model

    Steps 4-6: Implementation, Testing, and Rollout?

    Iterations

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

12. Implementing Inheritance.

    What Is Inheritance?

      Inheritance and Derivation

      The Animal Kingdom

      The Syntax of Derivation

    Private Versus Protected

    Inheritance with Constructors and Destructors

      Passing Arguments to Base Constructors

    Overriding Base Class Functions

      Hiding the Base Class Method

      Calling the Base Method

    Virtual Methods

      How Virtual Functions Work

      Trying to Access Methods from a Base Class

      Slicing

      Creating Virtual Destructors

      Virtual Copy Constructors

      The Cost of Virtual Methods

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

13. Managing Arrays and Strings.

    What Is an Array?

      Accessing Array Elements

      Writing Past the End of an Array

      Fence Post Errors

      Initializing Arrays

      Declaring Arrays

    Using Arrays of Objects

      Declaring Multidimensional Arrays

      Initializing Multidimensional Arrays

    Building Arrays of Pointers

    A Look at Pointer Arithmetic-An Advanced Topic

    Declaring Arrays on the Free Store

      A Pointer to an Array Versus an Array of Pointers

      Pointers and Array Names

      Deleting Arrays on the Free Store

      Resizing Arrays at Runtime

    char Arrays and Strings

    Using the strcpy() and strncpy() Methods

    String Classes

    Linked Lists and Other Structures

    Creating Array Classes

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

14. Polymorphism.

    Problems with Single Inheritance

      Percolating Upward

      Casting Down

      Adding to Two Lists

    Multiple Inheritance

      The Parts of a Multiply Inherited Object

      Constructors in Multiply Inherited Objects

      Ambiguity Resolution

      Inheriting from Shared Base Class

      Virtual Inheritance

      Problems with Multiple Inheritance

      Mixins and Capabilities Classes

    Abstract Data Types

      Pure Virtual Functions

      Implementing Pure Virtual Functions

      Complex Hierarchies of Abstraction

      Which Classes Are Abstract?

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

    Week 2 In Review

    Week 3 At a Glance

      Where You Are Going

15. Special Classes and Functions.

    Sharing Data Among Objects of the Same Type: Static Member Data

    Using Static Member Functions

    Pointers to Functions

      Why Use Function Pointers?

      Arrays of Pointers to Functions

      Passing Pointers to Functions to Other Functions

      Using typedef with Pointers to Functions

    Pointers to Member Functions

      Arrays of Pointers to Member Functions

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

16. Advanced Inheritance.

    Aggregation

      Accessing Members of the Aggregated Class

      Controlling Access to Aggregated Members

      Cost of Aggregation

      Copying by Value

    Implementation in Terms of Inheritance Versus Aggregation/Delegation

      Using Delegation

    Private Inheritance

    Adding Friend Classes

    Friend Functions

    Friend Functions and Operator Overloading

    Overloading the Insertion Operator

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

17. Working with Streams.

    Overview of Streams

      Encapsulation of Data Flow

      Understanding Buffering

    Streams and Buffers

    Standard I/O Objects

    Redirection of the Standard Streams

    Input Using cin

      Inputting Strings

      String Problems

      The cin Return Value

    Other Member Functions of cin

      Single Character Input

      Getting Strings from Standard Input

      Using cin.ignore()

      Peeking at and Returning Characters: peek() and putback()

    Outputting with cout

      Flushing the Output

      Functions for Doing Output

      Manipulators, Flags, and Formatting Instructions

    Streams Versus the printf() Function

    File Input and Output

    Using the ofstream

      Condition States

      Opening Files for Input and Output

      Changing the Default Behavior of ofstream on Open

    Binary Versus Text Files

    Command-line Processing

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

18. Creating and Using Namespaces.

    Getting Started

    Resolving Functions and Classes by Name

      Visibility of Variables

      Linkage

      Static Global Variables

    Creating a Namespace

      Declaring and Defining Types

      Defining Functions Outside a Namespace

      Adding New Members

      Nesting Namespaces

    Using a Namespace

    The using Keyword

      The using Directive

      The using Declaration

    The Namespace Alias

    The Unnamed Namespace

    The Standard Namespace std

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

19. Templates.

    What Are Templates?

    Building a Template Definition

      Using the Name

      Implementing the Template

    Passing Instantiated Template Objects to Functions

    Templates and Friends

      Nontemplate Friend Classes and Functions

      General Template Friend Class or Function

    Using Template Items

      Using Specialized Functions

      Static Members and Templates

    The Standard Template Library

      Using Containers

      Understanding Sequence Containers

      Understanding Associative Containers

      Working with the Algorithm Classes

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

20. Handling Errors and Exceptions.

    Bugs, Errors, Mistakes, and Code Rot

      Exceptional Circumstances

    The Idea Behind Exceptions

      The Parts of Exception Handling

      Causing Your Own Exceptions

      Creating an Exception Class

    Placing try Blocks and catch Blocks

    How Catching Exceptions Work

      Using More Than One catch Specification

      Exception Hierarchies

    Data in Exceptions and Naming Exception Objects

    Exceptions and Templates

    Exceptions Without Errors

    A Word About Code Rot

    Bugs and Debugging

      Breakpoints

      Watch Points

      Examining Memory

      Assembler

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

21. What's Next.

    The Preprocessor and the Compiler

    The #define Preprocessor Directive

      Using #define for Constants

      Using #define for Tests

      The #else Precompiler Command

    Inclusion and Inclusion Guards

    Macro Functions

      Why All the Parentheses?

    String Manipulation

      Stringizing

      Concatenation

    Predefined Macros

    The assert() Macro

      Debugging with assert()

      Using assert() Versus Exceptions

      Side Effects

      Class Invariants

      Printing Interim Values

    Inline Functions

    Bit Twiddling

      Operator AND

      Operator OR

      Operator Exclusive OR

      The Complement Operator

      Setting Bits

      Clearing Bits

      Flipping Bits

      Bit Fields

    Programming Style

      Indenting

      Braces

      Long Lines and Function Length

      Structuring switch Statements

      Program Text

      Naming Identifiers

      Spelling and Capitalization of Names

      Comments

      Setting Up Access

      Class Definitions

      include Files

      Using assert()

      Making Items Constant with const

    Next Steps in Your C++ Development

      Where to Get Help and Advice

      Related C++ Topics: Managed C++, C#, and Microsoft's .NET

      Staying in Touch

    Summary

    Q&A

    Workshop

      Quiz

      Exercises

    Week 3 In Review

A. Working with Numbers: Binary and Hexadecimal.

    Using Other Bases

    Converting to Different Bases

      Binary

      Why Base 2?

      Bits, Bytes, and Nybbles

      What's a KB?

      Binary Numbers

    Hexadecimal

B. C++ Keywords.

C. Operator Precedence.

D. Answers.

    Day 1

      Quiz

      Exercises

    Day 2

      Quiz

      Exercises

    Day 3

      Quiz

      Exercises

    Day 4

      Quiz

      Exercises

    Day 5

      Quiz

      Exercises

    Day 6

      Quiz

      Exercises

    Day 7

      Quiz

      Exercises

    Day 8

      Quiz

      Exercises

    Day 9

      Quiz

      Exercises

    Day 10

      Quiz

      Exercises

    Day 11

      Quiz

      Exercises

    Day 12

      Quiz

      Exercises

    Day 13

      Quiz

      Exercises

    Day 14

      Quiz

      Exercises

    Day 15

      Quiz

      Exercises

    Day 16

      Quiz

      Exercises

    Day 17

      Quiz

      Exercises

    Day 18

      Quiz

      Exercises

    Day 19

      Quiz

      Exercises

    Day 20

      Quiz

      Exercises

    Day 21

      Quiz

      Exercises

E. A Look at Linked Lists.

    The Component Parts of Your Linked List

Index.

Updates

Errata

Get Adobe Acrobat ReaderNote: You will need the Free Adobe Acrobat Reader to view the file(s) for the book. If you do not already have Acrobat installed on your machine, click the "Get Acrobat Reader" button to download and install.


Click on the links below to display the PDF file in a new window. Right-click on the link and select Save As if you want to download it to your hard drive.

0672327112errata.pdf (52 KB)

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020