What three languages are commonly used in static websites?
HTML, CSS, Javascript
What were the three web browser examples I gave of web development?
Chrome, Safari, Firefox
What were some of the majors platforms I listed that use Flask?
Netflix, Pinterest, and Reddit
What are variables used for?
Retrieving information contained by the variables
Name one thing static is best for!
Speed, simplicity, or its low-cost maintenance
Dynamic apps allow for BLANK for users.
Personalized content
What is it considered as because of its ability to build small specialized services within a larger system?
Lightweight!
Tell me what the output will be! math(10,1)
def math(a,b):
if b > a:
print (b)
else:
print ('nothing')
nothing
Dynamic web is mainly designed for
functionality and user interaction
Werkzeug, Jinja2, Click
In a base template for HTML, what are the three components you need to have?
The following tags: <!DOCTYPE html>, <html>, <body>