The year our chapter was founded
What is 1955?
Ohm's Law
What is V = IR?
Year HKN was founded
When is 1904?
The name of the electrical and computer engineering building (the one we are in!)
Where is Wisenbaker?
The amount of bits in a byte
What is 8?
Our faculty advisor
Who is Dr. Katherine Davis?
A material that allows electricity to flow easily through it
What is a conductor?
First University HKN began at
Where is the University of Illinois Urbana-Champaign?
The year TAMU was founded
When is 1876?
The first computer bug
What is a moth?
The number of officers in our HKN chapter
The path an electric current follows
What is an electric circuit?
The HKN emblem
What is the Wheatstone Bridge?
Miss Reveille
Convert this to Text/Numbers:
01000110 01100001 01100011 01100101 00100000 00110001 00111001 00110101 00110101
What is FACE 1955?
The project that HKN Project team is working on!
What is a robotic arm and hand?
A magnet made by coiling a wire around a piece of iron and running electricity through the wire
What is an electromagnet?
The two founders of HKN
Who are Maurice L. Carr and Edmund B. Wheeler?
The person that Kyle Field was named after
Who is Dr. Edwin Jackson Kyle?
80x86 processor stores data using____________order.
What is little endian?
The most recent school year we won Key Chapter!
When is the 2022-2023 school year?
What is the resistance of this resistor
What is 56K ohms?
Where Eta Kappa Nu's name came from
What is the Greek word for amber "elektron" from which the English words "electron", "electricity", and "electronic" are derived? Specifically, in Greek, the word is ΗΛΕΚΤΡΟΝ or ήλεκτρον. The first, fourth, and last letters form the society name of Eta Kappa Nu, which abbreviates to HKN.
The number of students at Texas A&M University College Station (Exact Number)
What is 72,982?
What is this code doing?
.section .data
fmt: .asciz "%d\n"
nl: .asciz "\n"\
.section .text
.global main
main:
mov r4, #1
does_something:
cmp r4, #11
bge also_does_something
push {r4}
ldr r1, =fmt
mov r2, r4
bl printf
add sp, sp, #4
ldr r0, =nl
bl printf
add r4, r4, #1
b does_something
also_does_something:
mov r7, #1
mov r0, #0
svc #0
What is a for loop?