Answer:
Step-by-step explanation:
If you enter the following code in IDLE:
```python
>>> print(5 + 11)
```
The output displayed in the console will be:
```
16
```
The code calculates the sum of 5 and 11, which is 16, and then uses the `print()` function to display the result on the console.