What does CSS mean?
Cascading Style Sheets
What does HTML stand for?
Hyper Text Markup Laungauge
Which HTML element do we put the JavaScript inside?
<script>
What does SQL stand for?
Structured Query Language
What is the correct file extension for Python files?
.py
What is the correct CSS syntax?
body{color:black}
What is the correct HTML element for the largest heading?
An <h1> tag
Where is the correct place to insert JavaScript?
Both the <head> section and the <body> section are correct
Which SQL statement is used to extract data from a database?
SELECT
What is the correct syntax to output the type of a variable or object in Python?
print(type(x))
Which CSS property is used to change the text color of an element?
Color
What is the correct HTML for inserting a line break?
An <br> tag
True or False: The external JavaScript file must contain the <script> tag.
False
Which SQL statement is used to update data in a database?
UPDATE
What is the correct way to create a function in Python?
def myFunction():
Which CSS property controls the text size?
Font-size
What is the correct HTML element to define an important text?
An <strong> tag
How do you call a function named "myFunction"?
myFunction()
Which SQL statement is used to delete data from a database?
DELETE
Which method can be used to remove any whitespace from both the beginning and the end of a string?
strip()
How do you insert a comment in a CSS file?
/ this is a comment /
True or false: Inline elements are normally displayed without starting a new line?
True
How can you add a comment in JavaScript?
//This is a comment
True or False: The OR operator displays a record if ANY of the conditions listed are true. The AND operator displays a record if ALL of the conditions listed are true
True
Which method can be used to return a string in uppercase letters?
upper()