David Hasselhoff
Factorial Functions
BornHack Street Names
HEX port numbers
ASCII control character encoding
100

A show about lifeguards in Los Angeles

What is Baywatch

100

int fact (int n) {
  return n == 0 ? 1 : n * fact(n-1);
}

What is the factorial function in C?

100

This street is named after the author of the theoretical machine for computation (that bears his name)?

What is Alan Turing Boulevard?

100

TCP/0x15

What is FTP (21)?


100

0

What is the encoding of null (NUL)?

200

Driver of a talking turbo-enabled black car

Who is Michael Knight

200

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?

200

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?

200

TCP/0x50

What is HTTP (80)?


200

10

What is the encoding of linefeed/newline (LF)?


300

The Hoff 9000 is in this movie, which is playing on repeat in the bar

What is Kung Fury


300

function factorial(n) {

  return n < 2 ? 1 : n * factorial(n-1);

}

What is the factorial function in Javascript?

300

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?

300

TCP/0x1BB

What is HTTPS (443)?


300

13

What is the encoding of carriage return (CR)?


400

The country most appreciative of David Hasselhoff’s music

What is Germany


400

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?

400

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?

400

TCP/0x1F4

What is ISAKMP (500)?


400

7

What is the encoding of bell (BEL)?


500

The blue-ray of this movie contains a music video called Inferno by Zardu Hasselfrau

What is Guardians of the Galaxy vol. 2


500

fun fact 0 = 0
  | fact n = n * fact (n-1)

What is the factorial function in Standard ML?

500

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?

500

UDP/0x4AA

What is OpenVPN (1194)?


500

127

What is the encoding of delete (DEL)?


M
e
n
u