Oliver Eyton-Williams bd68b70f3d
Feat: hide blocks not challenges (#39504)
* fix: remove isHidden flag from frontmatter

* fix: add isUpcomingChange

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

* feat: hide blocks not challenges

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
2020-09-03 15:07:40 -07:00

781 B

id, title, challengeType, isRequired, videoId
id title challengeType isRequired videoId
5e7b9f060b6c005b0e76f059 More Conditional Structures 11 true HdL82tAZR20

Description

More resources: - Exercise 1 - Exercise 2

Tests

question:
  text: |
    Given the following code:
    ```python
    temp = "5 degrees"
    cel = 0
    fahr = float(temp)
    cel = (fahr - 32.0) * 5.0 / 9.0
    print(cel)
    ```
    Which line/lines should be surrounded by `try` block?

  answers:
    - |
      1
    - |
      3
    - |
      3,4
    - |
      4
    - |
      None
  solution: 3