Which symbol must be used at the end of a line that begins with else?

(1 point)
Responses

#

#

*

*

==

==

:



:

1 answer

The symbol that must be used at the end of a line that begins with `else` is `:`.

This syntax is commonly used in programming languages like Python, where you would see:

```python
if condition:
# code to execute if condition is True
else:
# code to execute if condition is False
```

So the correct answer from the provided options is `:`.