Ratings & reviews

4.4114 ratings

John B.

7 days ago

Excellent!

Michael C.

28 days ago

Some of the questions had the correct answers in the options but that was not the correct answer to select,

ፈሪስ ከይረድን ኑ.

32 days ago

0912972524

60%
24%
14%
2%
1%
info

Complete all chapters to get certificate

0%

Getting Started

chevron

In this section, we dive into learning the structure of a default C++ program

Why to Learn C++

What is C++

Entry Point of a Program

Standard Library and Files

Preprocessor Directives

The FIrst Program

Variables and Data Types

chevron

In this section, we will learn how to manipulate different variables.

Introduction to Variables

Data Types

Numerical Data Types

String

Arrays

Keywords sizeof(), auto and typedef

Challenge: Working with the Array

Operators

chevron

In this section, we will learn how to equate and compare variables, and use mathematical and bitwise operators.

Simple Operators

A Little Math

Logical Operators

Compound Assignment Operator

Bitwise Shift Operators

Challenge: Math Basics

Program Flow

chevron

In this section, we will learn how to control the flow of our programs.

If...else Statement

Ternary Operator

Switch Statement

While Loop

Do...while Loop

For Loop

Challenge: The First For Loop

Functions

chevron

In this section, we will explore the concept of functions, and how to create and call them.

What are Functions?

Type of Functions

Return Statement

Functions With Arguments

Overloaded Function

Challenge: Simple Function