The Voltage at V_2 (picture)
7.5 V
Given this truth table. Name this gate:
a|b|f
0|0|0
1|0|1
0|1|1
1|1|0
What is XOR gate?
What is an inductor?
The inventor of the telephone.
Who was Alexander Graham Bell?
Buzzword that is backbone of cryptocurrency and is related to security.
Blockchain
Construct the circuit that produces a low pass filter.
RC circuit (Low Pass Filter) (any RC value is okay)
The fastest gate
What is a NAND gate?
These frequencies are used for WiFi.
What are 2.45 GHz and 5 GHz?
The inventor of the AC system, discovered alternating current
Who is Nikola Tesla?
The C function below uses what technique to find factorial?
long int fact( int n){
if (n >= 1){ return n*fact(n-1); }
else{ return 1;}
}
}
Recursion
Construct a half-wave rectifier.
(Picture) AC source, diode, resistor(load)
The theorem that says:
a'+b'=(a*b)'
What is DeMorgan's?
Moving a closed wire loop through a magnetic field induces this.
What is current?
This company made the first Integrated Circuit
What is Intel?
A common application based programming language used with hardware, pay attention to the tab.
Python
Construct a Full-Wave Rectifier.
(Picture) diode bridge, GND must be only at the load for full points
Architecture method where multiple instructions are overlapped during execution.
What is pipelining?
This describes the relationship between the amount of charge in a given volume and the flux out of that same volume.
What is Gauss's law?
She invented the first compiler in 1952
Who is Grace Hopper?
The Big O runtime of the following snippet of code: (picture)
O(n^2)
Name this type of converter.(picture)
Buck-Boost Converter
The minimum time that is required to maintain the constant voltage levels at the excitation inputs of the flip-flop device before the triggering edge of the clock pulse for the levels to be reliably clocked in the flip flop.
What is setup time?
These are Maxwell's 4 equations in differential form.
Hint: ∇ x or ∇ *
(picture)
This field of study was established by Claude Shannon in a landmark paper published in 1948.
What is information theory?
Swap two variables without using a temp variable.
Anything that works. Bonus points for using XOR method.