As some of you may know, I was computer scientist before I was a user experience designer. Because I was always on the computer, I was persuaded by an 8th grade teacher to enroll in the one high school computer science class when I entered the 9th grade, and I loved it so much that I took it every year thereafter until I graduated. It was my computer science teacher Charles Rice who encouraged me to look into Carnegie Mellon’s School of Computer Science, where I eventually applied, was accepted, and three weeks into freshman year completely hated. I stuck it out for three semesters before switching to Professional Writing, ultimately picking up a double-major in Human-Computer Interaction and subsequently getting a Master’s degree in the same.
But wow, was I a computer science geek. My very popular, athletic, non-techie best friend in high school still insists that she always knew where to find me in the school building — the computer lab.
Today as I was poking around my external hard drive, I happened upon some old homework that I guess I saved off of my old Performa 6300. I don’t know how I managed to hold onto it all these years, but I’m so glad that I did.
Here are some excerpts of computer science homework that I found. Hope it gives you as much of a laugh as it gave me. I bet I got As ;)
From 9th grade:
Whitney Hess
December 19, 1996
Computer ScienceLab Report
For the third experiment we had to construct a 3-input AND gate using the 7408 chip. We could only have one wire to the LED and we were not supposed to have more than one wire from each switch, but that was my first experiment.
I purposely wired the board improperly for my first experiment to see why we were not allowed to have two wires coming from one switch. So I put 14’s wire to the power, 7’s wire to the ground, 1 and 2’s wires to the first and second switches. Because we were trying to create a 3-input AND gate, I put 3’s wire to the third switch instead of the the LED. Then, from the same switch that 3 was connected to, I linked a wire to the LED.
Truth Table for the 3-input AND gate when two wires went to the third switch
A B C D
0 0 0 0
1 0 0 0
0 1 0 0
0 0 1 0
1 1 0 0
0 1 1 0
1 0 1 0
1 1 1 1Even though we were told not to link two wires from a switch, when I did so, I created a perfect 3-input AND gate. Only when all three switches were on did the LED turn on.
And from 10th grade:
Whitney Hess
November 5, 1997
Computer Science 2Flip Flop
Experiment Description:
The purpose of this experiment was to understand how a flip flop works. We did this by producing a flip flop by wiring chip 7400 (with NAND gates). After wiring the chip we put both switches in the 1 position (on). Then to store a 1, we moved the set switch to 0 then to 1. To store a 0 we moved the reset switch to 0 then to 1.Circuit Wiring Diagram:
See attached sheetTruth Table:
Set Switch Reset Switch Result
A B C
1 1 0
0 1 1
1 1 1
0 1 1
0 0 1
1 0 0
1 1 0
0 1 1
0 0 1
1 0 1
1 1 0
0 1 1
0 0 1
1 0 1
1 1 0
0 1 1
0 0 1
0 1 1
1 1 1Conclusion:
This experiment demonstrated how a flip flop works. One switch set the LED while the other reset it once switched to its off position and then to its on position.Counting Chip/ Display Symbols
Experiment Description:
This experiment revealed how a computer counts using binary numbers and how digits are represented using a display. We wired a 7493 chip and recorded the status of the input LEDs and the appearance of the display symbol each time the pulser was pushed.Circuit Wiring Diagram:
See attached sheetTruth Table:
# of times pulser pushed Status of input LEDs Status of Display LEDs
A B C D 1 2 3 4 5 6 7
0 0 0 0 0 1 1 1 0 1 1 1
1 0 0 0 1 0 0 1 0 0 1 0
2 0 0 1 0 1 0 1 1 1 0 1
3 0 0 1 1 1 0 1 1 0 1 1
4 0 1 0 0 0 1 1 1 0 1 0
5 0 1 0 1 1 1 0 1 0 1 1
6 0 1 1 0 0 1 0 1 1 1 1
7 0 1 1 1 1 0 1 0 0 1 0
8 1 0 0 0 1 1 1 1 1 1 1
9 1 0 0 1 1 1 1 1 0 1 0
10 1 0 1 0 0 0 0 1 1 0 1
11 1 0 1 1 0 0 0 1 0 1 1
12 1 1 0 0 0 1 1 1 0 0 0
13 1 1 0 1 1 1 0 1 0 0 1
14 1 1 1 0 0 1 0 1 1 0 1
15 1 1 1 1 0 0 0 0 0 0 0Questions:
1. Which LED is on the most?
They are all on the same amount of times.
2. Which LED will burn out first? Why?
All the LEDs will burn out at around the same time since they are all on the same amount.
3. Which display LED is on the most?
Display LED #4 is the one that is on the most.
4. Design an efficient display for alphabetic characters.Conclusion:
This experiment demonstrated how the pulser can control the appearance of both the input LEDs and the display LEDs depending on the number of times the pulser is pressed. The input LEDs and the display LEDs also work in accordance.Basic Gates
Experiment Description:
This experiment demonstrated how the three basic gates (AND, OR and NOT gates) can be incorporated into one chip in order to simplify circuits. We wired a 7400 chip (a NAND gate) and recorded the truth tables for each basic gate so that we could prove that all gates existed within the chip.Circuit Wiring Diagram:
See attached sheetTruth Tables:
AND gate OR gate NOT gate
A B C A B C A B
0 0 0 0 0 0 0 1
1 0 0 1 0 1 1 0
0 1 0 0 1 1
1 1 1 1 1 1Conclusion:
This experiment demonstrated how a three basic gates can be incorporated into one chip, the 7400 NAND gate chip. When you wire the chip to create an AND, OR or NOT gate, the gates will still operate without a wire to the ground. While a NOT gate is wired, it will still operate with only one wire going to the switch, but in the others the wires to the switches must be in place.Boolean Logic
Experiment Description:
This experiment demonstrated how chips can be used for mathematical proof by wiring a combinatoric circuit to achieve the results of a Boolean logic expression. We created a combinatoric circuit by wiring three chips in pairs, 7432 and 7404, and 7404 and 7408. We proved Demogan’s Law which says that NOT (A or B)= NOT A and NOT B and that NOT (A and B)=NOT A or NOT B.Circuit Wiring Diagram:
See attached sheetTruth Tables:
NOT (A or B)=NOT A and NOT B: NOT (A and B)=NOT A or NOT B
A B C A B C
0 0 1 0 0 1
1 0 0 1 0 1
0 1 0 0 1 1
1 1 0 1 1 0Conclusion:
This experiment proved that mathematical equations can be proved by wiring combinatoric circuits. The truth tables for both sides of the equations were the same, therefore the equations were accurate.
Unfortunately this is all I saved. Can’t seem to find any exe’s or code. But if I do, you know I’ll post it here!
Related Posts:
- Historical Technology: Machines of Times Gone By April 11, 2011 | 6 comments
- “Home for the Holidays” with Seidenberg School alumni and friends December 2, 2023 | 0 comments
- Dare to VMware March 17, 2008 | 4 comments
- Celebrating 15 Years in Business August 3, 2020 | 1 comments
- I’m running for the Board of Directors of the NY Tech Meetup December 6, 2011 | 0 comments
evelyntiffany says
You do these things in high school? I first worked with Boolean logic in college. Never heard of it until then. I guess there weren't so many things to learn back in my time…
______________
Evelyn Tiffany – dedicated servers programmer.