Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

C++ for Non C Programmers

Price
2,925 USD
5 Days
PLCC-235
Classroom Training, Online Training
Other

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.
 

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

  • Date: 24-Feb-2025 to 28-Feb-2025
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 2,925 USD
  • Date: 21-Apr-2025 to 25-Apr-2025
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 2,925 USD
  • Date: 16-Jun-2025 to 20-Jun-2025
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 2,925 USD
View Global Schedule

Course Description

Overview

This course is a comprehensive hands-on introduction to object-oriented programming in C++ for non-C programmers. Emphasis is placed on the features of C++ that support effective modeling of the problem domain and reuse of code. The course consists of two modules. The first module introduces the core C features of C++, with simplified input/output through I/O streams. The module begins with simple hands-on programming using C++ to do input, computation, and output. The C++ data types are covered, and simple if tests and loops are covered. C++ program structure is introduced. Pointers, addressing, and arrays are discussed. Structures and unions are covered. In the second module, object-oriented concepts are introduced. The C++ class construct is introduced and its key features elaborated step-by-step, providing full implementation of abstract data types. C++ memory management is discussed. Function and operator overloading and the use of references are covered. The scope and access control mechanisms of C++ are described. Inheritance is introduced. The use of virtual functions to implement polymorphism is discussed. Extensive programming examples and exercises are provided. The course is current to ANSI standard C++ and is designed so that it can be taught in any environment with an ANSI C++ compiler.
 

Objectives

Upon completion of the C++ course, students will be able to:
  • Recognize the structure and flow of a C++ program
  • Utilize primitive data types in C++ programs
  • Apply C++ operators, expressions and flow control statements
  • Manipulate functions, function parameters and return values
  • Organize data by defining arrays and structures
  • Employ pointers to manage variables and data structures
  • Define classes, attributes and methods
  • Use constructors and destructors to manage object creation
  • Take advantage of inheritance to manage object oriented systems
  • Define virtual and pure virtual functions
  • Manage memory using new and delete
  • Utilize casting at the primitive and object level
  • Overload class methods as well as operators
  • Cope with errors through exception handling
  • Reference the Standard Template Library

Audience

Non-C programmers who are moving to object oriented programming in C++.
 

Prerequisites

    Knowledge of a programming language.
     

Topics

Module 1. Introduction to C++ Chapter 1 First C++ Programs
  • Hello, World
  • Compiling and Running
  • C++ Program Components
  • Another C++ Program (Preview)
  • I/O in C++
  • Exercise
  • Answer
  • Variables
  • Expressions
  • Assignment
  • Using C++ as a Calculator
  • Sample Program
  • Input in C++
  • Echo Program
  • Lab 1
  • Summary
Chapter 2 Data Types and Operators
  • Data Types
  • Strong Typing
  • Typing in C++
  • Conversions in C++
  • Typing in Visual Basic
  • Primitive C++ Data Types
  • Signed and Unsigned
  • Twos Complement
  • C++ Integer Type Ranges
  • IntegerRange.cpp
  • Integer Constants
  • Variables in C++
  • Const Variables
  • Preprocessor Macros
  • Identifiers
  • Floating Point Numbers
  • Floating Point Data Types
  • Calculations
  • Integer Operations
  • Increment and Decrement
  • Precedence of Integer Operations
  • Floating Point Operations
  • op=
  • Mixed Data Types
  • Automatic Conversion
  • Cast
  • Math Library
  • Lab 2
  • Summary
Chapter 3 Logical and Bit Operations
  • Bool Variables
  • Bool Operations and Truth Tables
  • Relational Operators
  • If Tests
  • Flow Chart
  • If Test Example
  • A Pitfall
  • Bitwise Operators
  • Bitwise Operator Truth Tables
  • Short Circuit Evaluation
  • Shifting
  • Examples of Shifting
  • Masking
  • Lab 3
  • Summary
Chapter 4 Loops and Structured Programming
  • Loops
  • Example
  • While Loop
  • Infinite Loops
  • Flowcharting a While Loop
  • Indenting and Curly Braces
  • Accumulating a Total
  • Total Using a Sentinel
  • Counted Loops
  • Total Using a Counter
  • For Loops
  • Total Using a For Loop (Up)
  • Total Using a For Loop (Down)
  • Comparing For and While Loops
  • Variable Scope
  • Loops and If Tests Together
  • Nested If Statements
  • Review of Statements
  • Compound Statements
  • Structured Programming
  • Object-Oriented Programming
  • Lab 4
  • Summary
Chapter 5 Functions and Program Structure
  • Basics of Functions
  • Example
  • Function Prototypes and Type Checking
  • Returning Value
  • Argument Passing
  • Pass-by-Reference
  • Alternative to Pass-by-Reference
  • External Variables
  • Extern Example
  • Block Structure
  • Scope Rules
  • Scope Example
  • Header Files
  • Preprocessor Directives
  • Conditional Compilation
  • Recursion
  • Lab 5
  • Summary
Chapter 6 Pointers and Arrays
  • Pointers and Addresses
  • Pointers and Function Arguments
  • Pointers and Arrays
  • Array Example
  • Address Arithmetic
  • Pointer Math Example
  • Dynamic Memory Management
  • Using malloc and free
  • Dynamic Memory Example
  • Array of Pointers
  • Strings
  • String Functions
  • Array of Strings
  • Command Line Arguments
  • Command Line Argument Demo
  • Pointers to Functions (Optional)
  • Lab 6
  • Summary
Chapter 7 Structures and Unions
  • Fundamentals of Structures
  • Structure Declaration
  • Structures and Functions
  • Structure Example
  • Typedef
  • Arrays of Structures
  • Array of Structures Initialization
  • Array of Structures Example
  • Unions
  • Lab 7
  • Summary
Module 2. Object-Oriented C++ Programming Fundamentals Chapter 1 Concepts of Object-Oriented Programming
  • Object
  • State and Behavior
  • Abstraction
  • Encapsulation
  • Class and Instantiation
  • Abstract Data Types
  • Abstract Data Type Example
  • Methods
  • Invoking Methods
  • Messages
  • Class Inheritance
  • Polymorphism
  • Summary
Chapter 2 Classes in C++
  • C Data Encapsulation Example
  • Data Encapsulation in C
  • The C++ Class
  • Example of C++ Class Specification
  • Structures and Classes in C++
  • Implementation of a C++ Class
  • Demo: Use of a C++ Class
  • Fixed Example
  • this Pointer
  • Code Organization
  • Scope Resolution Operator
  • Abstract Data Types
  • Test Programs for C++ Classes
  • Lab 2A
  • Lab 2B
  • Summary
Chapter 3 Functions in C++
  • Function Prototypes in C++
  • Strong Type Checking
  • Conversion of Parameters
  • Inline Functions
  • Inline Functions in Header Files
  • Default Arguments
  • Function Overloading
  • Argument Matching
  • Argument Matching through Promotion
  • Match through Type Conversion
  • Call By Value
  • Lab 3
  • Summary
Chapter 4 Constructors and Destructors
  • The Problem of Initialization
  • Constructors and Initialization
  • Constructor in Stack Class
  • Object Creation and Destruction
  • Destructors
  • Multiple Constructors
  • String Class Implementation
  • String Class Demo
  • Hidden Constructors
  • Using a Default Argument
  • Lab 4A
  • Lab 4B
  • Summary
Chapter 5: Memory Management in C++
  • Why Is Memory Management Important in C++?
  • Choices for an Object's Memory
  • Typical Memory Layout
  • Free Store Allocation
  • new Operator
  • Memory Allocation Errors
  • new vs. malloc
  • delete Operator
  • Destructor (Review)
  • Hiding Memory Management
  • String Class Specification (Version 2)
  • String Class Implementation
  • String Class Demo
  • String Class Bug
  • String Class Demo Workaround
  • String Class Exerciser Program
  • Exerciser Program Sample Run
  • Lab 5
  • Summary
Chapter 6 References and Argument Passing in C++
  • Variables
  • Argument Passing
  • Call-by-Value
  • Reference Declarations
  • Call-by-Reference
  • Copy Constructor
  • Default Copy Constructor
  • Bug in String Class
  • Specification of String Class
  • Implementation of String Class
  • Test Program
  • Output of Test Program
  • Review of Constant Types
  • Constants and Arguments
  • Chains of Function Calls
  • const Objects and Member Functions
  • Lab 6A
  • Lab 6B
  • Lab 6C
  • Summary
Chapter 7 Operator Overloading, Initialization, and Assignment
  • Operator Overloading
  • Operator Functions
  • Concatenation in String Class – Demo
  • Semantics of return
  • Returning a Temporary Object
  • Returning a Reference
  • Initialization vs. Assignment
  • Semantics of Assignment
  • Assignment
  • Assignment Bug
  • Overloading =
  • String Assignment Demo
  • Review of this Pointer
  • Type Conversions
  • Conversion by Construction
  • Conversion Examples
  • Conversion Example Output
  • Overloading Cast Operator
  • Test Program
  • Lab 7
  • Summary
Chapter 8 Scope and Access Control
  • Scoping in C++
  • Block and Function Scope
  • File and Global Scope
  • Class Scope
  • Constant Types and Scope
  • Enumeration Types
  • Enumeration Types and Class Scope
  • :: for Global Data
  • Static Class Members
  • Initialization of Static Member
  • Static Function Class Members
  • Static Member Example
  • Access Control
  • Friend Functions
  • Invoking Member and Friend Functions
  • Implementing a Friend Function
  • Efficiency and Friend Functions
  • Lab 8
  • Extra Credit
  • Summary
Chapter 9 Introduction to Inheritance
  • Inheritance Concept
  • Inheritance Example
  • Inheritance in C++
  • Employee Example
  • Employee Test Program
  • Protected Members
  • Base Class Initializer List
  • Composition
  • Member Initializer List
  • Order of Initialization
  • Inheritance vs. Composition
  • Lab 9A
  • Lab 9B
  • Summary
Chapter 10 Polymorphism and Virtual Functions
  • A Case for Polymorphism
  • Dynamic Binding
  • Pointer Conversion in Inheritance
  • Polymorphism Using Dynamic Binding
  • Virtual Function Specification
  • Invoking Virtual Functions
  • Virtual Functions Demo
  • Vtable
  • Virtual Destructors
  • Abstract Class Using Pure Virtual Function
  • Employee as an Abstract Class
  • Heterogeneous Collections
  • Polymorphic Code Example
  • Lab 10
  • Summary
Appendix A Reading List
 
2023 Top 20 Training Industry Company - IT Training

Need Help?

Call us at 877-206-0106 or e-mail us at info@learnquest.com

Personalized Solutions

Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

Contact Us

Need Help?

Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

Talk to us

Stretch your Training Budget into 2025

Maximize learning well into next year with a flexible pre-paid spending plan.

Learn More Now

Self-Paced Training Info

Learn at your own pace with anytime, anywhere training

  • Same in-demand topics as instructor-led public and private classes.
  • Standalone learning or supplemental reinforcement.
  • e-Learning content varies by course and technology.
  • View the Self-Paced version of this outline and what is included in the SPVC course.
  • Learn more about e-Learning

Course Added To Shopping Cart

bla

bla

bla

bla

bla

bla

Self-Paced Training Terms & Conditions

??spvc-wbt-warning??

Exam Terms & Conditions

??exam-warning??
??group-training-form-area??
??how-can-we-help-you-area??
??personalized-form-area??
??request-quote-area??

Sorry, there are no classes that meet your criteria.

Please contact us to schedule a class.
Close

self-paced
STOP! Before You Leave

Save 0% on this course!

Take advantage of our online-only offer & save 0% on any course !

Promo Code skip0 will be applied to your registration

Close
Nothing yet
here's the message from the cart

To view the cart, you can click "View Cart" on the right side of the heading on each page
Add to cart clicker.

Purchase Information

??elearning-coursenumber?? ??coursename??
View Cart

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

If you would like to request a quote for 5 or more students, please contact CustomerService@learnquest.com to be assigned an account representative.

Need more Information?

Speak with our training specialists to continue your learning journey.

 

Delivery Formats

Close

By submitting this form, I agree to LearnQuest's Terms and Conditions

heres the new schedule
This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.