Static
Dynamic
Python Flask
Python/HTML code!
100

What three languages are commonly used in static websites?

HTML, CSS, Javascript

100

What were the three web browser examples I gave of web development?

Chrome, Safari, Firefox

100

What were some of the majors platforms I listed that use Flask?

Netflix, Pinterest, and Reddit

100

What are variables used for?

Retrieving information contained by the variables

200

Name one thing static is best for!

Speed, simplicity, or its low-cost maintenance

200

Dynamic apps allow for BLANK for users.

Personalized content

200

What is it considered as because of its ability to build small specialized services within a larger system?

Lightweight!

200

Tell me what the output will be! math(10,1)

def math(a,b):
  if b > a:
     print (b)
 else:
     print ('nothing')

nothing

300

Dynamic web is mainly designed for

functionality and user interaction

300
It has what three main internal components

Werkzeug, Jinja2, Click

300

In a base template for HTML, what are the three components you need to have?

The following tags: <!DOCTYPE html>, <html>, <body>