M3S1 Part 1 Flashcards
1
Q
is an extension of C
A
C++
2
Q
a statically typed, compiled, general-purpose, casesensitive, free-form programming language that supports
procedural, object-oriented, and generic programming.
A
C++
3
Q
C++ is regarded as a
A
middle-level language
4
Q
comprises
a combination of both high-level and low-level language
features.
A
C++
5
Q
C++ was developed by
A
Bjarne
Stroustrup starting in 1979 at Bell Labs
in Murray Hill, New Jersey,
6
Q
C++ og name
A
C with Classes
7
Q
when was C with Classes get renamed into C++
A
1983
8
Q
Pre-processor directive
A
#include using namespace std;
9
Q
Comment
A
//This is my first program in C++
10
Q
main() function
A
int main()
11
Q
Start of the program
A
{
12
Q
Output statement
A
cout
13
Q
Return
A
return 0;
14
Q
End of the program
A
}
15
Q
C++ Basic Structure:
A
- Pre-processor directive
- Comment
- main() function
- Start of the program
- Output statement
- Return
- End of the program