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...

Which of the following statements about arrays are true?

I. Arrays are groups of variables that all have the same type. II. Elements are located by index III. The length of an array c is determined by the expression c.Length. IV. The zeroth element of array c is specified by c(0). a) I, III, and IV. b) I, II, and IV. c) both III and IV. d) I, II, III, and IV.

Computer Science & Information Technology

What are the advantages of the HSB color model?

What will be an ideal response?

Computer Science & Information Technology

PowerPoint's varied themes and ____ help give presentations a unified and aesthetically pleasing look.

A. layouts B. panes C. tabs D. slides

Computer Science & Information Technology

What privilege allows the user to select records?

A. CREATE B. ALTER C. INDEX D. SELECT

Computer Science & Information Technology