Lesson 4: Intro to C++ Programming Flashcards

1
Q

It is a general-purpose programming and coding language.

A

C++

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Who developed C++ as an extension to the C language?

A

Bjarne Stroustrup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the 5 uses of C++?

A
  1. Develop computer software
  2. Create general system software
  3. Build drivers for computer devices
  4. Software for servers and applications
  5. Creation of video games
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the 2 things you need to start using C++?

A

A text editor and a compiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the 5 main parts of Code::Blocks 20.03?

A
  1. Toolbar
  2. Management
  3. Editor
  4. Logs
  5. Status Bar
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It is a preprocessor directive that tells the preprocessor to include header files in the program.

A

include

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

It is a header file that contains functions for input/output operations.

A

iostream

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

It means that we can use names for objects and variables from the standard library.

A

using namespace std

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What ends the main function?

A

return 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly