summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknolax <1339802534.kk@gmail.com>2018-03-17 20:21:02 -0400
committerknolax <1339802534.kk@gmail.com>2018-03-17 20:21:02 -0400
commit6a819c74238ea304b2f91d855e9851ee59fa99de (patch)
tree296520b25105eb5f0f9b1d950bdd5f9c605534e5
parentfa7efa339ee9ff74061988f7607090843c06144b (diff)
temporarily added course notes
-rw-r--r--index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/index.html b/index.html
index 8c4441e..5149e5e 100644
--- a/index.html
+++ b/index.html
@@ -18,6 +18,7 @@ educational programs offered by schools are often aimed towards the lowest
common
denominator, oversimplifying things to the point where your child loses interest
in them.</p>
+<h> For Course Notes scroll down</h>
<p>The Urban Computing and Electronics Summer Program aims to provide a
balance between this, offering practical and challenging course material, but
also providing in person tutoring for those who have little prior experience.
@@ -141,6 +142,24 @@ Network Secruity)</li>
<li>c - Hosting your own website with github.io</li>
</ul>
</ul>
+<h>C expressions course notes</h>
+<p>
+Bitwise Operators: &amp, bitwise and; |, bitwise or; ~, bitwise not; ^, bitwise xor.
+Bitwise operators apply logic operations in each position of a binary number,
+return the resulting binary number.
+</p>
+<p>
+Boolean Operators: &amp&amp, boolean and; ||, boolean or; !, boolean not.
+Boolean operators apply logic on whether then entire number is true or false,
+and returns true or false.
+</p>
+<p>
+Comparisons: &gt, greater than; &lt, lesser than; &gt=, greater than or equals;
+&lt=, lesser than or equals; ==, equals; !=, does not equal.
+</p>
+<p>AND: if both are true, then the output is true. OR: if one is true, then the
+output is true. XOR: if one is true and the other false, then the output is
+true, otherwise it is false. NOT: if true, false; if false, true.</p>
</div>
</body>
<!--