The amount of ECOR courses taken during first year.
What is 8?
The main engineering building on Carleton campus.
What is the Mackenzie building?
The programming language taught in ECOR1041.
What is Python?
Python control statements include if, else and...
What is "elif"?
Python:
printf("Hello World!");
What is print("Hello World!");
The oldest building on Carleton campus.
What is the Tory building?
The amount of Engineering majors available at Carleton.
What is 13?
Java, Python, C++ are all examples of this type of programming language.
What is object oriented programming?
This number system uses the digits 0-F instead of the usual 0-9.
What is the hexidecimal system?
Java:
String s = new String("This code is smelly.");
String s = "This code is not smelly.";
The amount of clubs and societies available to Carleton students. (guess within the closest hundred)
What is over 300?
The amount of students enrolled in Engineering at Carleton. (guess within the closest thousand)
What is over 7250?
Scrum and sprints are examples of uses of this project management methodology.
What is agile methodology?
In Java, if class A "implements" B, then B must be a...
What is an interface?
In Java, if you perform the equation "int x = (1 / 0);", this exception will be thrown.
What is an ArithmeticException?
The year that Carleton was founded.
What is 1942?
The year that Carleton established the Faculty of Engineering.
What is 1963?
The world's first programmer.
Who is Ada Lovelace?
Of the following data structures, only this one falls under the category of a 'dictionary'.
- Tree - Hash - Linked list - Hash table
What is a hash table?
The line in the shown Python code that contains an error.
What is line 10?
The amount of faculties available to undergraduate students at Carleton.
What is 22?
The year that the first computer related engineering program, the Computer Systems Engineering program, was established at Carleton.
What is 1981?
The world's first Software Engineer.
Who is Margaret Hamilton?
This is performed on 00111010 to turn it into 01110100.
What is a left bit shift?
The line in the shown C code that contains an error.
What is line 11?