a. Is it a procedural or a declarative language?
It is a procedural language
b. Is it a high-level or a low-level language?
It has a combination of high-level and low-level features
c. Is it a compiled language or an interpreted language?
It is a compiled language
d. Is it an object-oriented language?
It is an object-oriented language
e. Is it an event-driven language?
No, I do not believe C++ is event-driven
f. When was the language developed?
It was developed by Bjarne Stroustrup starting in 1979
g. For what purpose was the language developed?
C++ was originally developed as an enhancement to the C language which was designed for system software, but also had been commonly used for application software.
h. Who developed the language?
Bjarne Stroustrup developed C++
i. Is the language typically used on micro, mini, or mainframe computers?
It has many different applications, but can be used for both system and application software
j. Share an online tutorial for us to better understand how to write code in this programming language.
http://www.cplusplus.com/doc/tutorial/ is an online tutorial for C++ to begin to learn the basics
http://www.youtube.com/watch?v=iBbvuUWdlWI for a youtube tutorial.
k. What it looks like:
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}