CSS
HTML
JavaScript
SQL
Phyton
100

What does CSS mean?

Cascading Style Sheets

100

What does HTML stand for?

Hyper Text Markup Laungauge

100

Which HTML element do we put the JavaScript inside?


<script>

100

What does SQL stand for?

Structured Query Language

100

What is the correct file extension for Python files?

.py

200

What is the correct CSS syntax?

body{color:black}

200

What is the correct  HTML element for the largest heading?

An <h1> tag

200

Where is the correct place to insert JavaScript?

Both the <head> section and the <body> section are correct  

200

Which SQL statement is used to extract data from a database?

SELECT  

200

What is the correct syntax to output the type of a variable or object in Python?

print(type(x))  

300

Which CSS property is used to change the text color of an element?

Color

300

What is the correct HTML for inserting a line break?

An <br> tag

300

True or False: The external JavaScript file must contain the <script> tag.

False

300

Which SQL statement is used to update data in a database?

UPDATE  

300

What is the correct way to create a function in Python?

def myFunction():

400

Which CSS property controls the text size?

Font-size

400

What is the correct HTML element to define an important text?

An <strong> tag

400

How do you call a function named "myFunction"?

myFunction()  

400

Which SQL statement is used to delete data from a database?

DELETE  

400

Which method can be used to remove any whitespace from both the beginning and the end of a string?

strip()  

500

How do you insert a comment in a CSS file?

/ this is a comment /

500

True or false: Inline elements are normally displayed without starting a new line?

True

500

How can you add a comment in JavaScript?

//This is a comment

500

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

500

Which method can be used to return a string in uppercase letters?

upper()