Answer:
Occurs when a specific language construct was expected, but something else was provided.
Indicate Elevation means that there might be an administrator lock/login needed to download that file.
Answer:
The <em>break</em> keyword is how you interrupt a while loop.
the syntax looks like this ↓
Python ↓
while <em>true</em>:
<em>break</em>
Java script ↓
while (<em>true</em>);
<em>break</em>