Answers Latest Version Already Passed
What is the correct way to define a function in Python?
a) `function myFunc() {}`
b) `def myFunc():`
c) `create function myFunc() {}`
d) `function: myFunc()`
✔✔ b) `def myFunc():`
What will this code print?
```python
x=5
if x > 3:
print("Greater")
else:
print("Smaller")
```
1
,a) Greater
b) Smaller
c) Error
d) No output
✔✔ a) Greater
What is the result of the expression `4 // 2` in Python?
a) 2.0
b) 2
c) 4
d) Error
✔✔ b) 2
How can you concatenate two strings in Python?
a) `+`
b) `&`
c) `concat()`
d) `merge()`
2
, ✔✔ a) `+`
What is the output of the following code?
```python
x = [1, 2, 3]
x.append(4)
print(x)
```
a) `[1, 2, 3, 4]`
b) `[4, 1, 2, 3]`
c) `[1, 2, 3]`
d) `[1, 2, 3, 5]`
✔✔ a) `[1, 2, 3, 4]`
Which of the following is used to handle exceptions in Python?
a) `try-catch`
b) `do-while`
3