Questão 1
Questão
Examine the code and determine the value of the variable b when the code completes.
Questão 2
Questão
Examine the code and determine the output.
Responda
-
{}
-
foo
-
{'obj_name': 'foo'}
-
{'obj_name' = 'foo'}
Questão 3
Questão
What output will be produced from this snippet of code?
Responda
-
IndexError
-
[]
-
['a', 'b', 'c', 'd', 'e']
Questão 4
Questão
What is the difference between a tuple and a list?
Questão 5
Questão
What output will be produced?
Questão 6
Questão
Is a list a heterogeneous data structure in Python?
Questão 7
Questão
If a list is mutable in Python, can it hold immutable objects?
Questão 8
Questão
A tuple is an immutable data structure in Python. Can it hold mutable objects?
Questão 9
Questão
What is the value of variable d when the code completes?
Responda
-
[1, 'Dublin', 2, 'London', 3, 'Moscow']
-
{1: 'Dublin', 2: 'London', 3: 'Moscow'}
-
An exception is raised
Questão 10
Questão
Is the code performing legal operations?
Questão 11
Questão
Do a and b return the same object type?
Questão 12
Questão
Determine the value of the variable b when the code completes?
Responda
-
[10,20,30]
-
20
-
[10, 20, 50]
Questão 13
Questão
What is the output from this code?
Questão 14
Questão
What is the output of the code?
Questão 15
Questão
What is the output of the code?
Responda
-
'age under 30'
-
'age equals 25'
-
None of the above
Questão 16
Questão
Determine the output of the code?
Responda
-
{house:1215}, 'apt
-
An exception is raised
-
'apt', {house:1215}
Questão 17
Questão
What is the output?
Responda
-
0 2
-
john sarah
-
An exception is raised
Questão 18
Questão
Which line of code is correct to detect if a variable is a function?
Responda
-
hasattr(obj, '__call__')
-
isinstance(x, function)
-
type(x) == 'function'
Questão 19
Questão 20
Questão
What is the value of the variable name when the code completes?
Questão 21
Questão
What is the "__init__.py" file for in a Python source directory?
Questão 22
Questão
Is new_list a shallow or deep copy of old_list?
Questão 23
Questão
Determine what the output will be?
Responda
-
['j','o','h','n']
-
'John'
-
'mylist'
Questão 24
Questão
What is the output of the code?
Questão 25
Questão
Determine the value of a after the method is called twice.
Questão 26
Questão
Determine the output of the code?
Questão 27
Questão
What is the output of the code?
Questão 28
Questão
What is the output of the code?
Questão 29
Questão
I want to read from a file on the path 'C:\newfile\textfile.txt'. What is the correct way to open the file?
Responda
-
myfile = open('C:\newfile\textfile.txt', 'r')
-
myfile = open(r'C:\newfile\textfile.txt', 'r')
Questão 30
Questão
Review the code. Does the variable a have a type? If so, what is the type of a?
Responda
-
Variable a does not have a type
-
Variable a is of type List
-
Variable a is of type String
Questão 31
Questão
Is that code legal?
Questão 32
Questão
Determine the result?
Questão 33
Questão
Is the code legal or illegal?
Questão 34
Questão
What is the result of the code?
Questão 35
Questão
What output does the code produce?
Responda
-
['jack', 'peter', 'sarah']
-
['sarah']
-
[ 'sarah', 'peter', jack']
Questão 36
Questão
Analyse the code and determine the result
Questão 37
Questão
What is the output?
Responda
-
[10]
-
raises an exception
-
[[10]]
Questão 38
Questão
What object types do variables a and b point to?