Thursday, January 31, 2019

Challenges

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What do you find most challenging about computer coding? 
Computer Coding Magazine



https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What do you find most challenging about computer coding?
Karel Textbook 
Computer Coding Magazine



Please complete all your assignments for marking period 2 by Friday. What do you find most challenging about computer coding?
Computer Coding Magazine
<head>
        <link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
       background-color:Chartreuse;
}
 


Wednesday, January 30, 2019

Enjoyment

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What do you enjoy most about computer coding? 
Computer Coding Magazine



https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What do you enjoy most about computer coding?
Karel Textbook 

Computer Coding Magazine


Please complete all your assignments for marking period 2 by Friday. What do you enjoy most about computer coding?
Computer Coding Magazine
<head>
        <link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
       background-color:Chartreuse;
}
 


Tuesday, January 29, 2019

Computer Coding

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What is computer coding
Computer Coding Magazine


https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. What is computer coding?
Karel Textbook 

Computer Coding Magazine


Please complete all your assignments for marking period 2 by Friday. What is computer coding?
Computer Coding Magazine

<head>
        <link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
       background-color:Chartreuse;
}
 


Monday, January 28, 2019

Girls Who Code Summer Immersion Program

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. Ask me a Tracy question today? 




https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


Please complete all your assignments for marking period 2 by Friday. Ask me a Karel question today?
Karel Textbook 




Please complete all your assignments for marking period 2 by Friday. Ask me a HTML or CSS question today?

<head>
        <link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
       background-color:Chartreuse;
}
 


Friday, January 25, 2019

Indentation - Spaces or tabs?


https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


What are the two keys you can use to indent your code?

Spaces or tabs? (Spaces!)

Should you use spaces or tabs for indenting? A debate has raged on this topic for decades, with different developers insisting that theirs is the right choice.


https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


What are the two keys you can use to indent your code?

Spaces or tabs? (Spaces!)

Should you use spaces or tabs for indenting? A debate has raged on this topic for decades, with different developers insisting that theirs is the right choice.
Complete the Multipage Website test in CodeHS.com.

<head>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>

Thursday, January 24, 2019

Increment and Decrement


https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form


What is a For Loop? What do the increment  and decrement operators do?

Increment i++ add one. Decrement i-- subtract one.



https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


What is a For Loop?
What do the increment  and decrement operators do?
Karel Textbook
for (statement 1; statement 2; statement 3) {
  // code block to be executed}
Statement 1 sets a variable before the loop starts (var i = 0).
Statement 2 defines the condition for the loop to run (i must be less than 5).
Statement 3 increases a value (i++) each time the code block in the loop has been executed.  Increment i++ add one. Decrement i-- subtract one.
Complete the Multipage Website test in CodeHS.com.

<head>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>

Wednesday, January 23, 2019

Indent For loops

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form



What is a For Loop? Why do you need to indent your code in a for loop?



https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


What is a For Loop? Why do you need to indent your code in a for loop?
Karel Textbook
for (statement 1; statement 2; statement 3) {
  // code block to be executed}
Statement 1 is executed (one time) before the execution of the code block.
Statement 2 defines the condition for executing the code block.
Statement 3 is executed (every time) after the code block has been executed. 
What can you do when a text is hooked in a <span> element?

<head>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>

Tuesday, January 22, 2019

For Loops

https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=a61cdf6fbb584d8c863515d24ab0745c&resourceFileType=CONVERTED Google Classroom
Question of the Day Form



What is a For Loop? Write an example of a for loop for Tracy.for i in range(How many?):



https://classflow.com/activfoundation/resource/downloadResourceFile?resourceId=ba7160ab334f47cea8dfcbfe4500cf68&resourceFileType=CONVERTED
Google Classroom  
Question of the Day Form


What is a For Loop? Write an example of a for loop for Karel.
Karel Textbook

for (statement 1; statement 2; statement 3) {
  // code block to be executed}
Statement 1 is executed (one time) before the execution of the code block.
Statement 2 defines the condition for executing the code block.
Statement 3 is executed (every time) after the code block has been executed. 
What is the <span> tag?

<head>
  <link rel="stylesheet" type="text/css" href="style.css">
</head>