What is the expected result of the following code?
정답: B
설명: (Krdump 회원만 볼 수 있음)
문제 2
Which of the following sentences are true? (Select two answers.)
정답: A,D
문제 3
Which of the following functions can be invoked with two arguments?
정답: A
설명: (Krdump 회원만 볼 수 있음)
문제 4
Python Is an example of which programming language category?
정답: C
설명: (Krdump 회원만 볼 수 있음)
문제 5
Assuming that the phone_dir dictionary contains name:number pairs, arrange the code boxes to create a valid line of code which adds Oliver Twist's phone number (5551122333) to the directory.
정답:
phone_dir["Oliver Twist"] = ["5551122333"] Explanation: To correctly add Oliver Twist's phone number to the phone_dir dictionary, the code must follow this phone_dir["Oliver Twist"] = ["5551122333"] Now, let's match that with your code boxes and arrange them: * phone_dir * [ * "Oliver Twist" * ] * = * [ * "5551122333" * ] Final Order:phone_dir # [ # "Oliver Twist" # ] # = # [ # "5551122333" # ]