What does HTML stand for?
What is Hyper Text Markup Language?
(50 points for How To Meet Ladies)
What are the three places inside (or outside *hint hint*) your document to place styling?
What are inline, internal and external?
What is an application of supervised learning?
Encrypt SIGMA using Caesar Cipher of +3
What is VLJPD?
What colour is rgb(0,0,0)?
What is black?
What does the <a> tag stand for and what is it used for?
What is anchor and linking other websites?
How can I add the font Helvetica only to <p class="Alice"> tags? Write the code on the board!
What is:
p.alice {
font-family: Helvetica
}
Remember to use backup fonts too!
What are the 5 types of machine learning?
What is old school, supervised, unsupervised, reinforcement and generative?
What are two things that can contribute to good page quality?
What are:
Content quality
Uniqueness
User experience
HTML structure
Sharing frequency
User engagement
Using good SEO practices (or not using bad ones)
What is the approximate colour for #F30eF4 ?
What is approximately purple (magenta)?
What is a tag taught in this course that does not have a corresponding closing tag?
What is <!DOCTYPE html> <hr> or <img>
What is one tag useful for adding style to text (such as one word) that appears inline?
What is <span>?
What method do AI models like Chat GPT use to generate images?
What is forward diffusion?
What does a browser cookie do?
What is a website storing information on your computer to remember information about your activity on the website (such as "shopping carts" or login credentials)?
Which of the following is incorrect HTML?
<p> Hello there. 😃 </p>
Here is another <a href="https://www.youtube.com/">link</href>
<img src="smile.jpg" width="400px">
2. Here is another <a href="https://www.youtube.com/">link</href>
What would you write to start an ordered list where each point is an uppercase roman numeral?
What is <ol type="I">
What are the three basic types of selectors in CSS?
What are tags, idnames and classes
h1 {}
#idname {}
.classname
How does a computer know the difference between a tomato and carrot at a base level?
Vectors!
What would I type into Google to search for basketball shoes but only from the website shoereseller.com?
What is site:shoereseller.com basketball shoes or basketball shoes site:shoereseller.com?
What is a primary benefit of having a .css file?
Multiple HTML documents can use the same style sheet.
Multiple people can work on it.
Any other reasonable response.
What is the attribute used to make a column go across multiple rows?
What is colspan?
What is one way you can add space around your text?
What is border, padding, or margin
What type of AI could be used to implement these self driving car features?
- Route planning
- Traffic patterns
- Object detection
- Breaking and Parking
What is Old School, Unsupervised, Supervised, and Reinforcement?
The process of starting communication with a stranger on the internet is called Modular Exponentiation. Explain this concept (not the math!).
What is Alice and Bob start off with a common colour (or number), then they both think of their own secret colours and "mix" it with the common colour. They then exchange their new colours and mix it again with their secret colours. They then each have the same secret colour.
How does one write a character entity in HTML?
&code; , &#decimal; or &#xHEX;