COP 4530: Unix, C/C++, and Discrete Mathematics review topics

You will be given a quiz on pre-requisite materials. Please review material on the following topics, and also fill in gaps in your knowledge. A sample quiz and solutions are available.

Unix and utilities

  1. You should be able to log in to your CS account on a Unix machine.
  2. You should be able to use common Unix commands, such as: man, cd, chmod, rm, mkdir, mkdir, exit, logout, ls, cp, ln, I/O redirection, and piping using |.
  3. You should be able to specify file name patterns using *, [], and ?.
  4. You should be able to use utilities such as cat, more, tail, and grep.
  5. You should be able to ssh to a remote machine and enable X11 forwarding (man ssh, and check the -X or -Y flags).
  6. You should be able to use a text editor, such as emacs.
  7. You should be able to send and receive email, and use a web browser.
  8. You should be able to use make to build a project.
  9. You should be able to use g++ to compile C++ programs, including compiling multiple files.

C/C++

  1. Pointers, pointer arithmetic, arrays, relationship between arrays and pointers, passing pointer arguments to functions, and returning pointers from functions.
  2. Bitwise operators.
  3. Parameter passing.
  4. Defining classes and instantiating objects, private, protected, and public data and member functions.
  5. Overloading operators, including I/O operators, and the assignment operator (understanding the need for 'deep' copy).
  6. Overloading functions.
  7. Constructors, including copy constructors, and destructors.
  8. Dynamic memory allocation using new and deallocation using delete and delete [].
  9. The this pointer.
  10. Passing references to functions, and returning references from functions.
  11. Use of const in function and variable declarations and definitions.
  12. The semantics of static functions.
  13. C++ I/O, including file I/O.

Discrete Mathematics

  1. Number representation, including decimal, binary, hexadecimal, and octal.
  2. Graph theory terminology, such as graph, digraph, tree, vertex, node, edge, and the standard traversals.
  3. Mathematical proof concepts, such as proof by induction.

Last modified: 3 Aug 2005