AEHS Fun Facts
GWC Fun Facts
Coding Fundamentals
Binary Numbers
JavaScript Outputs
100

What does AEHS stand for?

Albert Einstein High School

100

Name 3 GWC members NOT in your current group.

Give points if GWC members are successfully named

100

What does the ";" do in coding?

End a programming statement

100

If the decimal system is based in 10s, the binary system is based in __.

2s

100

console.log(2 + "2");

22

200

Name 2 administrators at AEHS

Ms. Davis, Ms. Johnson, Ms. Rooke

200

What year was GWC founded?

2024

200

What are conditionals?

Coding segments that only execute if certain conditions are met.

200

Translate 2 in binary.

10

200

int x = 3;

int y = 4;

x = y

y = x

x = 4, y = 4

300

What theory is Albert Einstein famous for?

Theory of relativity

300

How many meetings will Girls Who Code have in September?

3

300

True or false: Variable names are case sensitive

True

300

Translate 101 in decimal numbers.

3

300

console.log((7 * 6) + (12 / 4) + hello);

Reference Error / The code does not run. 

400

What is the address of the school?

11135 Newport Mill Rd, Kensington, MD 20895

400

What 2 classes does Sponsor Mr. Tipton teach?

Honors Chemistry and IB Environmental

400

What is debugging?

Finding and solving errors in code.

400

Translate 0110 in decimal numbers.

6

400

console.log(((8*12)/10) == 9);

False

500

What year was AEHS created?

1962

500

What 3 computer science classes have both Alyssa and Lidya taken?

Programming 1, AP CSP, AP CSA/JAVA

500

Why is documentation in coding important?

Debugging and helping people understand code

500

Translate 14 in binary numbers.

1110

500

console.log((2**3) * ((18%4) + 7));

72