FNBO
Languages
Companies
100

The President of the Bank 

Who is Clark Lauritzen?

100

<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>

What is HTML?

100

The creators of the iPhone.

Who is Apple?

200

The President who signed our founding document.

Who was Abraham Lincoln?


200

def fibonacci(n):

    a, b = 0, 1

    for _ in range(n):

        a, b = b, a + b

    return a

What is Python?


200

The creators of the Windows operating system.

Who is Microsoft?
300

FNBO's most recent merger.

Who is Country Club Bank


300

fn main() {

    let mut numbers = Vec::new();

    for i in 0..10 {

        numbers.push(i * i);

    }

    let sum: i32 = numbers.iter()

        .filter(|&&x| x % 2 == 0)

        .sum();

    println!("Sum of even squares: {}", sum);

}

What is Rust?

300

The creators of SQL.

Who is IBM?

400

The number of states that FNBO does business in.

How many is eight?

400

func isPrime(n int) bool {

    if n <= 1 { return false }

    for i := 2; i*i <= n; i++ {

        if n%i == 0 { return false }

    }

    return true

}

What is GO?

400

The creators of C.

Who is Bell Labs?

500

FNBO's founding year.

When was 1857?

500

function Factorial(n: Integer): Integer;

begin

  if n <= 1 then Factorial := 1 else Factorial := n * Factorial(n-1);

end;

What is Pascal?

500

The creators of UNIX.

Who is Bell Labs?

M
e
n
u