QuestionQ1
Python BasicsWhich of the following produces this list?
[65, 66, 67, 68]
- A range(1,4) + 64
- B for x(4)+64
- C map(ord, ג€ABCDג€)
- D range(4)+ 65
QuestionQ2
Python BasicsWhat output is produced by the following line of code entered in a Python interactive session?
>>> print (int(`1111`,2))
- A 1111
- B 16
- C ג€1111ג€
- D 15
Community Discussion
QuestionQ3
Python BasicsReview this code:

What output does it produce?
- A (1, 0)
- B (1,)
- C (256,)
- D (\x01, \x00)
Community Discussion
QuestionQ4
Regular ExpressionsWhich Python regular-expression method should you use to match any character in a-z, 0-9, or !@#$%^&*()?
- A \W
- B Greedy matching
- C A custom character set
- D \w
Community Discussion
QuestionQ5
Control Structures and IterationHow many lines does the following code print?

- A 0
- B 1
- C 99
- D 199
- E 2











Community Discussion