You can find a collection of my notes from this exam here: https://github.com/andrewjkerr/CIS4301-Exam-2-Review/blob/master/cis4301-exam2-notes.md
- Chapter 3
- Closure Functional Dependencies
- Set cover
- BCNF, 4NF, 5NF
- Chapter 5
You can find a collection of my notes from this exam here: https://github.com/andrewjkerr/CIS4301-Exam-2-Review/blob/master/cis4301-exam2-notes.md
| LCtrl::LAlt | |
| LAlt::LCtrl |
| $(document).ready(function() { | |
| $(".calc").hide(); | |
| //toggle the component with class msg_body | |
| $(".className").click(function() | |
| { | |
| $(this).nextAll(".calc:first").slideToggle(500); | |
| }) | |
| }); |
| require 'net/http' | |
| require 'net/smtp' | |
| file = File.open("grades_current.html", "rb") | |
| cur_source = file.read | |
| message = <<MESSAGE_END | |
| From: Andrew Kerr Updates <updates@andrewjkerr.com> | |
| To: MicroP Peeps <microp@lists.ufl.edu> | |
| Subject: MicroP Grades Updated! |
| /* | |
| * In C, you cannot do the following: | |
| * for(int i = 0; i < 5; i++){ | |
| * // do stuff | |
| * } | |
| * | |
| * You must do the following: | |
| */ | |
| void main( void ){ |
| $(function() { | |
| $( "#datepicker" ).datepicker({ | |
| onSelect: function(){ | |
| // Gets the information from the picked date | |
| var picked = $("#datepicker").datepicker('getDate'); | |
| var ddPicked = $("#datepicker").datepicker('getDate').getDate(); | |
| var mmPicked = $("#datepicker").datepicker('getDate').getMonth(); | |
| var yyyyPicked = $("#datepicker").datepicker('getDate').getFullYear(); | |
| var dotwPicked = $("#datepicker").datepicker('getDate').getDay(); |
| import java.lang.Math; | |
| import java.util.Arrays; | |
| /** | |
| * Discussion 11 COP 3503 Fall 2012 | |
| * | |
| */ | |
| public class SearchingAndSorting { |
| { | |
| "data": [ | |
| { | |
| "birthday": "01/01/2000", | |
| "first_name": "John", | |
| "last_name": "Doe", | |
| "hometown": { | |
| "name": "Tampa, Florida" | |
| }, | |
| }, |
| <script> | |
| function setGrades() { | |
| // Define those variables! | |
| var quiz1 = parseFloat(document.getElementById('quiz1').value); | |
| var quiz2 = parseFloat(document.getElementById('quiz2').value); | |
| var quiz3 = parseFloat(document.getElementById('quiz3').value); | |
| var quiz4 = parseFloat(document.getElementById('quiz4').value); | |
| var quiz5 = parseFloat(document.getElementById('quiz5').value); | |
| var quiz6 = parseFloat(document.getElementById('quiz6').value); | |
| var quiz7 = parseFloat(document.getElementById('quiz7').value); |