Databases
Javascript
100
The syntax for an insert statement.
What is "INSERT INTO table (fields) VALUES (values);"?
100
This command writes Hello, World! to the screen.
What is Document.write("hello world");
200
SELECT purpose of a select statement.
What is the query used to get data from a database.
200
Use this symbol to compare strings.
What is '=='?
300
The difference between a table and a database.
What is a group or rows with the same fields and a group of related tables?
300
This is the primary purpose of using javascript.
What is client side dynamic content?
400
MySQL is one of this category.
What is an example of a relational database server?
400
The two places where you can put javascript code in an html site.
What are the script tag and the onclick actions?
500
The purpose of the auto-incrementing id column.
What is a technique for normalizing the database with relations and foreign keys?
500
TRUE or FALSE: Javascript never contacts the webserver.
FALSE (AJAX)