Meaning you are busy and focused at work
Answer:
true
Explanation:
a while loop is a condition-controlled loop. While loops continue no matter what under a certain condition, unless you insert the keyword <em>break.</em>
One example in python is this:
while x > y:
<em>pass</em>
The keyword to break a while loop may vary depending on the coding language you are using.
<u>Tip</u> The pass keyword allows a no error contact between loop and the terminal. Pass in a nutshell is almost as if saying nothing at all, but just leaving the condition blank. We only use pass because it prevents errors instead of no value.
Answer:
A. A program that allows you to see what the HTML code will look like in text form on the site
General Formulas and Concepts:
<u>Intro to Digital Tech</u>
Explanation:
WYSIWYG, or What You See Is What You Get, is a program designed to allow the user to preview what the HTML code would look like as a final product.
B is incorrect because we use CSS to change font, color, and other things to HTML.
C is incorrect because tutorials can be found online and would not need a program to teach HTML terminology.
D is incorrect because that would be debugging and would use AI and Smart-Sense Intelligence from the coding platform.