To copy every file in a given directory, reference file name __________.
a. ?
b. *
c. all
d. none of the above
b. *
You might also like to view...
Which of the following statements is (are) true?
A. We can use inheritance to customize existing software. B. A base class specifies commonality. C. A base class can be modified without modifying derived classes D. A derived class can be modified without modifying its derived class. a) All of the above b) None of the above c) A, B and C d) A, B and D
Which of the following statements is false?
a. The function modify_elements multiplies each element of its list argument by 2: def modify_elements(items): """"Multiplies all element values in items by 2.""" for i in range(len(items)): items[i] *= 2 b. Part (a)’s function modify_elements’ items parameter receives a reference to the original list, so the statement in the loop’s suite modifies each element in the original list object. c. When you pass a tuple to a function, attempting to modify the tuple’s immutable elements results in a TypeError. d. Tuples may contain mutable objects, such as lists, but those objects cannot be modified when a tuple is passed to a function.
Arrays _________.
a) are components b) always have one dimension c) keep data in sorted order at all times d) are objects
Which key is used to stop debugging?
A. F5 B. Shift-F5 C. F11 D. Ctrl-F10