Study Guide for CS 303E Test 1 (Summer 2009) * Number Conversions (you may use a calculator) Decimal to binary and vice versa Representation of negative numbers in 2's complement binary * Define Variables * Write Boolean expressions * Evaluate expressions * Use increment and decrement operators * Read integers and floating point numbers from the console with Scanner * Output results unformatted (println or print) form * Use if-else or nested if-else in a computation * 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 (may include if-else and/or loops) Write the results