Designing solutions through programming - January 12 2017 Lesson Notes: Difference between revisions

From Computer Science Wiki
Line 5: Line 5:
==[[File:class_plan.png]] What are we going to learn today?==
==[[File:class_plan.png]] What are we going to learn today?==


# We will be busy today
# We will configure our IDE's
# We will check in and hopefully setup our IDE's
# we will learn basic terminology about javascript
# We will learn about change management and answer some questions about change
# you will be exposed to bootstrap
 
<syntaxhighlight lang="javascript">
<!DOCTYPE html>
<html>
<body>
 
<h1>What Can JavaScript Do?</h1>
 
<p id="demo">JavaScript can change HTML content.</p>
 
<button type="button" onclick="document.getElementById('demo').innerHTML = 'Hello JavaScript!'">Click Me!</button>
 
</body>
</html>
 
</syntaxhighlight>





Revision as of 10:52, 12 January 2017

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

  1. We will configure our IDE's
  2. we will learn basic terminology about javascript
  3. you will be exposed to bootstrap
<!DOCTYPE html>
<html>
<body>

<h1>What Can JavaScript Do?</h1>

<p id="demo">JavaScript can change HTML content.</p>

<button type="button" onclick="document.getElementById('demo').innerHTML = 'Hello JavaScript!'">Click Me!</button>

</body>
</html>



Homework.png What is our homework?[edit]

  1. Please review, prior to our next class, the topic on user documentation

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

  1. You will be formatively assessed in class today

Ourstandards.png Standards we are covering today[edit]

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]