A show about lifeguards in Los Angeles
What is Baywatch
int fact (int n) {
return n == 0 ? 1 : n * fact(n-1);
}
What is the factorial function in C?
This street is named after the author of the theoretical machine for computation (that bears his name)?
What is Alan Turing Boulevard?
TCP/0x15
0
What is the encoding of null (NUL)?
Driver of a talking turbo-enabled black car
Who is Michael Knight
FUNCTION factorial (n AS Integer) AS Integer
DIM f AS Integer, i AS Integer
f = 1
FOR i = 2 TO n
f = f * i
NEXT i
factorial = f
END FUNCTION
What is the factorial function in BASIC?
This street is named after a person who is mostly known for his invention of the lambda calculus model of computation
What is Alonzo Church Street?
TCP/0x50
What is HTTP (80)?
10
What is the encoding of linefeed/newline (LF)?
The Hoff 9000 is in this movie, which is playing on repeat in the bar
What is Kung Fury
function factorial(n) {
return n < 2 ? 1 : n * factorial(n-1);
}
What is the factorial function in Javascript?
The most widely used computer architechture bears this persons name, and according to his wife he could 'count anything except calories'
What is John von Neumann Road?
TCP/0x1BB
13
What is the encoding of carriage return (CR)?
The country most appreciative of David Hasselhoff’s music
PROC factorial = (INT upb n)LONG LONG INT:(
LONG LONG INT z := 1;
FOR n TO upb n DO z *:= n OD;
z
);
What is the factorial function in ALGOL-60?
This street is named after an Austrian mathematician who is mostly known for his incompleteness theorems and his work on the continuum hypothesis
What is Kurt Gödel Way?
TCP/0x1F4
7
What is the encoding of bell (BEL)?
The blue-ray of this movie contains a music video called Inferno by Zardu Hasselfrau
What is Guardians of the Galaxy vol. 2
fun fact 0 = 0
| fact n = n * fact (n-1)
What is the factorial function in Standard ML?
This street is named after the co-inventor of differential and integral calculus, who was one of the first to anticipate a machine for universal computation.
What is Gottfried Wilhelm Leibniz Court?
UDP/0x4AA
127
What is the encoding of delete (DEL)?