Designing Solutions Through Programming - block 6 - September 12 2018 Lesson Notes

From Computer Science Wiki

Class plan.png What are we going to learn today?[edit]

Please review EVERY BIT of this code:

<html>
    <!-- This page is to help me study for an upcoming test -->
    <!-- The test is on Friday, and I should study AT LEAST 2 hours BUT NOT MORE THAN 4 hours -->
    <head>
        <title>Hello</title>
        <link rel="stylesheet" type="text/css" href="styletest.css">
    </head>
    <body>
        <div class="container">
        <p>Hello and welcome to my page.</p>
        <div>
            <p>I'd like to tell you a bit about me :-) </p>
        </div>

        <div class="important">
            Hi Everyone! :-) 
            <p>I'm just learning HTML!</p>
        </div>

        <div>
            I like the following foods:
            <ul>
                <li>Pasta with pesto</li>
                <li>Hamburgers</li>
                <li>Soups</li>
                <li>Fruits</li>
            </ul>
            <a href="http://mackenty.org">Click here to go to google</a>
        </div>
        </div> <!-- this closes the container div -->
    </body>
</html>

Also, please review EVERY LINE of this code:

p {
    border: 2px solid black;
    padding: 3px;
    margin: 3px;
    background-color: mistyrose;
    color: black;
}

div {

    border: 2px solid black;
    padding: 3px;
    margin: 3px;
    background-color: rgb(235, 190, 186);
    color: black;

}

div.important {

    border: 2px solid black;
    padding: 3px;
    margin: 3px;
    background-color: rgb(255, 255, 255);
    color: rgb(224, 21, 21);
}

div.container {

    border:1px solid gray;
    padding:5px;
    margin:5px;

}


Target.png How am I being assessed today?[edit]

I will assess you formatively today, and make a professional judgement to what extent you understand our learning material. I will use observation, your written work, answers to questions, and contribution to class discussions as data to make my decisions.

I will also ask you to complete a self-assessment which I will use to help me guage how well you think you understand our material in class.

Computer1.png As a computer scientist, you have:[edit]

  • Confidence in dealing with complexity
  • Persistence in working with difficult problems
  • Tolerance for ambiguity
  • The ability to deal with open-ended problems
  • The ability to communicate and work with others to achieve a common goal or solution

Credit.png Credits[edit]