Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions Unit1_Foundations/core4-portfolio-page/Core4Template.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,37 +47,37 @@
<!-- Fill in the row for Variables -->
<tr>
<td><b>Variables</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><b>a storage location paired with an associated symbolic name (an identifier), which contains some known or unknown quanitity of information referred to as a value </b></td>
<td><b>score board in a game</b></td>
<td><b>answer = eval(input("Question?"))</b></td>
<td><b>variable block</b></td>
</tr>

<!-- Fill in the row for Loops -->
<tr>
<td><b>Loops</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><b>a sequence of instruction s that is continually repeated until a certain condition is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number. </b></td>
<td><b>daily routine</b></td>
<td><b>drawing shapes</b></td>
<td><b>moving the cat around to draw a shape</b></td>
</tr>

<!-- Fill in the row for Conditionals -->
<tr>
<td><b>Conditionals</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><b>features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.</b></td>
<td><b>weather and how you decide to dress</b></td>
<td><b>boolean expressions (true or false)</b></td>
<td><b>if then statements</b></td>
</tr>

<!-- Fill in the row for Functions -->
<tr>
<td><b>Functions</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><b>a type of procedure or routine, performs some operation but does not return a value; shortens everything down to a single word or phrase</b></td>
<td><b>copy and paste on computers</b></td>
<td><b>ability to define a command to be used multiple times</b></td>
<td><b>ability to define a command for a sprite to repeat multiple times</b></td>
</tr>

</table>
Expand Down