Which of the following statements creates a tuple containing four items?

A. t = [1: 2: 3: 4]
B. t = {1, 2, 3, 4}
C. t = <1; 2; 3; 4>
D. t = (1, 2, 3, 4)

Answer: D

Computer Science & Information Technology

You might also like to view...

Applying the design principle of __________ serves to add visual interest and draw attention.

a. linear b. proximity c. contrast d. alignment

Computer Science & Information Technology

Fill in the blanks for the HTML code below to create a link to your favorite Web site. Use a valid URL.

``` My Favorite Web site<> ```

Computer Science & Information Technology