From 6a819c74238ea304b2f91d855e9851ee59fa99de Mon Sep 17 00:00:00 2001 From: knolax <1339802534.kk@gmail.com> Date: Sat, 17 Mar 2018 20:21:02 -0400 Subject: temporarily added course notes --- index.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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.

+ For Course Notes scroll down

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)

  • c - Hosting your own website with github.io
  • +C expressions course notes +

    +Bitwise Operators: &, 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. +

    +

    +Boolean Operators: &&, boolean and; ||, boolean or; !, boolean not. +Boolean operators apply logic on whether then entire number is true or false, +and returns true or false. +

    +

    +Comparisons: >, greater than; <, lesser than; >=, greater than or equals; +<=, lesser than or equals; ==, equals; !=, does not equal. +

    +

    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.