Skip to content

Instantly share code, notes, and snippets.

@harrisonmalone
Created February 28, 2020 00:11
Show Gist options
  • Save harrisonmalone/d59dde11c253ec715aac807570b943ec to your computer and use it in GitHub Desktop.
Save harrisonmalone/d59dde11c253ec715aac807570b943ec to your computer and use it in GitHub Desktop.

Workbook One

Question 1

Research the development of the internet from 1980 to today. You must describe at least FIVE key events in the development of the internet. You can refer to events, people of significance, or technologies and how they have changed over time.


Tim Berners Lee was the man who created HTML and HTTP.

picture of tim berners lee

Question 2

Research the development of the internet from 1980 to today. You must describe at least FIVE key events in the development of the internet. You can refer to events, people of significance, or technologies and how they have changed over time.

Question 15

An allergy test produces a single numeric score which contains the information about all the allergies the person has (that they were tested for). The list of items (and their value) that were tested are:

  • eggs (1)
  • peanuts (2)
  • shellfish (4)
  • strawberries (8)
  • tomatoes (16)
  • chocolate (32)
  • pollen (64)
  • cats (128)

So if Tom is allergic to peanuts and chocolate, he gets a score of 34.

Write a program that, given a person’s score can tell them: a) whether or not they’re allergic to a given item b) the full list of allergies.


allergies = [
  "eggs",
  "chocolate"
]

dog = true

num = 1

float = 2.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment