The symbol for the modulus operator
What is the percent sign %?
A test of a machine's ability to exhibit behavior equivalent to that of a human (Hint: developed by Alan Turing)
What is the Turing Test?
Block-based visual programming language / Made with the intention to teach kids to code
What is Scratch?
The appropriate data type for this value: 5.5
double
A collection of computers and devices that are connected together
What is a network?
A numeric system that only uses two digits — 0 and 1
What is binary?
Virtual assistant AI technology developed by Amazon
What is Alexa?
Can't run with no class / Make a window with JFrame / Import Libraries
What is Java?
These are the three main levels of privacy in Java.
What are Public, Private, and Protected?
Who is widely recognized to be the 'first' computer programmer?
Ada Lovelace
A sequence of precise instructions that results in a solution.
What is an algorithm?
What makes an AI robot different from a regular robot?
AI means that the machine is able to continue learning after collecting data.
Is tab sensitive / No semicolons / A great starting place
What is Python?
The default value of a String variable
What is null?
Peer code review discovers up to __% of bugs in programs
What is 60%?
Happens when a method calls itself
What is recursion?
Leading AI textbooks define the field as the study of _____.
a) Machine intelligence
b) Intelligent agents
c) Machine learning
d) Artificial Learning
b) Intelligent agents
Started in Netscape / Interactive webpages / Loosely typed
What is JavaScript?
Common method used as an entry point for a java program
What is Main?
Which technology company was founded in Cupertino, CA in 1976?
Apple
The hexadecimal number '7D' is what in decimal?
125
What percent of businesses and organizations employ AI today?
37%
Start with namespace / Main function returns int / Prototype functions
What is C++?
Consider the following code snippet: int i = 10; int n = i++%5; What are the values of i & n?
11 & 0