What does AEHS stand for?
Albert Einstein High School
Name 3 GWC members NOT in your current group.
Give points if GWC members are successfully named
What does the ";" do in coding?
End a programming statement
If the decimal system is based in 10s, the binary system is based in __.
2s
console.log(2 + "2");
22
Name 2 administrators at AEHS
Ms. Davis, Ms. Johnson, Ms. Rooke
What year was GWC founded?
2024
What are conditionals?
Coding segments that only execute if certain conditions are met.
Translate 2 in binary.
10
int x = 3;
int y = 4;
x = y
y = x
x = 4, y = 4
What theory is Albert Einstein famous for?
Theory of relativity
How many meetings will Girls Who Code have in September?
3
True or false: Variable names are case sensitive
True
Translate 101 in decimal numbers.
3
console.log((7 * 6) + (12 / 4) + hello);
Reference Error / The code does not run.
What is the address of the school?
11135 Newport Mill Rd, Kensington, MD 20895
What 2 classes does Sponsor Mr. Tipton teach?
Honors Chemistry and IB Environmental
What is debugging?
Finding and solving errors in code.
Translate 0110 in decimal numbers.
6
console.log(((8*12)/10) == 9);
False
What year was AEHS created?
1962
What 3 computer science classes have both Alyssa and Lidya taken?
Programming 1, AP CSP, AP CSA/JAVA
Why is documentation in coding important?
Debugging and helping people understand code
Translate 14 in binary numbers.
1110
console.log((2**3) * ((18%4) + 7));
72