C++ was developed by ________.

(a) Bjarne Stroustrup
(b) Ada Lovelace
(c) Blaise Pascal
(d) Ken Thompson


(a) Bjarne Stroustrup

Computer Science & Information Technology

You might also like to view...

Which of the following statements is true?

a. Performing a task in a program requires a method. b. A method houses the program statements that actually perform its tasks. c. The method hides its statements from its user, just as the accelerator pedal of a car hides from the driver the mechanisms of making the car go faster. d All of the above.

Computer Science & Information Technology

Analyze the following code.

``` class TempClass { int i; public void TempClass(int j) { int i = j; } } public class C { public static void main(String[] args) { TempClass temp = new TempClass(2); } } ``` a. The program has a compile error because TempClass does not have a default constructor. b. The program has a compile error because TempClass does not have a constructor with an int argument. c. The program compiles fine, but it does not run because class C is not public. d. The program compiles and runs fine.

Computer Science & Information Technology

What will the output for the following statements look like when the variable name is "Bill" and the variable age is "31"?

OUTPUT name

Computer Science & Information Technology

You can't convert a domain local group to a universal group.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology