最新的GIAC Python Coder (GPYC) - GPYC免費考試真題
What does executing the following code in Python 3 result in?
'\x0066'
'\x0066'
正確答案: D
What is the output of the following when executed in a Python shell?


正確答案: B
If the variable "example" contains a handle to a subprocess object, which of the following would show all of the possible results of running the subprocess?
正確答案: C
What will be the value of the i variable when the while loop finishes its execution0 i = 0 while i != 0:
1 = 1-1
else:
i = i + 1
1 = 1-1
else:
i = i + 1
正確答案: B
When accessing the hard drive directly, how would the character *B' be stored?


正確答案: B
How many bytes are used to store a 16 bit Unicode character?
正確答案: C
What happens if a programmer fails to build exception handling into a program, and the program encounters an unexpected error condition?
正確答案: B
Review the following Python code:


正確答案: C