What is the output from the following?
```
>>> first = "Abe"
>>> last = "Lincoln"
>>> print first + “ “ +last
```
Abe Lincoln
Computer Science & Information Technology
You might also like to view...
#include
a. is a variable declaration b. an executable statement c. an include directive d. illegal code
Computer Science & Information Technology
What is wrong with the following statement? cout << “Hello to everyone\n”
a. cout should be count b. missing a semicolon c. missing a “ d. missing a (
Computer Science & Information Technology