Lesson 4: Intro to C++ Programming Flashcards
1
Q
It is a general-purpose programming and coding language.
A
C++
2
Q
Who developed C++ as an extension to the C language?
A
Bjarne Stroustrup
3
Q
What are the 5 uses of C++?
A
- Develop computer software
- Create general system software
- Build drivers for computer devices
- Software for servers and applications
- Creation of video games
4
Q
What are the 2 things you need to start using C++?
A
A text editor and a compiler
5
Q
What are the 5 main parts of Code::Blocks 20.03?
A
- Toolbar
- Management
- Editor
- Logs
- Status Bar
6
Q
It is a preprocessor directive that tells the preprocessor to include header files in the program.
A
include
7
Q
It is a header file that contains functions for input/output operations.
A
iostream
8
Q
It means that we can use names for objects and variables from the standard library.
A
using namespace std
9
Q
What ends the main function?
A
return 0