What is the output from the following?

```
>>> first = "Abe"
>>> last = "Lincoln"
>>> swap = first
>>> first = last
>>> last = swap
>>> print first + " " + last
```

Lincoln Abe

Computer Science & Information Technology

You might also like to view...

A denial-of-service attack is one of the most common attacks on a system

Indicate whether the statement is true or false.

Computer Science & Information Technology

Which of the following types of attack is associated with man-in-the-middle?

A. Brute force B. Spoofing C. DDoS D. Zero-day

Computer Science & Information Technology