quizdown

# Python Lists (multiple choice) What is the value of `x[2]`? > Python lists are mutable! ~~~python x = [2, 3, 4] x[2] = 4 print(x[2]) ~~~ - [ ] 1 - [ ] 2 - [ ] 3 - [x] 4 # What is the capital of Germany (single choice)? ![](https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Siegessaeule_Aussicht_10-13_img4_Tiergarten.jpg/405px-Siegessaeule_Aussicht_10-13_img4_Tiergarten.jpg) > It's the largest city in Germany! 1. [ ] Frankfurt 1. [x] Berlin 1. [ ] Hamburg 1. [ ] Munich # Put the [days](https://en.wikipedia.org/wiki/Day) in order (sequence)! Quizdown also renders formulas: $$ x = \frac{a+b^2}{\sqrt{b+c}} $$ > Monday is the *first* day of the week. 1. Monday 2. Tuesday 3. Wednesday 4. Friday 5. Saturday
Back to top