The President of the Bank
Who is Clark Lauritzen?
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
What is HTML?
The creators of the iPhone.
Who is Apple?
The President who signed our founding document.
Who was Abraham Lincoln?
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
What is Python?
The creators of the Windows operating system.
FNBO's most recent merger.
Who is Country Club Bank
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?
The creators of SQL.
Who is IBM?
The number of states that FNBO does business in.
How many is eight?
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?
The creators of C.
Who is Bell Labs?
FNBO's founding year.
When was 1857?
function Factorial(n: Integer): Integer;
begin
if n <= 1 then Factorial := 1 else Factorial := n * Factorial(n-1);
end;
What is Pascal?
The creators of UNIX.
Who is Bell Labs?