Power/Analog(Requires picture or drawing)
Digital
Electromagnetics
History
Programming
100

The Voltage at V_2 (picture)

7.5 V

100

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?

100
This is a coil of wire which stores energy in the magnetic field.

What is an inductor?

100

The inventor of the telephone.

Who was Alexander Graham Bell?

100

Buzzword that is backbone of cryptocurrency and is related to security.

Blockchain

200

Construct the circuit that produces a low pass filter.

RC circuit (Low Pass Filter) (any RC value is okay)

200

The fastest gate

What is a NAND gate?

200

These frequencies are used for WiFi.

What are 2.45 GHz and 5 GHz?

200

The inventor of the AC system, discovered alternating current

Who is Nikola Tesla?

200

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

300

Construct a half-wave rectifier.

(Picture) AC source, diode, resistor(load)

300

The theorem that says:

a'+b'=(a*b)'

What is DeMorgan's?

300

Moving a closed wire loop through a magnetic field induces this.

What is current?

300

This company made the first Integrated Circuit

What is Intel?

300

A common application based programming language used with hardware, pay attention to the tab. 

Python

400

Construct a Full-Wave Rectifier.

(Picture) diode bridge, GND must be only at the load for full points

400

Architecture method where multiple instructions are overlapped during execution.

What is pipelining?

400

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?

400

She invented the first compiler in 1952

Who is Grace Hopper?

400

The Big O runtime of the following snippet of code: (picture)

O(n^2)

500

Name this type of converter.(picture)

Buck-Boost Converter

500

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?

500

These are Maxwell's 4 equations in differential form.

Hint: ∇ x or ∇ *

(picture)

500

This field of study was established by Claude Shannon in a landmark paper published in 1948.

What is information theory?

500

Swap two variables without using a temp variable.

Anything that works. Bonus points for using XOR method.