최신Python Institute Certified Associate in Python Programming - PCAP-31-03무료샘플문제
문제1
Which of the following statements are true? (Select two answers)
Which of the following statements are true? (Select two answers)
정답: B,D
문제2
Which of the following invocations are valid? (Select two answers)
Which of the following invocations are valid? (Select two answers)
정답: A,C
문제3
What is the expected output of the following snippet?

What is the expected output of the following snippet?

정답: A
문제4
Python strings can be "glued" together using the operator:
Python strings can be "glued" together using the operator:
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제5
How many elements will the list2 list contain after execution of the following snippet?
list1 = [False for i in range (1, 10) ]
list2 = list1 [-1:1:-1]
How many elements will the list2 list contain after execution of the following snippet?
list1 = [False for i in range (1, 10) ]
list2 = list1 [-1:1:-1]
정답: A
설명: (ExamPassdump 회원만 볼 수 있음)
문제6
What is the expected behavior of the following snippet?

It will:
What is the expected behavior of the following snippet?

It will:
정답: B
설명: (ExamPassdump 회원만 볼 수 있음)
문제7
Which of the following lines of code will work flawlessly when put independently inside the add_new () method in order to make the snippet's output equal to [0, 1, 1] ? (Select two answers)

Which of the following lines of code will work flawlessly when put independently inside the add_new () method in order to make the snippet's output equal to [0, 1, 1] ? (Select two answers)

정답: C,D
문제8
What is the expected output of the following code if the file named existing_text_file is a non-zero length text file located inside the working directory?

What is the expected output of the following code if the file named existing_text_file is a non-zero length text file located inside the working directory?

정답: D
문제9
The first parameter of each method:
The first parameter of each method:
정답: C
설명: (ExamPassdump 회원만 볼 수 있음)
문제10
What is the expected behavior of the following code?

What is the expected behavior of the following code?

정답: A
문제11
Which of the following expressions evaluate to True? (Select two answers)
Which of the following expressions evaluate to True? (Select two answers)
정답: B,C
문제12
What is the expected output of the following snippet?

What is the expected output of the following snippet?

정답: A
문제13
If you need to serve two different exceptions called Ex1 and Ex2 in one except branch, you can write:
If you need to serve two different exceptions called Ex1 and Ex2 in one except branch, you can write:
정답: B