Quizzes Overview
Quiz Structure
As discussed in the syllabus, the quizzes in this class are meant to assess your proficiency on a specific set of learning objectives. Each quiz will have a posted set of learning objectives that you can demonstrate proficiency/mastery in for that quiz, and each learning objective will appear on at least 2 quizzes. Some of the objectives have notes on what specifically is required for proficiency and mastery.
Quiz Learning Objectives
The learning objectives that will ultimately all be assessed via quizzes are:
- Defining variables with appropriate type in Java a. Proficiency - basic types, M - Collections with generics
- Writing loops (definite and indefinite) in Java a. Proficiency - basic loops, M - Nested loops
- Writing conditional statements in Java a. Proficiency - two part, M - three part (including else if or nested)
- Defining methods in Java a. Proficiency - method without parameters/return value, M - parameters and return value
- Instantiating and using objects in Java a. Proficiency - using without parameters/return value, M - using method with parameters and return value
- Using interfaces a. Proficiency - implement a specified interface, M - define your own interface
- Using inheritance a. Proficiency - simple subclass, M - use call to super to build on super’s method
- Using linked lists
- Explaining time complexity of linked list operations a. Proficiency - define Big-O of specified operation, M - demonstrate how you get that Big-O
- Using stacks
- Explaining time complexity of stack operations a. Proficiency - define Big-O of specified operation, M - demonstrate how you get that Big-O
- Using queues
- Explaining time complexity of queue operations a. Proficiency - define Big-O of specified operation, M - demonstrate how you get that Big-O
- Explaining quicksort
- Explaining time complexity of quicksort a. Proficiency - define Big-O of best and worst case, M - explain how you get those Big-O
- Using recursion a. Proficiency - defining the “three laws of recursion”, M - writing a recursive function
- Using balanced search trees a. Proficiency - demonstrate adding in basic case to 2-3 tree, M - demonstrate adding that requires splitting and promotion
- Using heaps
- Explaining time complexity of heapsort a. Proficiency - define Big-O in worst case, M - demonstrate how you get that Big-O
- Demonstrating breadth-first search a. Proficiency - indicate first level of BFS, M - demonstrate full BFS
- Explaining time complexity of breadth-first search a. Proficiency - define Big-O in worst case in terms of just V, M - demonstrate how you get that Big-O
- Demonstrating depth-first search a. Proficiency - indicate first sequence of DFS, M - demonstrate full DFS
- Demonstrating hash tables
- Explaining time complexity of hashing a. Proficiency - define Big-O in worst case, M - explain how you get that Big-O
You can see how you are doing on each of these on Moodle under the “Grades” tab.