Study Guide for CS 303E Test 1 (Summer 2007) * Number Conversions (you may use a calculator) Decimal to binary, octal, hexadecimal and vice versa Binary to octal and hexadecimal and vice versa * Define Variables * Prove Boolean identities with truth tables * Write Boolean expressions * Evaluate expressions * Use increment and decrement operators * Know the difference between applying (&& and &) and (|| and |) * Use bitwise operators (& | ^ ~) in a computation * Use the shift operators (<<, >>, >>>) in a computation * Use the conditional operator ? : * Read strings, integers, and floating point numbers from the console with Scanner * Output results in formatted (printf) or unformatted (println) form * Use if-else in a computation * Evaluate the results of a computation that has a switch statement * Convert if-else to switch and vice versa * Sum a simple series using a while loop or a for loop * Convert a while loop into a for loop and vice versa * Write a simple program that will Prompt the user for input Read the input Compute with that input Write the results