diff --git a/module1/index.md b/module1/index.md index 6fdb75ef..546e2e91 100644 --- a/module1/index.md +++ b/module1/index.md @@ -16,9 +16,9 @@ Students will learn the basics of Object Oriented Programming to build software ### Week 1 * Introduction: [Intro to Programming](./lessons/Week1/introToProgramming) | [Intro to Labs](./labs/Week1/IntroToLabs) -* Note Taking for Technical Content: [Lesson](./lessons/Week1/NoteTaking.md) +* Data Types and Variables: [Lesson](./lessons/Week1/DatatypesAndVariables) | [Lab](./labs/Week1/DatatypesAndVariables) * Conditional Logic: [Lesson](./lessons/Week1/ConditionalLogic) | [Lab](./labs/Week1/ConditionalLogic) -* Data Types and Variables: [Lesson](./lessons/Week1/datatypesAndVariables) | [Lab](./labs/Week1/DatatypesAndVariables) +* Note Taking for Technical Content: [Lesson](./lessons/Week1/NoteTaking.md) * [Week 1 - Check Your Understanding](./lessons/Week1/CFUReview) diff --git a/module1/labs/Week1/IntroToLabs.md b/module1/labs/Week1/IntroToLabs.md index 3d7d54a0..4a7fd416 100644 --- a/module1/labs/Week1/IntroToLabs.md +++ b/module1/labs/Week1/IntroToLabs.md @@ -8,9 +8,9 @@ title: Introduction to Labs Throughout this program, you will be asked to complete some activities during **lab time** (typically in the afternoon after lessons). Lab time will include activities that are designed to: - * reinforce the information that you have learned so far, - * present new information for you to explore with minimal instructor input, - * and, prepare you for upcoming lessons. + * reinforce the information that you have learned so far, + * present new information for you to explore with minimal instructor input, + * and, prepare you for upcoming lessons. Much of your future work as developers will include doing some independent learning and exploration, so it's a good idea to start practicing this habit now! @@ -25,21 +25,9 @@ During today's lab, we will be assigning you into some groups to get you started ### Practice With your group, discuss your answers to the Checks for Understanding from the [Intro To Programming Lesson](/module1/lessons/Week1/introToProgramming#check-for-understanding). To get the ball rolling, you can start with these prompts and sentence starters: - * When I described programming, I said that... - * I didn't quite understand... - * Let's discuss any differences in our diagrams. + * When I described programming, I said that... + * I didn't quite understand... + * Let's discuss any differences in our diagrams. As you review and discuss, make note of any lingering questions you may have, or of interesting discoveries you make! We will be coming together as a large group to share out before moving on to the next part of the lab. -### Preparation - -Tomorrow, we will be discussing one of the most important fundamentals of programming, Datatypes and Variables. To prepare for that lesson, watch the video linked below, and discuss the check for understanding question with your group. - -[![video image link](/assets/images/module1/Week1/Variables_ProgrammingForBeginners.png)](https://www.youtube.com/watch?v=ghCbURMWBD8) - -#### Check for Understanding -* Which of the following real life items is most similar to a **variable**: - - a book - - the label 'NonfictionBooks' on a box that contains books - - a box that contains books - - 10 books that are inside a box diff --git a/module1/preparation/Week1/DatatypesAndVariables.md b/module1/preparation/Week1/DatatypesAndVariables.md new file mode 100644 index 00000000..7810c6f2 --- /dev/null +++ b/module1/preparation/Week1/DatatypesAndVariables.md @@ -0,0 +1,17 @@ +--- +layout: page +title: Datatypes and Variables Prep +--- + +### Preparation + +Tomorrow, we will be discussing one of the most important fundamentals of programming, Datatypes and Variables. To prepare for that lesson, watch the video linked below, and discuss the check for understanding question with your group. + +[![video image link](/assets/images/module1/Week1/Variables_ProgrammingForBeginners.png)](https://www.youtube.com/watch?v=ghCbURMWBD8) + +#### Check for Understanding +* Which of the following real life items is most similar to a **variable**: + - a book + - the label 'NonfictionBooks' on a box that contains books + - a box that contains books + - 10 books that are inside a box