In this lesson, students learn about vectors, a data structure that stores elements of a given type in a linear arrangement. Similar to lists in Python or ArrayLists in Java, vectors are dynamically resizable, allowing elements to be inserted, removed, and updated without the need of allocating additional memory for its elements.
Students will be able to:
In this lesson, students learn how to provide default values for function parameters. Default parameters are used if a function is called without passing arguments. If an argument is provided, the default value is ignored.
Students will be able to:
In this lesson, students will be introduced to the idea of a struct. A struct is a basic C++ element that is used to store multiple data elements (members) in a single variable. Students will explore how to create and access structs in this lesson.
Students will be able to:
In this lesson, students will learn how to read and write data from a file in order to open up more options to process larger volumes of data.
Students will be able to:
In this lesson, students will learn how to write try/catch statements to handle built-in errors as well as catch custom errors in order to have programs run efficiently and enhance user experiences.
Students will be able to: