Python
Javascript
HTML
CSS
Coding
100

What will be the output of this code?


print("Hello World")

Hello World

100

Inside which HTML element do we put the JavaScript?

<Script>

100

What does HTML stand for?

HyperText Markup Language

100

What does CSS stand for?

Cascading Style Sheet

100

Boxes in a computer's memory that can be used to store and retrieve data.

Variable

200

Convert a string to an integer (Whole number)

int()

200

How do you call a function named "myFunction"?

myFunction()

200

What is this tag?

<ul></ul>

Unordered list

200

How do you add an image as your background in CSS?

background-image

200

Procedures to handle events such as "When the user clicks this button, do this..."

Event Handlers

300

What is missing from this code?

print(Hello World!)

quotation marks

300

How do you add a comment in JavaScript?

//This is a comment

300

What tag breaks a line of text at the point where the tag appears?

<br>
300
What does the selector do?

Specify which elements are to be influenced by the style rule



300

All languages have ___ or grammar composed of rules that specify why the feature of the language can be used

Syntax

400
What will be the output for this function?


def randomFunction():

      name = input("Enter you name")

      print(f"Hello my name is {name}")


Nothing because the function was not called

400

What does this code output?

function myFunction() {  

alert("This is my function.");
}

myFunction()

An alert box that says This is my function

400

What is the default head structure?

<head>

  <meta charset="utf-8" />

  <title>My test page</title>

</head>


400

What clears an area around the content which is inside the border of an element?

padding

400

name the 3 most popular programming languages

C programming, Java programming, Python Programming

500

What will print out if you enter Tuesday?

dayoftheweek = input("What day is today? ")

if dayoftheweek == "Monday":

     print("Rainy days and Mondays always get me!")

elif dayoftheweek == "Friday":

      print("Lessgoooo!!!")

elif dayoftheweek == "Sunday":

      print("noooo the weekend where did it go")

else:

     print("What day is it today?")

What day is it today?

500

What does this do?

document.getElementById("demo").innerHTML = "Hello World!";



Finds the HTML tag that has the id demo and inserts Hello World! into it.

500

What is the default structure for HTML?

<!DOCTYPE html>

<html lang="en-US">

  <head>

    <meta charset="utf-8" />

    <title>My test page</title>

  </head>

  <body>

    <p>This is my page</p>

  </body>

</html>

500

How do you restrict paragraphs from automatically applying margins/padding?

p {

padding:0;

margin:0;

}

500

What is an Algorithm?

a step-by-step procedure to resolve any problem

M
e
n
u