Skip to content

Instantly share code, notes, and snippets.

View kylecornelissen's full-sized avatar
💭
🌽🐶

Kyle Cornelissen kylecornelissen

💭
🌽🐶
View GitHub Profile
  1. What have you learned about the use of agile vs. waterfall in software projects?
    The waterfall method goes through 5 steps. The requirements portion sets up the overall setup instructions for development. The technical portion is where software architects design what the app should look like. Then implementation is when the developers build the application based on the previous steps. Then quality assurance team verifies the program and tests for bugs. The final step is releasing the program to the user. The problem with waterfall is it is one long process and users have little interaction during development. This is where agile is more effective. Unlike the long process of waterfall, agile workflow works in multiple 2 week sprints. The advantage of this method is that it allows users to submit feedback in increments before the final product. The steps are the same as waterfall except you do them quicker and repeat the process multiple times until the program is finished. The downside to agile is the
@kylecornelissen
kylecornelissen / m2_prework.md
Created April 29, 2019 14:38
Intermission Pre Work for Mod2

B2 Intermission Work

Answer these Check for Understanding questions as you work through the assignments.

HTML

  1. What is HTML?
    HTML stands for Hyper Text Markup Language and it is the language used to create webpages
  2. What is an HTML element?
    **An HTML element is a building block of an HTML webpage represented by tags such as "heading", "paragraph", or "table". The element consists of everything inside the start and end tags.
<html>
<head>
<style type="text/css">
#main { padding: 100px; border: 2px solid pink; }
.blue { background-color: blue; }
</style>
</head>
<body>
<div id="main">Lorem ipsum dolor!</div>
<script type="text/javascript">