-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore4
83 lines (72 loc) · 2.32 KB
/
core4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<!-- Set the style of the table -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
<style>
body{
color: inherit;
font-family: 'Open Sans', sans-serif;
}
table, th, td{
border: 2px solid #01426a;
border-collapse: collapse;
padding: 15px;
text-align: center;
vertical-align: middle;
color: #01426a
}
th {
background-color: #ece81a
}
tr:hover {background-color: #ece81a}
</style>
</head>
<body>
<!-- Table starts here-->
<div style ="overflow-x:auto;">
<table style="width:90%; margin:1em auto">
<!-- Define the first row of the table -->
<tr>
<th>Core4 Concept</th>
<th>A variable is a storage location paired with an associated symbolic name which contains some known or unknown quantity of information referred to as a value.</th>
<th>A real life analogy is imagine variables as tenacles rather than boxes since they do not contain values.They grasp the values. Two variables can refer to the same value.</th>
<th An example in python is name=Zindzi</th>
<th>Scratch Example</th>
</tr>
<!-- Fill in the row for Variables -->
<tr>
<td>A variable is a storage location paired with an associated symbolic name which contains some known or unknown quantity of information referred to as a value.</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<!-- Fill in the row for Loops -->
<tr>
<td> A loop is a sequence of instructions that is continually repeated until a certain condition is reached.></td>
<td> A real life analogy of a loop is </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<!-- Fill in the row for Conditionals -->
<tr>
<td><b>Conditionals</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<!-- Fill in the row for Functions -->
<tr>
<td><b>Functions</b></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</body>
</html>