Home > Store

Core C++: A Software Engineering Approach

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

Core C++: A Software Engineering Approach

Book

  • This product currently is not for sale.
Not for Sale

About

Features

  • Application of software engineering principles to C++ programming.
  • A strong emphasis on writing code—Easier future maintenance and modification.
  • Practical understanding of object-oriented principles before teaching the language.
  • Insight into the latest ANSI/ISO C++ features.
  • Hundreds of realistic, to-the-point code examples.
  • Levity Breaks—Stories and vignettes that illustrate key topics, concepts, and ideas through humor.
  • Practical techniques—Used by professional developers.
  • Robust, thoroughly tested sample code and realistic examples.
  • Focus on the cutting-edge technologies you need to master today.
  • Expert advice—Helps you build superior software.

Description

  • Copyright 2001
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-085729-7
  • ISBN-13: 978-0-13-085729-3

Master C++ the right way: From the software engineering perspective!

  • Master C++ the right way!
  • Object-oriented approach to coding throughout
  • Harness C++'s strengths; avoid its dangers
  • Build more easily maintainable code

Build more powerful, robust, maintainable C++ software!

For developers with experience in any language, Victor Shtern's Core C++ teaches C++ the right way: by applying the best software engineering practices and methodologies to programming in C++. Even if you've already worked with C++, this comprehensive book will show you how to build code that is more robust, far easier to maintain and modify, and far more valuable.

Shtern's book teaches object-oriented principles before teaching the language, helping you derive all the power of object-oriented development to build superior software. Learn how to make design decisions based on key criteria such as information hiding and pushing responsibilities from clients down to server classes. Then, master every key feature of ANSI/ISO C++ from a software engineer's perspective: classes, methods, const modifiers, dynamic memory management, class composition, inheritance, polymorphism, I/O, and much more.

If you want to build outstanding C++ software, coding skill isn't enough. Objects aren't enough. You must design, think, and program using today's best software engineering practices — and with Core C++, you will.

So, Core C++ delivers:

  • The application of software engineering principles to C++ programming
  • A strong emphasis on writing code for easier future maintainance and modification
  • A practical understanding of object-oriented principles before teaching the language
  • Insight into the latest ANSI/ISO C++ features
  • Thorough explanations that respect your intelligence
  • Hundreds of realistic, to-the-point code examples
  • Levity Breaks: Stories and vignettes that illustrate key topics, concepts, and ideas through humor

Every core series book:

  • Demonstrates practical techniques used by professional developers.
  • Features robust, thoroughly tested sample code and realistic examples.
  • Focuses on the cutting-edge technologies you need to master today.
  • Provides expert advice that will help you build superior software.

Sample Content

Downloadable Sample Chapter

Click here for a sample chapter for this book: 0130857297.pdf

Table of Contents

(Note: All chapters conclude with a Summary.)

I. INTRODUCTION TO PROGRAMMING WITH C++.

1. Object-Oriented Approach: What's So Good about It?

The Origins of the Software Crisis. Remedy 1: Eliminating Programmers. Remedy 2: Improved Management Techniques. The Waterfall Method. Rapid Prototyping. Remedy 3: Designing a Complex and Verbose Language. The Object-Oriented Approach: Are We Getting Something for Nothing? What Does the Designer Do? Design Quality: Cohesion. Design Quality: Coupling. Design Quality: Binding Together Data and Functions. Design Quality: Information Hiding and Encapsulation. Design Issue: Name Conflicts. Design Issue: Object Initialization. What Is an Object, Anyway? Advantages of Using Objects. Characteristics of the C++ Programming Language. C Objectives: Performance, Readability, Beauty, and Portability. C++ Objectives: Classes with Backward Compatibility with C.

2. Getting Started Quickly: A Brief Overview of C++.

The Basic Program Structure. Preprocessor Directives. Comments. Declarations and Definitions. Statements and Expressions. Functions and Function Calls. Classes. Dealing with Program Development Tools.

3. Working with C++ Data and Expressions.

Values and Their Types. Integral Types. Integer Type Qualifiers. Characters. Boolean Values. Floating Point Types. Working with C++ Expressions. High-Priority Operators. Arithmetic Operators. Shift Operators. Bitwise Logical Operators. Relational and Equality Operators. Logical Operators. Assignment Operators. Conditional Operator. Comma Operator. Mixed Expressions: Hidden Dangers.

4. C++ CONTROL Flow.

Statements and Expressions. Conditional Statements. Standard Forms of Conditional Statements. Common Errors in Conditional Statements. Nested Conditionals and Their Optimization. Iteration. The Use of the WHILE Loop. Iterations with the DO-WHILE Loop. Iterations with the FOR Loop. C++ Jump Statements. The BREAK Statement. The CONTINUE Statement. The GOTO Statement. The RETURN and EXIT Jumps. The SWITCH Statement.

5. Aggregation with Programmer-Defined Data Types.

Arrays as Homogeneous Aggregates. Arrays as Vectors of Values. Defining C++ Arrays. Operations over Arrays. Index Validity Checking. Multidimensional Arrays. Defining Character Arrays. Operations on Character Arrays. String Functions and Memory Corruption. Two-Dimensional Character Arrays. Array Overflow in Insertion Algorithms. Defining Array Types. Structures as Heterogeneous Aggregates. Defining Structures as Programmer-Defined Types. Creating and Initializing Structure Variables. Hierarchical Structures and Their Components. Operations on Structure Variables. Defining Structures in Multifile Programs. Unions, Enumerations, and Bit Fields. Unions. Enumerations. Bit Fields.

6. Memory Management: The Stack and the Heap.

Name Scope as a Tool for Cooperation. C++ Lexical Scopes. Name Conflicts Within the Same Scope. Using Same Names in Independent Scopes. Using Same Name in Nested Scopes. Scope of Loop Variables. Memory Management: Storage Classes. Automatic Variables. External Variables. Static Variables. Memory Management: Using Heap. C++ Pointers as Typed Variables. Allocating Memory on the Heap. Arrays and Pointers. Dynamic Arrays. Dynamic Structures. Input and Output with Disk Files. Output to File. Input from File. Input/Output File Objects.

II. OBJECT-ORIENTED PROGRAMMING WITH C++.

7. Programming with C++ Functions.

C++ Functions as Modularization Tools. Function Declarations. Function Definitions. Function Calls. Argument Promotions and Conversions. Parameter Passing in C++. Calling by Value. Calling by Pointer. Parameter Passing in C++: Calling by Reference. Structures. Arrays. More on Type Conversions. Returning a Value from a Function. Inline Functions. Parameters With Default Values. Function Name Overloading.

8. Object-Oriented Programming with Functions.

Cohesion. Coupling. Implicit Coupling. Explicit Coupling. How to Reduce the Intensity of Coupling. Data Encapsulation. Information Hiding. A Larger Example of Encapsulation. Shortcomings of Encapsulation with Functions.

9. C++ Class as a Unit of Modularization.

Basic Class Syntax. Binding Together Data and Operations. Elimination of Name Conflicts. Implementing Member Functions Outside of Class. Defining Class Objects of Different Storage Classes. Controlling Access to Class Members. Initialization of Object Instances. Constructors as Member Functions. Default Constructors. Copy Constructors. Conversion Constructors. Destructors. Timing of Constructor and Destructor Invocations. Class Scope and the Overriding of Names in Nested Scopes. Memory Management with Operators and Function Calls. Using Returned Objects in Client Code. Returning Pointers and References. Returning Objects. More on the const Keyword. Static Class Members. Using Global Variables as Class Characteristics. The Fourth Meaning of the static Keyword. Initialization of Static Data Members. Static Member Functions.

10. Operator Functions: Another Good Idea.

Overloading of Operators. Limitations on Operator Overloading. What Operators Cannot Be Overloaded. Limitations on Return Types. Limitations on the Number of Parameters. Limitations on Operator Precedence. Overloaded Operators as Class Members. Replacing a Global Function with a Class Member. Using Class Members for Chain Operations. Using the const Keyword. Case Study: Rational Numbers. Mixed Types as Parameters. Friend Functions.

11. Constructors and Destructors: Potential Trouble.

More on Passing Objects by Value. Operator Overloading for Nonnumeric Classes. The String Class. Dynamic Management of Heap Memory. Protecting Object Heap Data from Client Code. Overloaded Concatenation Operator. Preventing Memory Leaks. Protecting Program Integrity. How to Get There from Here. More on the Copy Constructor. Remedies for the Integrity Problem. Copy Semantics and Value Semantics. Programmer-Defined Copy Constructor. Return by Value. Limits for Copy Constructor Effectiveness. Overloading the Assignment Operator. Problems with System-Supplied Assignment Operator. Overloaded Assignment: The First Version (Memory Leak). Overloaded Assignment: The Next Version (Self-Assignment). Overloaded Assignment: Another Version (Chain Expression). Performance Considerations. First Remedy: More Overloading. Second Remedy: Return by Reference. Practical Considerations: What to Implement.

III. OBJECT-ORIENTED PROGRAMMING WITH AGGREGATION AND INHERITANCE.

12. Composite Classes: Pitfalls and Advantages.

Using Class Objects as Data Members. C++ Syntax for Class Composition. Access to Data Members of Class Data Members. Access to Data Members of Method Parameters. Initialization of Composite Objects. Using the Components' Default Constructors. Using the Member Initialization List. Data Members with Special Properties. Constant Data Members. Reference Data Members. Using Objects as Data Members of Their Own Class. Using a Static Data Member as a Member of Its Own Class. Container Classes. Nested Classes. Friend Classes.

13. Similar Classes: How to Treat Them.

Treating Similar Classes. Merging Subclass Features into One Class. Pushing Responsibility for Program Integrity to the Server. Separate Classes for Each Kind of Server Object. Using C++ Inheritance to Link Related Classes. Syntax of C++ Inheritance. Different Modes of Derivation from the Base Class. Defining and Using Objects of Base and Derived Classes. Accessing Base and Derived Class Services. Accessing Base Components of a Derived Class Object. Public Inheritance. Protected Inheritance. Private Inheritance. Adjusting Access to Base Members in the Derived Class. Default Inheritance Mode. Scope Rules and Name Resolution Under Inheritance. Name Overloading and Name Hiding. Calling a Base Method Hidden by the Derived Class. Using Inheritance for Program Evolution. Constructors and Destructors for Derived Classes. Using Initialization Lists in Derived Class Constructors. Destructors Under Inheritance.

14. Choosing between Inheritance and Composition.

Choosing a Technique for Code Reuse. Example of a Client-Server Relationship between Classes. Reuse Through Human Intelligence: Just Do It Again. Reuse through Buying Services. Code Reuse Through Inheritance. Inheritance with Redefined Functions. Pluses and Minuses of Inheritance and Composition. Unified Modeling Language. The Goals of Using UML. Basic UML: Notation for Classes. Basic UML: Notation for Relationships. Basic UML: Notation for Aggregation and Generalization. Basic UML: Notation for Multiplicity. Case Study: A Rental Store. Classes and Their Associations. On Class Visibility and Division of Responsibilities. Class Visibility and Class Relationships. Pushing Responsibilities to Server Classes. Using Inheritance.

IV. ADVANCED USES OF C++.

15. Virtual Functions and Other Advanced Uses of Inheritance.

Conversions between Nonrelated Classes. Strong Typing and Weak Typing. Conversion Constructors. Casts between Pointers (or References). Conversion Operators. Conversions between Classes Related Through Inheritance. Safe and Unsafe Conversions. Conversions of Pointers and References to Objects. Conversions of Pointer and Reference Arguments. Virtual Functions: Yet Another New Idea. Dynamic Binding: Traditional Approach. Dynamic Binding: Object-Oriented Approach. Dynamic Binding: Virtual Functions. Dynamic and Static Binding. Pure Virtual Functions. Virtual Functions: Destructors. Multiple Inheritance: Several Base Classes. Multiple Inheritance: Access Rules. Conversions between Classes. Multiple Inheritance: Constructors and Destructors. Multiple Inheritance: Ambiguities. Multiple Inheritance: Directed Graph. Multiple Inheritance: Is It Useful?

16. Advanced Uses of Operator Overloading.

Operator Overloading: A Brief Overview. Unary Operators. Increment and Decrement Operators. Postfix Overloaded Operators. Conversion Operators. Subscript and Function Call Operators. The Subscript Operator. Function Call Operator. Input/Output Operators. Overloading Operator >>. Overloading Operator <<.

17. Templates: Yet Another Design Tool.

A Simple Example of a Class Design Reuse. Syntax of Template Class Definition. Template Class Specification. Template Instantiation. Implementing Template Functions. Nested Templates. Template Classes with Several Parameters. Several Type Parameters. Templates with Constant Expression Parameters. Relations between Instantiations of Template Classes. Template Classes as Friends. Nested Template Classes. Templates with Static Members. Template Specializations. Template Functions.

18. Programming with Exceptions.

A Simple Example of Exception Processing. Syntax of C++ Exceptions. Throwing an Exception. Catching an Exception. Claiming an Exception. Rethrowing an Exception. Exceptions with Class Objects. Syntax of Throwing, Claiming, and Catching Objects. Using Inheritance with Exceptions. Standard Library Exceptions. Type Cast Operators. The static_cast Operator. The reinterpret_cast Operator. The const_cast Operator. The dynamic_cast Operator. The typeid Operator.

19. What We Have Learned.

C++ as a Traditional Programming Language. C++ Built-in Data Types. C++ Expressions. C++ Control Flow. C++ as a Modular Language. C++ Aggregate Types: Arrays. C++ Aggregate Types: Structures, Unions, Enumerations. C++ Functions as Modularization Tools. C++ Functions: Parameter Passing. Scope and Storage Class in C++. C++ as an Object-Oriented Language. C++ Classes. Constructors, Destructors, and Overloaded Operators. Class Composition and Inheritance. Virtual Functions and Abstract Classes. Templates. Exceptions. C++ and Competition. C++ and Older Languages. C++ and Virtual Basic. C++ and C. C++ and Java.

Index.

Preface

Preface

Congratulations! You have opened one of the most useful C++ books on the market! It will teach you the strengths and weaknesses of C++, and it will do this better than any other book I have seen. And I have seen a lot of C++ books.

How Is This Different from Other C++ Books?

Of course, any author can claim that his or her book is one of the best on the market. What sets this book apart is its software engineering and maintenance perspective on writing C++ code. Very few C++ books (if any) do that.

Why is the software engineering and maintenance approach important? The point is that C++ changed not only the way we write computer programs, it also changed the way we learn programming languages. In the "good old days," you would spend a day or two looking at the basic syntax of the language, then you would try your hand at simple programming problems. Then you would learn more-complex syntax and would tackle more-complex problems. In a week or two (or in three or four weeks for a really complex language), you would have seen it "all" and could pose as an "expert."

It's different with C++; a very large and very complex language. Granted, it is a superset of C, and you can learn to write simple C programs (and, hence, C++ programs) very quickly. But things are different for complex programs. If the programmer does not know C++ well, a complex C++ program will not be portable; its code will be difficult to reuse, and it will be difficult to maintain.

C++ is a great language—it was created as a general-purpose engineering language, and its design is a clear success. Today, C++ is a language of choice for business, engineering, and even real-time applications. Significant effort was spent on the design of the language, to ensure that C++ programs provide great performance, that they support dynamic memory management, and that different parts of programs could be made relatively independent. Yet in all three areas, things can potentially go wrong even with a syntactically correct and thoroughly tested C++ program:

  1. It can be slow—much slower—than a comparable C program.
  2. It can contain memory management errors that affect the program only when memory usage changes (e.g., another program is installed); these errors might crash the program or quietly produce incorrect results.
  3. It can contain dependencies between different parts of the program so that the maintainer has a hard time understanding the intent of the designer; a poorly written C++ program can be harder to maintain and reuse than a non-object-oriented program.

How important is this? If you are writing a small program that will be used only for a short time, then execution speed, memory management, maintainability, and reusability may not be of great importance. All that counts is your ability to quickly produce a solution. If this solution is not satisfactory, you can cut your losses by throwing the program away and writing another one. For this, any C++ book would do (but hey, you can still buy this one and enjoy its informal style and original insights into the language and its usage).

However, if you are working in a group, creating large applications that cannot be easily discarded and will be maintained for a long time, everything matters. The software engineering and maintenance approach I am advancing in this book is very useful and quite unique. Most books on the market do not mention these issues at all. (Just check their indexes and see for yourself.) When they do, they fail to spell out the techniques that can remedy a tough situation.

Another important characteristic of this book is its approach to the presentation of the material. There are many books on the market that do a good job enumerating the features of the language but do a mediocre job teaching you how to use the language. This is similar to learning a natural language. If you read a French grammar book, will it enable you to speak French? I did not study French, but I did study English, and I know—reading grammar books does not help to develop language fluency. In this book, I will show you how to use and how not to use the language, especially from the point of view of reusability and future maintenance.

Another teaching issue is that C++ features are so intertwined that it is hard to present C++ in a linear fashion, from simple to more complex. Many C++ authors do not even try. They say that these efforts "offend the intelligence of the reader." As a result, they might mention in Chapter 3 a concept that is explained only in Chapter 8, leaving the reader intimidated and frustrated.

My approach to teaching C++ is different. I introduce topics cyclically, first as a general overview and then again at a greater depth, with bells and whistles, and nowhere will your understanding depend on material in later chapters.

I developed my approach through years of teaching working software professionals. At Boston University Metropolitan College, most of my students hold professional jobs and come to classes in the evening in search of professional growth. I also taught numerous professional development seminars and on-site training courses. I developed great empathy for the students and their struggle with language concepts and programming techniques, and I translated this experience into a well-thought-out sequence of topics, examples, counterexamples, and recommendations. I think that my approach to teaching C++ is fairly unique, and you will benefit from it.

Who This Book Is For

This book is written for professionals who are looking for a no-nonsense presentation of practical details combined with a deep understanding of C++ subtleties.

This book is written for you if you are looking for practical details of new technologies with a thorough discussion of their use.

It is written for you if you have experience in other languages and are moving to C++. If you are an experienced C++ programmer, you will find this book useful and sometimes an eye-opener. If this is your first programming book (and this is perfectly all right if it is), you will be well rewarded for the effort spent on reading it.

How This Book Is Organized

I decided not to follow other authors who give you a detailed tour of their books, explaining what is covered and where. Unfamiliar terms, concepts and techniques will not make much sense to you now and will probably be quite boring. This is why I put the summary of the book into its final chapter, Chapter 19, "What We Have Learned," and you can read it if you are interested. It makes more sense there.

Instead, let me tell you what parts of the book might be of interest to you, depending on your background and experience.

  • If you are experienced in C++, Parts 3 and 4 will be most useful to you with their coverage of C++ power and programming pitfalls. If, in your initial study of C++, you were rushed to objects without building your muscle in procedural programming, memory management, and creating maintainable code, a review of Parts 1 and 2 will also be helpful (and interesting).
  • If you are an experienced C programmer who wants to move on to C++, Parts 2, 3, and 4 are written for you. If you briefly review Part 1, you might find the discussion of C from the software engineering and maintenance perspective interesting.
  • If you a programmer with experience in high-level languages other than C, C++, or Java, you should probably start with Part 1.
  • If you are looking for an introduction to programming, you should skip Chapter 1, "Object-Oriented Approach: What's So Good About It?": It will be too abstract for you at this stage. Study the other chapters of Part 1 first, then go back to Chapter 1, and then continue with Parts 2, 3, and 4.

Accessing the Source Code

It is important to practice when you learn a language. Studying C++ without practicing it is as effective as taking a driver education course without driving: You'll learn a lot of useful things about driving, but you will not be able to drive. I strongly recommend that you experiment with the programs discussed in this book. The source code for all the listings can be found at the following site:

ftp://ftp.prenhall.com/pub/ptr/c++_programming.w-050/core_c++

Feedback

This book was thoroughly reviewed, carefully edited, and meticulously proofread. Still, some errors might remain.

In my drive to produce a unique book, I might have made statements that are groundless, unjustified, or plain erroneous. Or, they could be controversial and you might want to debate them.

Please do not hesitate to contact me at the following e-mail address:

shtern@bu.edu

For each typo or error that is pointed out to me or for each valid point regarding a discussion in the book, I promise to mention the names of the first two people who do so in the next edition of this book.

Updates

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