Search Header Logo
MYP S3

MYP S3

Assessment

Presentation

Professional Development

9th - 12th Grade

Practice Problem

Medium

Created by

Jonathan Hernandez

Used 2+ times

FREE Resource

23 Slides • 23 Questions

1

media

Homework

Normal


Investigate which are the 10 most used and basic tags in HTML and what each one is used for.

-Can be by hand or on computer or using AI

-Read the information

-The <h1> <h2> etc. tags are not valid.
-Labels that we see today do not count either.

media

2

media

Homework

Easy


Investigate which are the 5 most used and basic tags in HTML and what each one is used for.

-Can be by hand or on computer or using AI

-Read the information

-The <h1> <h2> etc. tags are not valid.
-Labels that we see today do not count either.

media

3

media

Homework

Software and hardware

media

4

Multiple Choice

Which of the following is an example of hardware?

1

Operating system

2

Processor

3

Web browser

4

Video editing software

5

Multiple Choice

What is the main difference between hardware and software?

1

Hardware can be downloaded, software cannot

2

Hardware is the physical part of a system, software is the logical part

3

Both are physical parts of a system

4

Both are physical parts of a system

6

Multiple Choice

Which of the following is a software component?

1

Hard drive

2

Motherboard

3

RAM

4

Antivirus

7

Multiple Select

Which of the following is NOT an example of hardware?
2 correct

1

Word processor

2

Keyboard

3

Monitor

4

Printer

5

Web page

8

Categorize

Options (8)

Antivirus

Video player

Operating system

Video game

hard drive

Mouse

Graphic card

fan

Categorize items appropriately

Software
Hardware

9

Multiple Choice

What role does hardware play in a computer system?

1

Executes and runs software instructions

2

Writes and edits software code

3

Provides cloud storage

4

Displays visual content only

10

media

​Important knowledge or skills

-English

-Math

-Logic

media

11

Multiple Choice

What’s the correct form of the verb in this sentence: “She _____ to the gym every day.”

1

go

2

going

3

goes

4

gone

12

Multiple Choice

Choose the sentence that uses the future tense correctly.

1

I will going to the park tomorrow.

2

I will go to the park tomorrow.

3

I am going to the park tomorrow.

4

I go to the park tomorrow.

13

Fill in the Blank

What is the next number in the sequence?

7, 10, 14, 19.....

14

Fill in the Blank

What is the next number in the sequence?

7, 8, 6, 7, 5.....

15

media

​Logic

media

​HTML+CSS+JS

media

16

media

​Logic

media

Topics

  • Introduction to HTML, CSS, and JavaScript.

  • Structuring content with HTML.

  • Styling with CSS.

  • Basic interactivity using JavaScript.

17

media

​Logic

media

Objectives

  • Understand how to create a basic web page using HTML.

  • Learn how to style elements using CSS (font size, color, and alignment).

  • Use JavaScript to dynamically change styles, such as font size.

  • Apply basic coding practices and understand the relationship between HTML, CSS, and JavaScript.

18

media

​Logic

media

Skills to Develop

  • HTML structure and tags (headings, paragraphs).

  • CSS styling (font size, color, alignment).

  • Basic JavaScript (variables and DOM manipulation).

20

Multiple Choice

Complete the sentence: “If I _____ more time, I would have visited the museum.”

1

had

2

have

3

will have

4

has

21

Multiple Choice

Which of the following sentences is grammatically correct?

1

I have seen her yesterday.

2

I seen her yesterday.

3

I saw her yesterday.

4

I seeing her yesterday.

22

media

​Logic

media
media

​File type

-This helps make the page more efficient.

-Allows the browser to know in advance the type of language

-You can skip it

23

media

​Logic

media
media

​Opening or start of the code












End or closure of the code

24

media

​Logic

media
media

Top section of the code
Open & Close


-Used to add information only for the program

-Used to call external style sources

25

Multiple Choice

How do you define the start and end of the code?

1

</html> <html>

2

<start> <end>

3

</html> </html>

4

<html> </html>

26

Multiple Choice

How do you define the start and end of the head of the code?

1

</head> <html>

2

<head> <end>

3

<html> </html>

4

<head> </head>

27

Multiple Select

What is the head of the code used for?

2 correct

1

Used to add data

2

Used to call external style sources

3

Used to define the header

4

Used to add the language

5

Used to add information only for the program

28

media

​Logic

media
media

The body of the code
Open & Close


-Used to define scripts and create objects

29

media

​Logic

media
media

"H1" and "p" are used to define a header and a paragraph

30

media

​Logic

media
media

31

media

​Logic

media

Additional information can be added

-This is used to define the language of our code

-Very useful to be able to translate pages

media

32

media

media

​Logic

media

The Meta tag is used to add metadata.

-In this case the character set that we are going to use

-UTF-8 is the most used character set.

33

media

​Logic

media

​Charset

media

34

media

​Logic

media

It is used to automatically adjust the page size to that of any device

Also adjusts the page scale to base1 value


media

35

media

​Logic

media

The "Title" tag is used to define the title of your page

Open & Close


media

36

Fill in the Blank

What is the result of the following operation?

5+2*7

37

Fill in the Blank

What is the result of the following operation?

9-6/3

38

media

media

​Logic

media

The h1 tag is used to define a header... in this case a main header, h2 for a secondary header

Open & Close


39

media

media

​Logic

media

The "p" tag is used to define a paragraph


You cannot define individual paragraphs here.

40

Multiple Choice

What tag is used to create the main heading?

1

<h2>

2

<h3>

3

<h1>

4

<p>

5

<head>

41

Fill in the Blank

How many paragraphs are in the above example?

42

Multiple Choice

What does the <title> tag affect?

1

The heading in the body

2

The paragraph text

3

The background color

4

The title of the page

43

Multiple Choice

What is the body of the code used for?

1

Used to define scripts and create objects

2

Used to add style

3

Used to add information

4

Used to define initial parameters

44

media

​Logic

media

Related Exercise 1


-Add another heading <h3> below the second paragraph.

-Write another paragraph below the new heading.
-Write another paragraph between the two initial headings
-Change the texts for something that makes sense... Example: A news, A story, a poem

45

Multiple Choice

Which sentence is in the passive voice?

1

The chef cooked the meal.

2

The meal was cooked by the chef.

3

The chef was cooking the meal.

4

The meal cooked by the chef.

46

Multiple Choice

Choose the best word to complete the sentence: “He’s not very good _____ playing basketball.”

1

in

2

of

3

to

4

at

media

Homework

Normal


Investigate which are the 10 most used and basic tags in HTML and what each one is used for.

-Can be by hand or on computer or using AI

-Read the information

-The <h1> <h2> etc. tags are not valid.
-Labels that we see today do not count either.

media

Show answer

Auto Play

Slide 1 / 46

SLIDE