wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML & CSS Coding Questions

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

Which of the following HTML codes creates a basic page with a heading, a paragraph, and a horizontal rule?

a)

Heading


Paragraph

b)

Heading

Paragraph

c)

Heading


d)

Paragraph


2.

Which HTML code creates a navigation bar with three links: Home, About, and Contact?

3.

Which HTML code correctly inserts an image into a page, adds alternative text, and centers the image using HTML (not CSS)?

a)

Description

b)

Description

c)

Description

d)

Description

4.

Which HTML code correctly creates a table with 3 columns, 4 rows, a table header, and a caption?

a)

Table Caption
Header1Header2Header3
Row1Col1Row1Col2Row1Col3
Row2Col1Row2Col2Row2Col3
Row3Col1Row3Col2Row3Col3
Row4Col1Row4Col2Row4Col3

b)

Header1Header2Header3
Row1Col1Row1Col2Row1Col3
Row2Col1Row2Col2Row2Col3
Row3Col1Row3Col2Row3Col3

c)

Table Caption
Header1Header2
Row1Col1Row1Col2
Row2Col1Row2Col2
Row3Col1Row3Col2
Row4Col1Row4Col2

d)

Table Caption
Header1Header2Header3
Row1Col1Row1Col2Row1Col3
Row2Col1Row2Col2Row2Col3

5.

Which of the following best describes how to present your top 3 favorite movies and foods as requested in the question?

a)

Create an ordered list for movies and an unordered list for foods.

b)

Create two unordered lists: one for movies and one for foods.

c)

Create two ordered lists: one for movies and one for foods.

d)

Create a paragraph describing your favorite movies and foods.

6.

Which of the following elements should be included in a form as described: a name field, an email field, and a submit button?

a)

Name field, email field, submit button

b)

Name field, password field, reset button

c)

Username field, email field, cancel button

d)

Name field, phone number field, submit button

7.

Embed a YouTube video into a webpage using an iframe.

a)

b)

c)

d)

8.

A page should use which of the following heading levels to include all six types?

a)

h1–h6

b)

h1–h5

c)

h2–h6

d)

h1–h4

9.

Which of the following describes a form with a dropdown list of colors and a checkbox labeled 'Subscribe'?

a)

A form with a dropdown list of colors and a checkbox labeled 'Subscribe'.

b)

A form with a text input for colors and a radio button for 'Subscribe'.

c)

A form with a dropdown list of colors and a button labeled 'Subscribe'.

d)

A form with a dropdown list of colors and a checkbox labeled 'Unsubscribe'.

10.

Which semantic HTML tags should be used to create a simple page layout?

a)

,
,

b)

, ,

c)

d)

,

,

11.

Select the correct HTML code to create a link that opens in a new tab using target="_blank".

12.

Which of the following is an example of a definition list with at least 3 terms and definitions?

a)

HTML
HyperText Markup Language
CSS
Cascading Style Sheets
JS
JavaScript

b)

  • HTML
  • CSS
  • JS

c)

  1. HTML
  2. CSS
  3. JS

d)

HTMLCSSJS

13.

Select the correct HTML code to add an audio file to a page using the audio tag with controls.

a)

b)

c)

d)

14.

Select your preferred programming language from the options below.

a)

Python

b)

JavaScript

c)

Ruby

d)

C++

15.

Select the correct HTML structure for a simple blog post using

,
, and
a)

b)

c)

d)

16.

Style a heading to be centered, blue, and uppercase.

a)

text-align: center; color: blue; text-transform: uppercase;

b)

text-align: left; color: red; text-transform: lowercase;

c)

text-align: right; color: green; text-transform: capitalize;

d)

text-align: center; color: black; text-transform: lowercase;

17.

To create a layout using Flexbox where three boxes are aligned in a row with equal spacing, which CSS property and value should be used?

a)

justify-content: space-between;

b)

align-items: center;

c)

flex-direction: column;

d)

justify-content: flex-end;

18.

Apply a background image to the entire webpage and make it cover the full screen.

a)

Use CSS: body { background-image: url('image.jpg'); background-size: cover; }

b)

Use CSS: body { background-image: url('image.jpg'); background-repeat: repeat; }

c)

Use CSS: body { background-image: url('image.jpg'); background-size: contain; }

d)

Use CSS: body { background-image: url('image.jpg'); background-attachment: fixed; }

19.

Style a button so that it changes color on hover using the :hover selector.

a)

button:hover { background-color: blue; }

b)

button:active { background-color: blue; }

c)

button:focus { background-color: blue; }

d)

button:visited { background-color: blue; }

20.

Select the correct CSS class that adds a border, padding, and rounded corners to an element.

a)

.box { border: 1px solid #000; padding: 10px; border-radius: 8px; }

b)

.box { border: none; padding: 0; border-radius: 0; }

c)

.box { border: 1px dashed #000; margin: 10px; border-radius: 0; }

d)

.box { border: 2px dotted #000; padding: 5px; border-radius: 0; }

21.

Use CSS Grid to create a 3-column layout.

a)

display: grid; grid-template-columns: 1fr 1fr 1fr;

b)

display: flex; flex-direction: column;

c)

display: grid; grid-template-rows: 1fr 1fr 1fr;

d)

display: block; column-count: 3;

22.

To make a navigation bar horizontal, which CSS property can be used?

a)

display: flex;

b)

display: block;

c)

float: left;

d)

position: absolute;

23.

Which CSS properties are essential to create a card UI with shadow, padding, and a width limit (e.g., 300px)?

a)

box-shadow, padding, max-width

b)

border-radius, margin, min-width

c)

background-color, float, width

d)

display: flex, gap, min-height

24.

Style an image to be circular using border-radius.

a)

border-radius: 50%;

b)

border-radius: 100px;

c)

border-radius: 0;

d)

border-radius: 10%;

25.

A responsive webpage should have text size that adjusts using which of the following relative units?

a)

em, rem, %

b)

px, pt, in

c)

cm, mm, px

d)

vh, vw, px

26.

Explain how to create animations using @keyframes to move a box from left to right.

a)

Use @keyframes to define the movement from left to right and apply it to the box with the animation property.

b)

Use @keyframes to change the box color and apply it with the transition property.

c)

Use @keyframes to rotate the box and apply it with the animation property.

d)

Use @keyframes to move the box from top to bottom and apply it with the animation property.

27.

Which of the following describes the correct steps to use a Google Font by linking it in HTML and applying it to the body text?

a)

Add the Google Font link in the section and set the font-family in the body CSS.

b)

Add the Google Font link in the section and set the font-family in the tag.</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>c)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Download the Google Font and use it directly in the <body> tag without linking.</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>d)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Use the Google Font link in a <script> tag and apply the font-family in the <footer>.</p></span></div></div><!--]--></div><!--[--><!--]--></div></div></div><div class="text-sm flex flex-col mt-8 no-break-within hide-question question-render b-a-auto relative w-full" data-v-7c7620e1><!----><div class="mcq flex gap-4 [question.structure.kind !== QuestionType.FLASHCARD ? 'items-baseline relative'] text-sm" fontsize="L" repaintflag="true" swapfrontwithback="false" showonlyfront="false" data-v-7c7620e1 data-v-ebf2363e><div class="flex items-start justify-end" data-v-ebf2363e>28.</div><div class="flex flex-col gap-4 flex-grow" data-v-ebf2363e><div class="flex-col flex items-start gap-4" data-v-ebf2363e><!----><div data-v-ebf2363e><p>How would you animate a button hover effect that scales it slightly?</p></div></div><div class="options" data-v-ebf2363e><!--[--><div class="option" data-v-ebf2363e><span data-v-ebf2363e>a)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>By using CSS transform: scale() with a transition on hover.</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>b)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>By changing the button's color using CSS.</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>c)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>By adding a box-shadow on hover only.</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>d)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>By hiding the button on hover.</p></span></div></div><!--]--></div><!--[--><!--]--></div></div></div><div class="text-sm flex flex-col mt-8 no-break-within hide-question question-render b-a-auto relative w-full" data-v-7c7620e1><!----><div class="mcq flex gap-4 [question.structure.kind !== QuestionType.FLASHCARD ? 'items-baseline relative'] text-sm" fontsize="L" repaintflag="true" swapfrontwithback="false" showonlyfront="false" data-v-7c7620e1 data-v-ebf2363e><div class="flex items-start justify-end" data-v-ebf2363e>29.</div><div class="flex flex-col gap-4 flex-grow" data-v-ebf2363e><div class="flex-col flex items-start gap-4" data-v-ebf2363e><!----><div data-v-ebf2363e><p>Building a two-column layout can be achieved using which of the following CSS techniques?</p></div></div><div class="options" data-v-ebf2363e><!--[--><div class="option" data-v-ebf2363e><span data-v-ebf2363e>a)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Using floats or Flexbox</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>b)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Using only inline styles</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>c)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Using JavaScript functions</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>d)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>Using CSS animations</p></span></div></div><!--]--></div><!--[--><!--]--></div></div></div><div class="text-sm flex flex-col mt-8 no-break-within hide-question question-render b-a-auto relative w-full" data-v-7c7620e1><!----><div class="mcq flex gap-4 [question.structure.kind !== QuestionType.FLASHCARD ? 'items-baseline relative'] text-sm" fontsize="L" repaintflag="true" swapfrontwithback="false" showonlyfront="false" data-v-7c7620e1 data-v-ebf2363e><div class="flex items-start justify-end" data-v-ebf2363e>30.</div><div class="flex flex-col gap-4 flex-grow" data-v-ebf2363e><div class="flex-col flex items-start gap-4" data-v-ebf2363e><!----><div data-v-ebf2363e><p>To create a fixed header that stays at the top when scrolling, which CSS property should you use?</p></div></div><div class="options" data-v-ebf2363e><!--[--><div class="option" data-v-ebf2363e><span data-v-ebf2363e>a)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>position: fixed;</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>b)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>position: relative;</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>c)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>position: static;</p></span></div></div><div class="option" data-v-ebf2363e><span data-v-ebf2363e>d)</span><div class="flex flex-col gap-2 items-start" data-v-ebf2363e><!----><span data-v-ebf2363e><p>position: absolute;</p></span></div></div><!--]--></div><!--[--><!--]--></div></div></div><!--]--><!----><!----></div></div></div><div class="zoom-controls select-none hidden md:flex fixed bottom-4 left-10 flex-col gap-2" data-v-7c7620e1><div class="px-2 py-1 w-fit rounded border-1 border-dark-20% bg-light text-sm font-semibold cursor-pointer" data-testid="zoom-plus" data-v-7c7620e1><div class="flex justify-center items-center w-3 h-3 text-[9px] text-wds-dark-500 flex-shrink-0" data-testid data-v-7c7620e1><i class="far fa-magnifying-glass-plus"></i></div></div><div class="px-2 py-1 w-fit rounded border-1 border-dark-20% bg-light text-sm font-semibold cursor-pointer" data-testid="zoom-minus" data-v-7c7620e1><div class="flex justify-center items-center w-3 h-3 text-[9px] text-wds-dark-500 flex-shrink-0" data-testid data-v-7c7620e1><i class="far fa-magnifying-glass-minus"></i></div></div><div data-testid="worksheet-reset-btn" class="text-dark-6 cursor-default px-2 py-1 rounded border-1 border-dark-20% bg-light text-sm font-semibold" data-v-7c7620e1>Reset</div></div></div></div><!--]--><!--]--></div><!--]--><!--]--></div><aside class="info-section" data-testid="worksheet-info-section" data-v-9d53f3f8><div class="relative box-border w-full h-full bg-wds-light-500 border-l border-wds-light-200" data-v-9d53f3f8><!--[--><!--[--><div class="flex p-5 gap-0 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 pt-0 pr-0 pb-4 pl-0 justify-start items-stretch flex-col flex-nowrap" style=""><!--[--><!--[--><h1 class="text-w-header-base font-semibold"><!--[-->HTML & CSS Coding Questions<!--]--></h1><div class="flex gap-3 justify-start items-stretch flex-row flex-wrap" style=""><!--[--><!--[--><div class="flex gap-1 justify-start items-stretch flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center w-4 h-4 text-xs text-wds-dark-200 flex-shrink-0" data-testid><i class="icon-regular-list-ul"></i></div><p id class="text-wds-dark-200 text-w-content-small font-normal"><!--[--><!--[-->30 questions<!--]--><!--]--></p><!--]--><!--]--></div><div class="flex gap-1 justify-start items-stretch flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center w-4 h-4 text-xs text-wds-dark-200 flex-shrink-0" data-testid><i class="icon-regular-graduation-cap"></i></div><p id class="text-wds-dark-200 text-w-content-small font-normal"><!--[--><!--[-->Professional Development - Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center w-4 h-4 text-xs text-wds-dark-200 flex-shrink-0" data-testid><i class="icon-regular-book"></i></div><!--[--><div aria-describedby="tooltip-v-0-0-4" class="contents"><!--[--><p class="text-w-content-small font-normal text-wds-dark-200 text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->Information Technology (IT)<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><div class="flex gap-3 py-4 px-0 justify-start items-stretch flex-col flex-nowrap" style=""><!--[--><!--[--><!----><!----><!--[--><div class="w-full"><!--[--><!--[--><!--[--><button type="button" aria-label="Print / Download" class="bg-wds-magenta-500 hover:bg-wds-magenta-400 active:bg-transparent py-2 px-4 border-transparent rounded-w-admin-xl min-w-20 bg-gradient-to-br from-wds-magenta-500 from-0% to-wds-purple-500 to-100% bg-gradient-to-br hover:from-wds-magenta-400 hover:from-0% hover:to-wds-purple-400 hover:to-100% bg-gradient-to-br active:from-wds-magenta-600 active:from-0% active:to-wds-purple-500 active:to-100% border disabled:my-px bg-clip-padding group min-w-20 rounded-lg flex items-center justify-center focus-visible:outline focus-visible:outline-4 focus-visible:outline-offset-2 shrink-0 focus-visible:outline-ds-lilac-500-40 cursor-pointer w-full" data-testid="print-download-btn" data-track="Print / Download-ukw-button"><!----><div class="visible"><!--[--><!--[--><div class="flex gap-2 justify-center items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center h-5 text-sm text-wds-light-500 flex-shrink-0" data-testid><i class="far fa-download"></i></div><!----><p id class="text-wds-light-500 none underline-offset-4 select-none text-w-control-base font-semibold text-nowrap" data-testid="button-text"><!--[--><!--[-->Print / Download<!--]--><!--]--></p><!----><!----><!--]--><!--]--></div><!--]--><!--]--></div></button><!--]--><!--]--><!--]--></div><!----><!--]--><!----><!----><!--]--><!--]--></div><!----><div class="flex gap-3 pt-4 pr-0 pb-0 pl-0 justify-start items-stretch flex-col flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-between items-stretch flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-start items-stretch flex-grow basis-0 flex-row flex-nowrap" style=""><!--[--><!--[--><!--[--><div class="w-full"><!--[--><!--[--><!--[--><button type="button" aria-label="Play as a game" class="bg-wds-light-500 hover:bg-wds-magenta-100 active:bg-wds-magenta-200 py-2 px-4 border-wds-magenta-500 rounded-w-admin-lg min-w-20 border disabled:my-px bg-clip-padding group min-w-20 rounded-lg flex items-center justify-center focus-visible:outline focus-visible:outline-4 focus-visible:outline-offset-2 shrink-0 focus-visible:outline-ds-lilac-500-40 cursor-pointer w-full" data-track="Play as a game-ukw-button"><!----><div class="visible"><!--[--><!--[--><div class="flex gap-1 justify-center items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center h-4 text-xs text-wds-magenta-600 flex-shrink-0" data-testid><i class="fas fa-sparkles"></i></div><!----><p id class="text-wds-magenta-600 none underline-offset-4 select-none text-w-control-small font-semibold text-nowrap" data-testid="button-text"><!--[--><!--[-->Play as a game<!--]--><!--]--></p><!----><!----><!--]--><!--]--></div><!--]--><!--]--></div></button><!--]--><!--]--><!--]--></div><!----><!--]--><!--]--><!--]--></div><div class="flex justify-start items-stretch flex-grow basis-0 flex-row flex-nowrap" style=""><!--[--><!--[--><!--[--><div class="w-full"><!--[--><!--[--><!--[--><button type="button" aria-label="Share" class="bg-wds-light-500 hover:bg-wds-light-300 active:bg-wds-light-200 py-2 px-4 border-wds-light-100 rounded-w-admin-lg min-w-20 border disabled:my-px bg-clip-padding group min-w-20 rounded-lg flex items-center justify-center focus-visible:outline focus-visible:outline-4 focus-visible:outline-offset-2 shrink-0 focus-visible:outline-ds-lilac-500-40 cursor-pointer w-full" data-track="Share-ukw-button"><!----><div class="visible"><!--[--><!--[--><div class="flex gap-1 justify-center items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center h-4 text-xs text-wds-dark-500 flex-shrink-0" data-testid><i class="fas fa-share"></i></div><!----><p id class="text-wds-dark-500 none underline-offset-4 select-none text-w-control-small font-semibold text-nowrap" data-testid="button-text"><!--[--><!--[-->Share<!--]--><!--]--></p><!----><!----><!--]--><!--]--></div><!--]--><!--]--></div></button><!--]--><!--]--><!--]--></div><!----><!--]--><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></aside><!--]--><!--]--></main><!----><!--]--><!--]--></div><!--]--><!--]--></div></div><div class="max-w-320 my-0 mx-auto p-8 print:hidden"><!--[--><!--[--><div class="flex bg-wds-light-500 gap-4 p-8 rounded-w-admin-xl border border-wds-light-200 justify-start items-stretch flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-3 max-w-40 justify-start items-start flex-col flex-nowrap" data-testid="similar-resources-identifier" style=""><!--[--><!--[--><div class="flex min-h-16 min-w-16 max-w-16 rounded-full bg-wds-info-50 justify-center items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center w-10 h-10 text-3xl text-wds-info-600 flex-shrink-0" data-testid><i class="fas fa-calculator-simple"></i></div><!--]--><!--]--></div><h2 class="text-w-header-base font-semibold"><!--[-->Similar Resources on Wayground<!--]--></h2><button type="button" aria-label="View all" class="bg-transparent hover:bg-wds-dark-500-10 active:bg-wds-dark-500-20 py-2 px-4 border-wds-light-100 rounded-w-admin-lg min-w-20 border disabled:my-px bg-clip-padding group min-w-20 rounded-lg flex items-center justify-center focus-visible:outline focus-visible:outline-4 focus-visible:outline-offset-2 shrink-0 focus-visible:outline-ds-lilac-500-40 cursor-pointer" data-testid="recommendations-see-more-button" data-track="View all-ukw-button"><!----><div class="visible"><!--[--><!--[--><div class="flex gap-1 justify-center items-center flex-row flex-nowrap" style=""><!--[--><!--[--><!----><!----><p id class="text-wds-dark-500 none underline-offset-4 select-none text-w-control-small font-semibold text-nowrap" data-testid="button-text"><!--[--><!--[-->View all<!--]--><!--]--></p><div class="flex justify-center items-center h-4 text-xs text-wds-dark-500 flex-shrink-0" data-testid><i class="fas fa-arrow-right"></i></div><!----><!--]--><!--]--></div><!--]--><!--]--></div></button><!--]--><!--]--></div><div class="overflow-hidden w-auto h-auto flex-grow flex-shrink basis-full relative" style="" data-testid="recommendation-container" data-v-fdf4f615><!--[--><!--[--><div class="h-full relative" data-v-fdf4f615 data-v-8e8bc9d6><!--[--><!--[--><div class="scroll-container w-auto h-full hide-scrollbar" style="height:;max-height:70vh;" data-v-8e8bc9d6><div class="content h-full" data-v-8e8bc9d6><!--[--><!--[--><div class="flex gap-4 justify-start items-stretch flex-row flex-nowrap" style=""><!--[--><!--[--><!--[--><a href="/print/quiz/69144ab200f595966538f5e7" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-69144ab200f595966538f5e7"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="AWS MCQ Questions (Medium Level)" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 25 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-5" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->AWS MCQ Questions (Medium Level)<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/691c4f500f463b83f56ac26c" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-691c4f500f463b83f56ac26c"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="BAHASA INGGRIS" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 25 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-6" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->BAHASA INGGRIS<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/68c51232bda3abe6a1870464" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-68c51232bda3abe6a1870464"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="ALTSCHOOL QUIZ 13/9/25" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 25 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-7" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->ALTSCHOOL QUIZ 13/9/25<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/67daf30832610c2bd7c8a1d2" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-67daf30832610c2bd7c8a1d2"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="Bendy and the ink machine" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 26 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-8" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->Bendy and the ink machine<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/68a449846c8c25a7053a79ae" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-68a449846c8c25a7053a79ae"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="Python Programming Quiz 1" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 30 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-9" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->Python Programming Quiz 1<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/68c513cffcc89e10d753ef11" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-68c513cffcc89e10d753ef11"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="Pelatihan KKA LPD KodeKiddo Fase D" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 30 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-10" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->Pelatihan KKA LPD KodeKiddo Fase D<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/6925c4e641cc6f847869d5b7" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-6925c4e641cc6f847869d5b7"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="CySA+ Day 1-4" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 35 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-11" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->CySA+ Day 1-4<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><a href="/print/quiz/66991d7f0d914f5892dc36d4" target="_blank" rel="noopener noreferrer" data-testid="activity-recommendation-card-66991d7f0d914f5892dc36d4"><div class="w-60 h-auto" style=""><!--[--><!--[--><div class="flex cursor-pointer bg-wds-light-500 rounded-w-admin-lg border border-wds-light-200 transition-all hover:border-wds-dark-500 overflow-hidden justify-start items-start flex-col flex-nowrap" style=""><!--[--><!--[--><div class="relative box-border w-full h-full bg-wds-light-400 relative"><!--[--><!--[--><div class="overflow-hidden w-auto h-40 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><img src="https://cf.quizizz.com/image/image-loader.svg" alt="Net+ day 5" class="w-full h-full object-cover" data-testid="undefined-image-loading"><!----><!--]--><!--]--></div><div class="top-2 left-2 absolute"><!--[--><!--]--></div><div class="bottom-2 left-2 absolute"><!--[--><div class=""><!--[--><!--[--><div class="bg-wds-light-500 py-1 px-2 border max-w-max border-wds-light-200 rounded-w-admin-md w-auto h-6" data-testid="activity-display-card-stats" style=""><!--[--><!--[--><p id class="text-wds-dark-500 text-w-control-small font-semibold" data-testid="pill-text"><!--[--><!--[--><span class="flex items-center gap-1"><!----><!----> 25 questions <!----></span><!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><div class="border-t border-wds-light-200 w-60 h-auto" style=""><!--[--><!--[--><div class="flex gap-2 py-4 px-2 justify-start items-stretch w-full flex-col flex-nowrap" style=""><!--[--><!--[--><!--[--><div aria-describedby="tooltip-v-0-0-12" class="contents"><!--[--><p class="text-w-content-base font-semibold text-clip text-left line-clamp-1 w-auto overflow-none" tooltipposition="top"><!--[--><!--[--><!--[-->Net+ day 5<!--]--><!--]--><!--]--></p><!--]--></div><!----><!--]--><div class="flex gap-1 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex gap-2 justify-start items-center flex-row flex-nowrap" style=""><!--[--><!--[--><div class="overflow-hidden w-4 h-4 flex-shrink-0 relative group" style=""><!--[--><!--[--><!----><!--[--><img style="" src="https://cf.quizizz.com/image/assessment-icon.svg" alt="quiz" class="w-full h-full" data-testid="activity-type-image"><!----><!--]--><!----><!--]--><!--]--></div><p id class="text-wds-dark-200 text-w-content-small font-normal" data-testid="activity-type-text"><!--[--><!--[-->Worksheet<!--]--><!--]--></p><!--]--><!--]--></div><p id class="text-wds-dark-100 text-w-content-base font-semibold"><!--[--><!--[--> • <!--]--><!--]--></p><p id class="text-wds-dark-200 text-w-content-small font-semibold" data-testid="activity-display-card-grade"><!--[--><!--[-->Professional Development<!--]--><!--]--></p><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div></a><!--]--><!--]--><!--]--></div><!--]--><!--]--></div></div><div class="left-0 bottom-0 absolute w-full" data-v-8e8bc9d6><!--[--><div class="bg-wds-dark-500-50 border border-wds-light-500-20 rounded-w-admin-lg w-auto h-2 x-thumb relative cursor-grab" style="width:0%;left:0%;opacity:0;" data-v-8e8bc9d6><!--[--><!--]--></div><!--]--></div><!----><!--]--><!--]--></div><!----><div class="right-0 top-0 bottom-0 z-100 absolute gradient-right" data-v-fdf4f615><!--[--><div class="flex p-2 justify-start items-center w-full h-full flex-row flex-nowrap" style="" data-v-fdf4f615><!--[--><!--[--><button type="button" aria-label="chevron-right" class="bg-wds-light-500 hover:bg-wds-light-300 active:bg-wds-light-200 w-8 h-8 border-wds-light-100 border rounded-w-admin-lg border bg-clip-padding relative rounded flex items-center justify-center cursor-pointer focus-visible:outline focus-visible:outline-4 focus-visible:outline-offset-2 focus-visible:outline-ds-lilac-500-40 shrink-0" data-testid="carousel-right-button" data-v-fdf4f615><!----><div class="flex visible justify-center items-center h-full flex-row flex-nowrap" style=""><!--[--><!--[--><div class="flex justify-center items-center w-5 h-5 text-sm text-wds-dark-500 flex-shrink-0" data-testid><i class="fas fa-chevron-right"></i></div><!--]--><!--]--></div><!----></button><!--]--><!--]--></div><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><!--]--><!--]--></div><span></span><!--]--><!--]--><!--]--><div id="overlay-layer-1" class="z-1 absolute top-0 left-0"></div><div id="modal-layer-2" class="z-5 absolute top-0 left-0"></div><div id="modal-overlay-layer-3" class="z-10 absolute top-0 left-0"></div><div id="third-party-layer-4" class="z-20 absolute top-0 left-0"></div><div id="layer-1" class="z-1 absolute top-0 left-0"></div><div id="layer-2" class="z-5 absolute top-0 left-0"></div><div id="layer-3" class="z-10 absolute top-0 left-0"></div><div id="layer-4" class="z-20 absolute top-0 left-0"></div><div id="layer-5" class="z-50 absolute top-0 left-0"></div><!--]--></div><div id="teleports"></div><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="true" id="__NUXT_DATA__">[["ShallowReactive",1],{"data":2,"state":2149,"once":2152,"_errors":2153,"serverRendered":8,"path":2155,"pinia":2156,"country":2151,"region":-1},["ShallowReactive",3],{"print-feature-flags":4,"print-quiz-6934787cb75cb328f5001a08":601,"print-recommendations-6934787cb75cb328f5001a08-false":2068},{"DISCUSSION_BOARD":5,"TABLE_FILL_SUPPORT":7,"acc-page-expired-accommodations":9,"accommodation-preview":10,"accommodations-row":12,"accommodations-short-term-full-access":14,"activation-exp":15,"activation-explore-page":16,"activation-holdout":17,"activation-skip-settings":19,"activation-srp-toggles":20,"activity-status-lessons":21,"adp-standard-tagging":22,"adp-youtube-iv-variants":23,"ai-analyze":24,"ai-byoc-new-extract-flow":25,"ai-byoc-new-generate-flow":26,"ai-create-enhance":27,"ai-enhance-v2":28,"ai-extract-diagrams-using-mistral":30,"ai-extract-from-multiple-images-v2":31,"ai-extract-from-two-pages":32,"ai-extract-images-from-options":33,"ai-launchpad":34,"ai-lessons-supply-interlacing":35,"ai-localisation":36,"ai-localisation-enhance":37,"ai-math-ques-correctness-eval":38,"ai-mistral-auto-snip-in-generate":39,"ai-quiz-generator":40,"ai-std-tag-without-grade":41,"ai-title-generation":42,"ai-workflow-reports":43,"ai-workflows-enhance":44,"allow-local-files-import":45,"app-bundle-diff":46,"app-enable-belajar-id":47,"app-enable-vision-api":48,"app-join-side-create-quiz":49,"app-library-limits":50,"app-new-editor-web-url":51,"app-quizizz-ai":52,"app-search-alternative":53,"app-teacher-powerup":54,"app-theme-tooltip":55,"app-theme-video-animation":56,"app-webview-check":57,"async-bulk-import":58,"async-live-dash-redirect":59,"async-live-new-users":60,"aura-generation":61,"auth-server-availability":62,"auth-service-migration":64,"autocomplete-custom-tile":66,"avatar-shop-v2":67,"avatar-shop-v3":68,"basic-plan-admin-user-admin-controls-activation":69,"belajar-id-sso":70,"blackboard-lti":71,"block_reports":72,"bm25-exp":73,"bncc-test-prep":74,"book-discovery":75,"book-discovery-variations":76,"branding-zap-to-lock":78,"brazil-default-setting":79,"brightspace-lti":80,"bts-fc":81,"bubblesheet-app":82,"byoc-nearpod-slides":83,"ca-listing-page":84,"ca-manual-distribution":85,"ca-settings":86,"ca-subgroups":87,"ca-teacher-distribution":88,"ca-teacher-report":89,"canvas-lti":90,"category-pages":91,"class-photo":92,"classes-listing-ds":93,"classification-question-recommendations":94,"classlink-rostering-enabled":95,"classroom-pulse-liveDash":96,"clever-accommodation-nudge":97,"clever-rostering-enabled":98,"click-view-video":99,"coin-heist":100,"common-assessment":102,"compass-chatbot":103,"consolidation-adp":104,"consolidation-banner":105,"consolidation-card":106,"content-moderation":108,"content-moderation-hosted-activities":109,"content-sharing-nudge-count":110,"continue-onboarding":112,"costume-drop":114,"costume-drop-page":115,"cp-accommodations":116,"creator-quality-score-v2":117,"cross-teacher-recommendations":118,"crosswalk-enabled":119,"csat-accommodations-report-survey":120,"cte-addon-locked":121,"cte-resource-access":122,"delivery-global-control":123,"demo-quiz-banner":125,"diff-nudge-empty-class-notice":127,"differentiated-versions-v2":128,"differentiation-banner-props":129,"differentiation-students-new-pagination-api":132,"disable-external-translation-for-question":133,"disable-notif-modal":134,"discovery-dedup":135,"discuss-demo":136,"dok-options":138,"dr-lms-page-update":139,"dv-v2-assign-flow":140,"edit-game-settings":141,"editor-improvements-1":142,"editor-large-actions-buttons":143,"editor-question-recommendation":144,"editor-revamp":145,"editor-standard-suggestion":146,"edsby-lti":147,"ela-comprehension-browse":148,"ela-vocab-rc-homepage-variants":149,"email-blacklist-rules":150,"enable-ai-standard-tagging-from-prompt":154,"enable-ca-service-migration":155,"enable-ca-teacher-report-pending-eval":157,"enable-game-service-migration":158,"enable-hotspot-msq-partial-eval":178,"enable-monolith-migration-apis":179,"enable-multi-teacher-kudos":181,"enable-new-qt":182,"enable-normal-youtube":184,"enable-v2-aggregates":185,"enable_assessment_mode":186,"engagement-up":187,"english-leveled-resources":188,"exclude-from-library-limits":189,"exclude-from-snd-churn-banner":190,"exp-additional-instruction-study-material":191,"exp-dok-default-prompt-flow":192,"exp-extract-from-content-250-1500":193,"exp-new-create-flow":194,"explore-hqrl":195,"explore-hqrl-curriculum":196,"explore-hqrl-custom-library":197,"explore-hqrl-standards":198,"explore-hqrl-topics":199,"explore-ssr-admin-route":200,"explore-ssr-hqrl-personalization":201,"explore-ssr-hqrl-personalization-topic":202,"explore-ssr-personal-finance-curriculum":203,"explore-ssr-richmond-compass-curriculum":204,"explore-ssr-taiwan-custom-curriculum":205,"explore-v2-enabled":206,"extended-deadline":207,"extension-touchpoints":208,"fc-consolidation":209,"fc_admin_revamp":210,"feat-sso-v2":211,"featured-way-arena-quest":212,"fetch-hostedinvoice-from-subs-service":213,"ffs-admin-flow":214,"ffs-eligible":215,"ffs-new-flow":216,"ffs-school-library":217,"ffs-school-page":218,"ffs-teachers-count":219,"fib-qt-revamp":221,"force-rebranding":222,"freshdesk-web-widget":223,"ftr-best-attempt-shadow-compare":224,"ftr-grade-sync-ux-enh":225,"ftr-grade-sync-ux-enh-be":226,"ftr-rybena-accessibility-toolbar":227,"fuse-yt-channel":228,"game_setting_v3":229,"gbdemo-checkout-layout":230,"gc-addon":232,"generate-conceptual-flashcard-quiz":233,"generate-with-standards":234,"gensearch-district-library-release":235,"google-translate":236,"graphing-v2":237,"group-details-v2":238,"growth-service-async-lead-processing":239,"gtm-preview-server-id":240,"hide-ai-toolkit-section":242,"highlight-students-expired-accommodations":243,"hints-onboarding-modal":244,"hot-text-question-type":245,"hqrl-bundles-enabled":246,"ib-email-verification":247,"import_content_anywhere":248,"individual-referral-school-trial-plan":249,"inferred_grades_experiment":250,"international-test-prep":251,"is-teacher-stuck-on-join":252,"is-worksheet-classifier":253,"iv-adp-versions":254,"iv-banner-on-explore-v2":255,"iv-boclips-create":256,"iv-cards-v2":257,"iv-local-video":258,"iv-milestones":259,"iv-played-boost":260,"iv-quality-version":262,"iv-query-supply":263,"iv-recommendation-adp":264,"iv-search-experiment":265,"iv-search-improvements-v2":267,"iv-yt-channel-supply":268,"kurikulum-indonesia":269,"late-submission":270,"lesson-seeker-bulding-block":271,"lessons-gen-variants":272,"library-limit-for-fcs":273,"library-limits":274,"library-limits-banner":275,"library-limits-braze-notifications":277,"live-chat-config":278,"live-teacher-class":282,"lms-api-deprecation":283,"lms-course-validation-modal":284,"lms-redirect-uri-wayground":285,"lobbyV3":286,"lockdown-browser":287,"lti-common-assessment":288,"lti-migration":289,"lti-migration_V2":291,"manage-teachers-v2":298,"manual-page-navigation":299,"master-peak-shareability":300,"mastery-mode-gs":301,"mastery-on-running":302,"match-question-recommendations":303,"math-leveled-resources":304,"math-skill-search-v2":305,"mcq-qt-layout-revamp":306,"mcq-vertical-layout-join":307,"migrated-connections-page":308,"migrated-my-school":309,"minigames-beta":310,"missed-questions":311,"mmr-reranking":313,"mode-selection":314,"moodle-lti":315,"ms_parity":316,"mta_create":317,"my-library-ds":318,"my-library-v2":319,"my-school-feed":320,"network-recommendations-nudge":321,"new-game-api-mobile-app":322,"new-growth-onboarding":323,"new-iv-creation-flow":324,"new-persona-flow":325,"new-pre-ffs-flow":326,"new-pricing-page":327,"new-quiz-share-modal":328,"new-search-teachers":329,"new-usage-analytics":330,"new-usage-analytics-milestone-2":331,"no-socket-gameplay":332,"ob-math-curriculum":333,"on-before-route-leave":334,"open-ended-ecr":335,"open-ended-eval":336,"org-content-recommend-v2":337,"org-service-monolith-migration-2":338,"org-service-peer-recommendations":339,"paid-org-library-v2":340,"paired-passage":341,"paper-mode-enable-us":342,"paper-mode-enabled-us-v1":343,"paper-mode-roster-migration-get-one":344,"papermode-main-cta":345,"parana-lesson-settings":346,"participant-feedback":347,"passage-in-lesson":348,"pause-lesson":349,"payload-utilization-tracking":350,"player-login":351,"plc-reporting":352,"pqa-admin-paywall":353,"premium-hosting-basic-acc":354,"pricing-page-typeform-fc":355,"pricing-page-typeform-mc":356,"privileges-fe":357,"profile-curriculum-listing":358,"profile-shell-layout":359,"proj-ai-premium-reccos-quiz-page":360,"proj-ai-recommendations":361,"proj-ai-studio":362,"proj-create-ai-file-card":363,"proj-differentiation":365,"proj-differentiation-class-assignment-other":367,"proj-differentiation-full-access":368,"proj-differentiation-levelled-resources":369,"proj-differentiation-variant-algorithm":370,"proj-dv-passages":372,"proj-gtm-super-upsell":373,"proj-pv3-v2":374,"proj-qtypes-gallery":375,"proj-quiz-streaming":376,"proj-super-week":377,"project-ssr-search-server":378,"prompt-report":379,"pulse-visiblity":380,"qbit-animations":381,"qfw-library-empty-state-buttons":382,"qfw-library-v2":383,"qfw-qdp-buttons-layout-new":384,"qfw-rp-entrypoints":385,"qfw-user-limits":386,"qfw-video-qt":387,"query-contenttype-boosting":388,"query-editor-ff":389,"query-expansion":390,"query-features-boosting":391,"query-rewrite-v2":392,"question-img-description":393,"questionsv2-search":394,"quests":395,"quiz-creation-default-visibility-org":397,"quiz-dedup-search":398,"quiz-owner-relation":399,"quiz-page-reco-improved":400,"quiz-service-v3-apis-migration":401,"quizizz-ai-create-ocr-other-formats-version":403,"quizizz-ai-create-ocr-version":405,"quizizz-ai-extract-enhancements":406,"quizizz-ai-extract-enhancements-v2":407,"quizizz-ai-gpt-4-1-models":408,"quizizz-ai-gpt-4-1-models-generate":409,"quizizz-ai-gpt-4-1-models-v2":410,"quizizz-ai-lessons-question-relevance-eval":411,"quizizz-ai-quality-evaluation":412,"quizizz-ai-question-extraction":413,"quizizz-ai-question-relavance-evaluation":414,"quizizz-ai-quota":415,"quizizz-ai-url-generate-using-vision":416,"quizizz-ai-url-socket":417,"quizizz-ai-use-portkey":418,"quizizz-ai-version-for-create":419,"quizizz-ai-version-for-create-app":421,"quizizz-downtime":422,"quizizz-ui-debug":423,"rc-qt-free":424,"rc-qt-snd-only":425,"re-onboarding":426,"reco-iv-lessons":427,"reco-iv-lessons-srp":428,"redirect-upsell-to-pricing":429,"reopen-new":430,"reorder-question-recommendations":431,"reports-evaluation":432,"reports-listing-ds":433,"reports-listing-ds-mobile":434,"resource-hub-admin-controls":435,"review-srp":436,"rewritten-titles-search":437,"right-side-panel":438,"row-lms-parity":439,"row-my-org":440,"row-premium-paywall":441,"school-plan-trial-variants":442,"schoology-lti":443,"schools-upsell-modal-variant":444,"science-leveled-resources":446,"search-country-override":447,"search-create-with-ai-interlacing":448,"search-grade-range-boost-deboost":449,"search-interlacing-v3":450,"search-library-limit":451,"search-minimal-ui":453,"search-rescore-query":454,"search-show-review-queries":455,"search-state-boost":456,"search-tabs-as-column":457,"search-to-hqrl-english":458,"search-v2-enabled":459,"search-v3-apis":460,"search-vm-integration":461,"search-vm-tab":462,"share-flashcard":463,"share-notifications":464,"share-quiz-modal-v2":465,"share-resource-generation-toast":466,"share-with-students-old-user":467,"shared-folder-access":468,"shell-layout-ssr":469,"shell-sidebar":470,"shoe-forge":471,"show-admin-nps":472,"show-ai-literacy":473,"show-browse-standard-in-explore-page":474,"show-co-teaching":475,"show-cte-in-hqrl":476,"show-digital-citizenship":477,"show-editor-question-templates":478,"show-generate-report-button":479,"show-previously-hosted-and-saved-content":480,"show-super-churn-modal":481,"show-usage-stats-for-refer-admin-trial":482,"showindividualplan":483,"skillet-enterprise-login":484,"skillet-join-call-issues":485,"skillet-ss-debug":486,"skillet-user-migrate":487,"skip-ll":488,"skolon-sso":489,"slide-transition":490,"slideaddon-publish-flow":491,"slideaddon_ui_revamp":492,"snd-churn-banner-v2":493,"snd-lead-form-exp":494,"snd-new-form-type":496,"snd-org-picker":498,"sonnet-4-6-generate-prompt":499,"sot-migration-hqrl":500,"srp-activity-duration":501,"standard-search-be":502,"standard-selector-v2":503,"standard-tagging-ai":504,"standard-tagging-ai-new-reports":505,"state-rubric-ai-eval":506,"state-standards":507,"state-test-prep-on-search":508,"std-rag-generation":509,"std-rag-generation-ela":510,"std-rag-generation-science":511,"student-forum-at-summary":512,"student-login-back-door":513,"student-login-nudge":514,"student-signup":515,"student-whiteboard-2":516,"suggest-yt-iv-questions":517,"summer-hype":518,"super-format-mvp":519,"super-pricing-exit-popup":521,"supply-plugging-google-social":522,"supply-plugging-iv":523,"supply-plugging-iv-english":524,"supply-plugging-iv-english-math":525,"supply-plugging-iv-math":526,"supply-plugging-staging":527,"tag-voyage-math":528,"taw25-stats":529,"teacher-insights":534,"teacher-rostering-common-workflow":535,"teacher-sat":536,"team-creation-flow-v2":537,"team-migration":538,"teams-pagination":539,"toddle-lti":540,"tug-of-war":541,"tug-of-war-ai":542,"unified-standards":543,"universal-accommodations":544,"unlock-quiz":545,"updated-teacher-rostering-orgs":547,"usage-based-paywalling":548,"use-ai-polling-over-socket":549,"use-ai-service":550,"use-ai-service-be":551,"use-ai-upload-button-label":552,"use-ai-workflows":553,"use-ai-workflows-youtube":554,"use-bedrock-for-claude":555,"use-create-lead-salesforce-new-api":556,"use-game-socket-cf-url":557,"use-sonnet-4-ff":558,"use-subscription-service-for-products":559,"use-v3-query":560,"user-profile-settings":561,"user-service-migration":562,"uxr-group":563,"uxr-group-2":564,"v3-sentry-logger":565,"vapi-debug-panel":566,"verified-content":567,"video-and-rc-activity":568,"video-avatar-game-setting":569,"vlibras-integration":570,"vm-hook-enabled":571,"vm-standards-in-wg-reports":572,"wayArenaCorrectAnswerEffect":573,"wayground-curriculum-version":574,"wfb-ai-coach-chat-input":576,"wfb-ai-roleplay-self-serve":577,"wfb-iva":578,"wfb-learner-dashboard-v2":579,"wfb-persona-ctx-join":580,"wfb-preCallPrep":581,"wfb-roleplay-coaching":582,"wfb-roleplay-dashboard-default":583,"wfb-rp-create-v2":584,"wfb-rp-dashboard-v3":585,"wfb-visualAid":586,"winning-weekly-rollout":587,"wol-endpoints":589,"wonde-sso":590,"worksheet-assign":591,"worksheet-companion":592,"worksheet-differentiation":593,"year-wise-boost":594,"yt-edu":595,"yt-edu-join-kill-switch":596,"yt-edu-upsell":597,"yt-ratelimit":598,"yt-ss-cap":599,"zeraki-lti":600},{"defaultValue":6},"NOT_ELIGIBLE",{"defaultValue":8},true,{"defaultValue":8},{"defaultValue":11},false,{"defaultValue":13},"DISABLED",{"defaultValue":6},{"defaultValue":11},{"defaultValue":11},{"defaultValue":18},0,{"defaultValue":11},{"defaultValue":11},{"defaultValue":18},{"defaultValue":11},{"defaultValue":13},{"defaultValue":6},{"defaultValue":13},{"defaultValue":13},{"defaultValue":6},{"defaultValue":29},"ENABLED",{"defaultValue":29},{"defaultValue":6},{"defaultValue":6},{"defaultValue":6},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":11},{"defaultValue":6},{"defaultValue":11},{"defaultValue":6},{"defaultValue":6},{"defaultValue":8},{"defaultValue":13},{"defaultValue":13},{"defaultValue":11},{"defaultValue":29},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":29},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":63},{"auth-service-logout":11,"check-email-availability":8,"check-phone-availability":8,"check-username-availability":8,"deactivate":8,"refresh-token":8,"reset-password":8,"reset-password-link":8,"send-deactivation-link":8,"set-password":8,"update-password":8,"update-user-info":8,"verify-password-reset":8},{"defaultValue":65},{"apple-sso":8,"classlink-sso":8,"clever-sso":8,"facebook-sso":8,"google-sso":8,"google-sso-redirect":8,"local-login":8,"microsoft-sso":8,"nycdoe-sso":8,"user-register":8,"user-update-api":8,"wonde-sso":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":13},{"defaultValue":29},{"defaultValue":11},{"defaultValue":29},{"defaultValue":6},{"defaultValue":11},{"defaultValue":77},"ENABLE_QUALIFIERS",{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":11},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":11},{"defaultValue":29},{"defaultValue":8},{"defaultValue":13},{"defaultValue":8},{"defaultValue":6},{"defaultValue":8},{"defaultValue":13},{"defaultValue":8},{"defaultValue":8},{"defaultValue":13},{"defaultValue":101},"OFF",{"defaultValue":11},{"defaultValue":8},{"defaultValue":29},{"defaultValue":13},{"defaultValue":107},"new_new",{"defaultValue":11},{"defaultValue":11},{"defaultValue":111},"0",{"defaultValue":113},"NOT_ELLIGIBLE",{"defaultValue":8},{"defaultValue":8},{"defaultValue":13},{"defaultValue":101},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":29},{"defaultValue":6},{"defaultValue":124},"TEST",{"defaultValue":126},"GAME_SUMMARY",{"defaultValue":11},{"defaultValue":11},{"defaultValue":130},{"instructorCount":131,"show":8},20238,{"defaultValue":29},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":137},"DISCUSS",{"defaultValue":6},{"defaultValue":11},{"defaultValue":11},{"defaultValue":13},{"defaultValue":13},{"defaultValue":11},{"defaultValue":6},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":6},{"defaultValue":151},{"rules":152},[153],"^.*bowvip.*@.*$",{"defaultValue":101},{"defaultValue":156},{"delete-ca":8,"get-sessions":8,"start-assessment":8,"update-ca":11},{"defaultValue":11},{"defaultValue":159},{"activatePowerup":8,"get-answer-explanation":8,"proceedGame":160,"reactionUpdate":8,"reactionUpdateTeacher":8,"rejoinGame":8,"replacePowerups":8},{"gameTypes":161,"questionTypes":167},[162,163,164,165,166],"test","team","live","async","common_assessment",[168,169,170,171,172,173,174,175,176,177],"MCQ","MSQ","OPEN","AUDIO","VIDEO","MATCH","REORDER","EQUATION","GRAPHING","BLANK",{"defaultValue":29},{"defaultValue":180},{"acc-recom-list-students":8,"acc-recom-list-teachers":8,"acc-recom-student-update":8,"acc-recom-teacher-usage":8,"accommodations-recommendations-teacherId":8,"accommodations-recommendations-teacherId-apply":8,"accommodations-recommendations-teacherId-apply-all":8,"challenge-friends":8,"create-game-migration":8,"delete-games":8,"edit-homework":8,"edit-lesson":8,"end-game":8,"reopen-game":8,"reschedule-game":8,"resume-lesson":8,"start-game":8},{"defaultValue":29},{"defaultValue":183},{"match-table-grid-question-type":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":13},{"defaultValue":29},{"defaultValue":6},{"defaultValue":29},{"defaultValue":6},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":29},{"defaultValue":29},{"defaultValue":11},{"defaultValue":6},{"defaultValue":13},{"defaultValue":6},{"defaultValue":13},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":29},{"defaultValue":13},{"defaultValue":11},{"defaultValue":8},{"defaultValue":8},{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":220},5,{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":13},{"defaultValue":231},"current",{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":13},{"defaultValue":11},{"defaultValue":8},{"defaultValue":8},{"defaultValue":241},"",{"defaultValue":6},{"defaultValue":8},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":6},{"defaultValue":6},{"defaultValue":29},{"defaultValue":18},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":18},{"defaultValue":261},1,{"defaultValue":11},{"defaultValue":6},{"defaultValue":11},{"defaultValue":266},3,{"defaultValue":6},{"defaultValue":6},{"defaultValue":6},{"defaultValue":8},{"defaultValue":18},{"defaultValue":101},{"defaultValue":11},{"defaultValue":8},{"defaultValue":276},"WITH_BANNER",{"defaultValue":8},{"defaultValue":279},{"allowedPages":280,"enabled":11},[281],"super-pricing",{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":8},{"defaultValue":29},{"defaultValue":11},{"defaultValue":290},{"alm":11,"blackboard":8,"brightspace":8,"canvas":8,"moodle":11,"schoology":8,"toddle":8},{"defaultValue":292},{"callback":293,"deepLink":294,"getLtiContext":295,"initiate":296,"resumeContext":297},{"alm":8,"blackboard":8,"brightspace":8,"canvas":8,"moodle":8,"schoology":8,"toddle":8},{"alm":8,"blackboard":8,"brightspace":8,"canvas":8,"moodle":8,"schoology":8,"toddle":8},{"alm":8,"blackboard":8,"brightspace":8,"canvas":8,"moodle":8,"schoology":8,"toddle":8},{"alm":8,"blackboard":8,"brightspace":8,"canvas":8,"moodle":8,"schoology":8,"toddle":8},{"alm":8,"blackboard":8,"brightspace":8,"canvas":8,"moodle":8,"schoology":8,"toddle":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":29},{"defaultValue":11},{"defaultValue":11},{"defaultValue":6},{"defaultValue":8},{"defaultValue":18},{"defaultValue":29},{"defaultValue":29},{"defaultValue":6},{"defaultValue":29},{"defaultValue":11},{"defaultValue":312},"ALL",{"defaultValue":29},{"defaultValue":13},{"defaultValue":8},{"defaultValue":13},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":29},{"defaultValue":6},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":13},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":6},{"defaultValue":8},{"defaultValue":8},{"defaultValue":29},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":8},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":13},{"defaultValue":8},{"defaultValue":29},{"defaultValue":11},{"defaultValue":13},{"defaultValue":8},{"defaultValue":6},{"defaultValue":8},{"defaultValue":13},{"defaultValue":13},{"defaultValue":8},{"defaultValue":11},{"defaultValue":6},{"defaultValue":13},{"defaultValue":6},{"defaultValue":8},{"defaultValue":364},"INELIGIBLE",{"defaultValue":366},"2",{"defaultValue":11},{"defaultValue":13},{"defaultValue":8},{"defaultValue":371},"prompt-simple",{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":29},{"defaultValue":29},{"defaultValue":11},{"defaultValue":6},{"defaultValue":11},{"defaultValue":13},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":261},{"defaultValue":8},{"defaultValue":18},{"defaultValue":18},{"defaultValue":29},{"defaultValue":6},{"defaultValue":18},{"defaultValue":396},{"mqp-trigger":11,"student-mqp":8,"student-quest":8,"teacher-reporting":8},{"defaultValue":11},{"defaultValue":18},{"defaultValue":8},{"defaultValue":8},{"defaultValue":402},{"create":8,"create-questions":8,"create-quiz":8,"delete":8,"rc-child-create":8,"rc-child-delete":8,"rc-child-update":8,"update":8},{"defaultValue":404},"v2",{"defaultValue":404},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":29},{"defaultValue":18},{"defaultValue":6},{"defaultValue":13},{"defaultValue":8},{"defaultValue":420},"v1",{"defaultValue":13},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":29},{"defaultValue":29},{"defaultValue":11},{"defaultValue":8},{"defaultValue":13},{"defaultValue":8},{"defaultValue":6},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":13},{"defaultValue":18},{"defaultValue":6},{"defaultValue":29},{"defaultValue":6},{"defaultValue":11},{"defaultValue":6},{"defaultValue":8},{"defaultValue":445},"CONTROLLED",{"defaultValue":8},{"defaultValue":241},{"defaultValue":18},{"defaultValue":18},{"defaultValue":11},{"defaultValue":452},"APPLICABLE",{"defaultValue":11},{"defaultValue":261},{"defaultValue":13},{"defaultValue":11},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":11},{"defaultValue":13},{"defaultValue":29},{"defaultValue":13},{"defaultValue":13},{"defaultValue":8},{"defaultValue":6},{"defaultValue":11},{"defaultValue":29},{"defaultValue":29},{"defaultValue":29},{"defaultValue":11},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":29},{"defaultValue":29},{"defaultValue":29},{"defaultValue":11},{"defaultValue":11},{"defaultValue":29},{"defaultValue":11},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":13},{"defaultValue":11},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":6},{"defaultValue":495},"TYPEFORM",{"defaultValue":497},"V3",{"defaultValue":8},{"defaultValue":29},{"defaultValue":11},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":6},{"defaultValue":6},{"defaultValue":6},{"defaultValue":8},{"defaultValue":29},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":520},"MULTIPLE",{"defaultValue":8},{"defaultValue":13},{"defaultValue":261},{"defaultValue":18},{"defaultValue":13},{"defaultValue":261},{"defaultValue":18},{"defaultValue":6},{"defaultValue":530},{"INITIAL_KUDOS_SENT":531,"INITIAL_TEACHERS_PARTICIPATED":532,"MAX_TARGET_NOTES":533},1413,740,10000,{"defaultValue":29},{"defaultValue":8},{"defaultValue":101},{"defaultValue":8},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":101},{"defaultValue":11},{"defaultValue":101},{"defaultValue":8},{"defaultValue":546},"DISABLE",{"defaultValue":11},{"defaultValue":8},{"defaultValue":6},{"defaultValue":13},{"defaultValue":8},{"defaultValue":6},{"defaultValue":29},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":8},{"defaultValue":29},{"defaultValue":8},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":13},{"defaultValue":29},{"defaultValue":8},{"defaultValue":13},{"defaultValue":13},{"defaultValue":8},{"defaultValue":8},{"defaultValue":575},"default_bundles",{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":588},{"anti-cheating-v2":29,"async-live-dashboard":29,"gs-v3":29,"mode-selection":29,"sp-tp":29},{"defaultValue":13},{"defaultValue":11},{"defaultValue":11},{"defaultValue":8},{"defaultValue":11},{"defaultValue":29},{"defaultValue":11},{"defaultValue":8},{"defaultValue":8},{"defaultValue":11},{"defaultValue":6},{"defaultValue":11},{"success":8,"message":602,"data":603,"time":2064,"meta":2065},"Ok",{"quiz":604,"draft":611},{"isTagged":11,"isLoved":11,"tagIds":605,"stats":606,"love":18,"cloned":11,"parentDetail":611,"deleted":11,"archived":11,"lifetimeAccess":11,"draftVersion":611,"publishedVersion":612,"isShared":11,"type":613,"hidden":11,"_id":614,"createdBy":615,"info":630,"createdAt":2061,"updated":2063,"premiumUse":13,"shouldIndex":8,"hasDraftVersion":11,"hasPublishedVersion":8,"gameChangerBadge":611,"lock":611,"isPremium":11},[],{"played":607,"totalPlayers":608,"totalCorrect":609,"totalQuestions":610},6,16,168,344,null,"6934787cb75cb328f5001a09","quiz","6934787cb75cb328f5001a08",{"_id":616,"firstName":617,"lastName":618,"occupation":619,"country":620,"preferences":621,"grades":623,"subject_tags":627,"media":629},"669513cdb8380b9175ab6f21","Kstudy","C","teacher","NG",{"lang":622},"en",[220,624,625,626],9,12,8,[628],"Mathematics","https://lh3.googleusercontent.com/a/ACg8ocJpel5G_mg2d0Lxn9s8GLvjkow-Ckxlh-BsHqZ0IRaTRdlB=s96-c",{"lang":631,"aiGenerated":8,"qm":632,"questionGroups":664,"visibility":8,"subjects":665,"topics":667,"subtopics":668,"grade":669,"gradeLevel":611,"deleted":11,"pref":671,"traits":672,"standardIds":673,"__v":674,"meta":675,"_id":612,"name":676,"aiCreateMeta":677,"questions":679,"questionDrafts":2060,"standards":611,"courses":611,"createdAt":2061,"updated":2062,"isProfane":11,"whitelisted":8,"slug":676},"English",{"6934787c938e1b36929d444a":633,"6934787c938e1b36929d444b":635,"6934787c938e1b36929d444c":636,"6934787c938e1b36929d444d":637,"6934787c938e1b36929d444e":638,"6934787c938e1b36929d444f":639,"6934787c938e1b36929d4450":640,"6934787c938e1b36929d4451":641,"6934787c938e1b36929d4452":642,"6934787c938e1b36929d4453":643,"6934787c938e1b36929d4454":644,"6934787c938e1b36929d4455":645,"6934787c938e1b36929d4456":646,"6934787c938e1b36929d4457":647,"6934787c938e1b36929d4458":648,"6934787c938e1b36929d4459":649,"6934787c938e1b36929d445a":650,"6934787c938e1b36929d445b":651,"6934787c938e1b36929d445c":652,"6934787c938e1b36929d445d":653,"6934787c938e1b36929d445e":654,"6934787c938e1b36929d445f":655,"6934787c938e1b36929d4460":656,"6934787c938e1b36929d4461":657,"6934787c938e1b36929d4462":658,"6934787c938e1b36929d4463":659,"6934787c938e1b36929d4464":660,"6934787c938e1b36929d4465":661,"6934787c938e1b36929d4466":662,"6934787c938e1b36929d4467":663},{"time":634},30000,{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},{"time":634},[],[666],"Information Technology (IT)",[],[],[670,670],"14",{"time":611},{"isQuizWithoutCorrectAnswer":11,"totalSlides":18,"totalComprehensionQuestions":18,"nonAnswerableQuestions":18},[],4,{"slot":611,"experiment":611},"HTML & CSS Coding Questions",{"quizGenKey":678},"69347863018c6645c305b9fe",[680,732,778,824,870,916,962,1008,1054,1100,1146,1192,1238,1284,1329,1374,1419,1465,1511,1557,1603,1648,1693,1739,1784,1830,1877,1923,1969,2015],{"structure":681,"standards":722,"topics":723,"isSuperParent":11,"standardIds":724,"unifiedStandardIds":725,"aiGenerated":8,"__v":266,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":727,"time":634,"published":8,"aiCreateMeta":728,"type":168,"createdAt":730,"updated":731},{"settings":682,"hasMath":11,"query":684,"options":691,"explain":716,"hints":720,"kind":168,"marks":721,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},"string",{"type":685,"hasMath":11,"math":686,"answerTime":688,"text":689,"media":690},"text",{"latex":687,"template":611},[],-1,"\u003Cp>Which of the following HTML codes creates a basic page with a heading, a paragraph, and a horizontal rule?\u003C/p>",[],[692,698,704,710],{"type":685,"hasMath":11,"math":693,"answerTime":18,"id":695,"text":696,"media":697,"_id":695},{"latex":694,"template":611},[],"6934787c94206a36809a5e0f","\u003Cp>\u003Chtml>\u003Cbody>\u003Ch1>Heading\u003C/h1>\u003Chr>\u003Cp>Paragraph\u003C/p>\u003C/body>\u003C/html>\u003C/p>",[],{"type":685,"hasMath":11,"math":699,"answerTime":18,"id":701,"text":702,"media":703,"_id":701},{"latex":700,"template":611},[],"6934787c94206a6aca9a5e10","\u003Cp>\u003Chtml>\u003Cbody>\u003Ch1>Heading\u003C/h1>\u003Cp>Paragraph\u003C/p>\u003C/body>\u003C/html>\u003C/p>",[],{"type":685,"hasMath":11,"math":705,"answerTime":18,"id":707,"text":708,"media":709,"_id":707},{"latex":706,"template":611},[],"6934787c94206a345f9a5e11","\u003Cp>\u003Chtml>\u003Cbody>\u003Ch1>Heading\u003C/h1>\u003Chr>\u003C/body>\u003C/html>\u003C/p>",[],{"type":685,"hasMath":11,"math":711,"answerTime":18,"id":713,"text":714,"media":715,"_id":713},{"latex":712,"template":611},[],"6934787c94206a55e49a5e12","\u003Cp>\u003Chtml>\u003Cbody>\u003Cp>Paragraph\u003C/p>\u003Chr>\u003C/body>\u003C/html>\u003C/p>",[],{"type":685,"text":241,"media":717,"hasMath":11,"math":718,"answerTime":18},[],{"template":611,"latex":719},[],[],{"correct":261,"incorrect":18},[],[],[],[],2,"6934787c938e1b36929d444a",{"sourceImage":729,"hasDiagram":11},"https://quizizz-static.s3-accelerate.amazonaws.com/_media/uploadedFiles/1d0495ac-a249-457a-9780-864a411bc6f8-v2","2025-12-06T18:39:56.267Z","2026-02-24T09:55:57.072Z",{"structure":733,"standards":771,"topics":772,"isSuperParent":11,"standardIds":773,"unifiedStandardIds":774,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":775,"time":634,"published":8,"aiCreateMeta":776,"type":168,"createdAt":730,"updated":777},{"settings":734,"hasMath":11,"query":735,"options":740,"explain":765,"hints":769,"kind":168,"marks":770,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":736,"answerTime":688,"text":738,"media":739},{"latex":737,"template":611},[],"\u003Cp>Which HTML code creates a navigation bar with three links: Home, About, and Contact?\u003C/p>",[],[741,747,753,759],{"type":685,"hasMath":11,"math":742,"answerTime":18,"id":744,"text":745,"media":746,"_id":744},{"latex":743,"template":611},[],"6934787c94206a2c0c9a5e16","\u003Cp>\u003Cnav>\u003Ca href=\"#\">Home\u003C/a> \u003Ca href=\"#\">About\u003C/a> \u003Ca href=\"#\">Contact\u003C/a>\u003C/nav>\u003C/p>",[],{"type":685,"hasMath":11,"math":748,"answerTime":18,"id":750,"text":751,"media":752,"_id":750},{"latex":749,"template":611},[],"6934787c94206a83789a5e17","\u003Cp>\u003Cnav>\u003Ca href=\"#\">Home\u003C/a> \u003Ca href=\"#\">Services\u003C/a> \u003Ca href=\"#\">Contact\u003C/a>\u003C/nav>\u003C/p>",[],{"type":685,"hasMath":11,"math":754,"answerTime":18,"id":756,"text":757,"media":758,"_id":756},{"latex":755,"template":611},[],"6934787c94206aed419a5e18","\u003Cp>\u003Cnav>\u003Ca href=\"#\">Home\u003C/a> \u003Ca href=\"#\">About\u003C/a> \u003Ca href=\"#\">Blog\u003C/a>\u003C/nav>\u003C/p>",[],{"type":685,"hasMath":11,"math":760,"answerTime":18,"id":762,"text":763,"media":764,"_id":762},{"latex":761,"template":611},[],"6934787c94206a03719a5e19","\u003Cp>\u003Cnav>\u003Ca href=\"#\">Home\u003C/a> \u003Ca href=\"#\">Contact\u003C/a> \u003Ca href=\"#\">Help\u003C/a>\u003C/nav>\u003C/p>",[],{"type":685,"text":241,"media":766,"hasMath":11,"math":767,"answerTime":18},[],{"template":611,"latex":768},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d444b",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.580Z",{"structure":779,"standards":817,"topics":818,"isSuperParent":11,"standardIds":819,"unifiedStandardIds":820,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":821,"time":634,"published":8,"aiCreateMeta":822,"type":168,"createdAt":730,"updated":823},{"settings":780,"hasMath":11,"query":781,"options":786,"explain":811,"hints":815,"kind":168,"marks":816,"answer":261},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":782,"answerTime":688,"text":784,"media":785},{"latex":783,"template":611},[],"\u003Cp>Which HTML code correctly inserts an image into a page, adds alternative text, and centers the image using HTML (not CSS)?\u003C/p>",[],[787,793,799,805],{"type":685,"hasMath":11,"math":788,"answerTime":18,"id":790,"text":791,"media":792,"_id":790},{"latex":789,"template":611},[],"6934787c94206aee229a5e1d","\u003Cp>\u003Cdiv align=\"center\">\u003Cimg src=\"image.jpg\" alt=\"Description\">\u003C/div>\u003C/p>",[],{"type":685,"hasMath":11,"math":794,"answerTime":18,"id":796,"text":797,"media":798,"_id":796},{"latex":795,"template":611},[],"6934787c94206a75199a5e1e","\u003Cp>\u003Ccenter>\u003Cimg src=\"image.jpg\" alt=\"Description\">\u003C/center>\u003C/p>",[],{"type":685,"hasMath":11,"math":800,"answerTime":18,"id":802,"text":803,"media":804,"_id":802},{"latex":801,"template":611},[],"6934787c94206a50879a5e1f","\u003Cp>\u003Cimg src=\"image.jpg\" alt=\"Description\" style=\"text-align:center;\">\u003C/p>",[],{"type":685,"hasMath":11,"math":806,"answerTime":18,"id":808,"text":809,"media":810,"_id":808},{"latex":807,"template":611},[],"6934787c94206a01f49a5e20","\u003Cp>\u003Cimg src=\"image.jpg\" alt=\"Description\" align=\"center\">\u003C/p>",[],{"type":685,"text":241,"media":812,"hasMath":11,"math":813,"answerTime":18},[],{"template":611,"latex":814},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d444c",{"sourceImage":729,"hasDiagram":11},"2026-02-24T09:56:02.312Z",{"structure":825,"standards":863,"topics":864,"isSuperParent":11,"standardIds":865,"unifiedStandardIds":866,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":867,"time":634,"published":8,"aiCreateMeta":868,"type":168,"createdAt":730,"updated":869},{"settings":826,"hasMath":11,"query":827,"options":832,"explain":857,"hints":861,"kind":168,"marks":862,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":828,"answerTime":688,"text":830,"media":831},{"latex":829,"template":611},[],"\u003Cp>Which HTML code correctly creates a table with 3 columns, 4 rows, a table header, and a caption?\u003C/p>",[],[833,839,845,851],{"type":685,"hasMath":11,"math":834,"answerTime":18,"id":836,"text":837,"media":838,"_id":836},{"latex":835,"template":611},[],"6934787c94206a10149a5e24","\u003Cp>\u003Ctable>\u003Ccaption>Table Caption\u003C/caption>\u003Ctr>\u003Cth>Header1\u003C/th>\u003Cth>Header2\u003C/th>\u003Cth>Header3\u003C/th>\u003C/tr>\u003Ctr>\u003Ctd>Row1Col1\u003C/td>\u003Ctd>Row1Col2\u003C/td>\u003Ctd>Row1Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row2Col1\u003C/td>\u003Ctd>Row2Col2\u003C/td>\u003Ctd>Row2Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row3Col1\u003C/td>\u003Ctd>Row3Col2\u003C/td>\u003Ctd>Row3Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row4Col1\u003C/td>\u003Ctd>Row4Col2\u003C/td>\u003Ctd>Row4Col3\u003C/td>\u003C/tr>\u003C/table>\u003C/p>",[],{"type":685,"hasMath":11,"math":840,"answerTime":18,"id":842,"text":843,"media":844,"_id":842},{"latex":841,"template":611},[],"6934787c94206a205f9a5e25","\u003Cp>\u003Ctable>\u003Ctr>\u003Cth>Header1\u003C/th>\u003Cth>Header2\u003C/th>\u003Cth>Header3\u003C/th>\u003C/tr>\u003Ctr>\u003Ctd>Row1Col1\u003C/td>\u003Ctd>Row1Col2\u003C/td>\u003Ctd>Row1Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row2Col1\u003C/td>\u003Ctd>Row2Col2\u003C/td>\u003Ctd>Row2Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row3Col1\u003C/td>\u003Ctd>Row3Col2\u003C/td>\u003Ctd>Row3Col3\u003C/td>\u003C/tr>\u003C/table>\u003C/p>",[],{"type":685,"hasMath":11,"math":846,"answerTime":18,"id":848,"text":849,"media":850,"_id":848},{"latex":847,"template":611},[],"6934787c94206a013e9a5e26","\u003Cp>\u003Ctable>\u003Ccaption>Table Caption\u003C/caption>\u003Ctr>\u003Cth>Header1\u003C/th>\u003Cth>Header2\u003C/th>\u003C/tr>\u003Ctr>\u003Ctd>Row1Col1\u003C/td>\u003Ctd>Row1Col2\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row2Col1\u003C/td>\u003Ctd>Row2Col2\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row3Col1\u003C/td>\u003Ctd>Row3Col2\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row4Col1\u003C/td>\u003Ctd>Row4Col2\u003C/td>\u003C/tr>\u003C/table>\u003C/p>",[],{"type":685,"hasMath":11,"math":852,"answerTime":18,"id":854,"text":855,"media":856,"_id":854},{"latex":853,"template":611},[],"6934787c94206a28189a5e27","\u003Cp>\u003Ctable>\u003Ccaption>Table Caption\u003C/caption>\u003Ctr>\u003Cth>Header1\u003C/th>\u003Cth>Header2\u003C/th>\u003Cth>Header3\u003C/th>\u003C/tr>\u003Ctr>\u003Ctd>Row1Col1\u003C/td>\u003Ctd>Row1Col2\u003C/td>\u003Ctd>Row1Col3\u003C/td>\u003C/tr>\u003Ctr>\u003Ctd>Row2Col1\u003C/td>\u003Ctd>Row2Col2\u003C/td>\u003Ctd>Row2Col3\u003C/td>\u003C/tr>\u003C/table>\u003C/p>",[],{"type":685,"text":241,"media":858,"hasMath":11,"math":859,"answerTime":18},[],{"template":611,"latex":860},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d444d",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.582Z",{"structure":871,"standards":909,"topics":910,"isSuperParent":11,"standardIds":911,"unifiedStandardIds":912,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":913,"time":634,"published":8,"aiCreateMeta":914,"type":168,"createdAt":730,"updated":915},{"settings":872,"hasMath":11,"query":873,"options":878,"explain":903,"hints":907,"kind":168,"marks":908,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":874,"answerTime":688,"text":876,"media":877},{"latex":875,"template":611},[],"\u003Cp>Which of the following best describes how to present your top 3 favorite movies and foods as requested in the question?\u003C/p>",[],[879,885,891,897],{"type":685,"hasMath":11,"math":880,"answerTime":18,"id":882,"text":883,"media":884,"_id":882},{"latex":881,"template":611},[],"6934787c94206ac94d9a5e2b","\u003Cp>Create an ordered list for movies and an unordered list for foods.\u003C/p>",[],{"type":685,"hasMath":11,"math":886,"answerTime":18,"id":888,"text":889,"media":890,"_id":888},{"latex":887,"template":611},[],"6934787c94206a485c9a5e2c","\u003Cp>Create two unordered lists: one for movies and one for foods.\u003C/p>",[],{"type":685,"hasMath":11,"math":892,"answerTime":18,"id":894,"text":895,"media":896,"_id":894},{"latex":893,"template":611},[],"6934787c94206a505a9a5e2d","\u003Cp>Create two ordered lists: one for movies and one for foods.\u003C/p>",[],{"type":685,"hasMath":11,"math":898,"answerTime":18,"id":900,"text":901,"media":902,"_id":900},{"latex":899,"template":611},[],"6934787c94206aea5d9a5e2e","\u003Cp>Create a paragraph describing your favorite movies and foods.\u003C/p>",[],{"type":685,"text":241,"media":904,"hasMath":11,"math":905,"answerTime":18},[],{"template":611,"latex":906},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d444e",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.584Z",{"structure":917,"standards":955,"topics":956,"isSuperParent":11,"standardIds":957,"unifiedStandardIds":958,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":959,"time":634,"published":8,"aiCreateMeta":960,"type":168,"createdAt":730,"updated":961},{"settings":918,"hasMath":11,"query":919,"options":924,"explain":949,"hints":953,"kind":168,"marks":954,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":920,"answerTime":688,"text":922,"media":923},{"latex":921,"template":611},[],"\u003Cp>Which of the following elements should be included in a form as described: a name field, an email field, and a submit button?\u003C/p>",[],[925,931,937,943],{"type":685,"hasMath":11,"math":926,"answerTime":18,"id":928,"text":929,"media":930,"_id":928},{"latex":927,"template":611},[],"6934787c94206a2e419a5e32","\u003Cp>Name field, email field, submit button\u003C/p>",[],{"type":685,"hasMath":11,"math":932,"answerTime":18,"id":934,"text":935,"media":936,"_id":934},{"latex":933,"template":611},[],"6934787c94206a373c9a5e33","\u003Cp>Name field, password field, reset button\u003C/p>",[],{"type":685,"hasMath":11,"math":938,"answerTime":18,"id":940,"text":941,"media":942,"_id":940},{"latex":939,"template":611},[],"6934787c94206a1bf99a5e34","\u003Cp>Username field, email field, cancel button\u003C/p>",[],{"type":685,"hasMath":11,"math":944,"answerTime":18,"id":946,"text":947,"media":948,"_id":946},{"latex":945,"template":611},[],"6934787c94206a719e9a5e35","\u003Cp>Name field, phone number field, submit button\u003C/p>",[],{"type":685,"text":241,"media":950,"hasMath":11,"math":951,"answerTime":18},[],{"template":611,"latex":952},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d444f",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.586Z",{"structure":963,"standards":1001,"topics":1002,"isSuperParent":11,"standardIds":1003,"unifiedStandardIds":1004,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1005,"time":634,"published":8,"aiCreateMeta":1006,"type":168,"createdAt":730,"updated":1007},{"settings":964,"hasMath":11,"query":965,"options":970,"explain":995,"hints":999,"kind":168,"marks":1000,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":966,"answerTime":688,"text":968,"media":969},{"latex":967,"template":611},[],"\u003Cp>Embed a YouTube video into a webpage using an iframe.\u003C/p>",[],[971,977,983,989],{"type":685,"hasMath":11,"math":972,"answerTime":18,"id":974,"text":975,"media":976,"_id":974},{"latex":973,"template":611},[],"6934787c94206a2e919a5e39","\u003Cp>\u003Ciframe src=\"https://www.youtube.com/embed/VIDEO_ID\">\u003C/iframe>\u003C/p>",[],{"type":685,"hasMath":11,"math":978,"answerTime":18,"id":980,"text":981,"media":982,"_id":980},{"latex":979,"template":611},[],"6934787c94206a67219a5e3a","\u003Cp>\u003Cvideo src=\"https://www.youtube.com/embed/VIDEO_ID\">\u003C/video>\u003C/p>",[],{"type":685,"hasMath":11,"math":984,"answerTime":18,"id":986,"text":987,"media":988,"_id":986},{"latex":985,"template":611},[],"6934787c94206a33aa9a5e3b","\u003Cp>\u003Cembed src=\"https://www.youtube.com/embed/VIDEO_ID\">\u003C/embed>\u003C/p>",[],{"type":685,"hasMath":11,"math":990,"answerTime":18,"id":992,"text":993,"media":994,"_id":992},{"latex":991,"template":611},[],"6934787c94206a577e9a5e3c","\u003Cp>\u003Cobject data=\"https://www.youtube.com/embed/VIDEO_ID\">\u003C/object>\u003C/p>",[],{"type":685,"text":241,"media":996,"hasMath":11,"math":997,"answerTime":18},[],{"template":611,"latex":998},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4450",{"sourceImage":729,"hasDiagram":11},"2025-12-06T18:42:52.074Z",{"structure":1009,"standards":1047,"topics":1048,"isSuperParent":11,"standardIds":1049,"unifiedStandardIds":1050,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1051,"time":634,"published":8,"aiCreateMeta":1052,"type":168,"createdAt":730,"updated":1053},{"settings":1010,"hasMath":11,"query":1011,"options":1016,"explain":1041,"hints":1045,"kind":168,"marks":1046,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1012,"answerTime":688,"text":1014,"media":1015},{"latex":1013,"template":611},[],"\u003Cp>A page should use which of the following heading levels to include all six types?\u003C/p>",[],[1017,1023,1029,1035],{"type":685,"hasMath":11,"math":1018,"answerTime":18,"id":1020,"text":1021,"media":1022,"_id":1020},{"latex":1019,"template":611},[],"6934787c94206a737a9a5e40","\u003Cp>h1–h6\u003C/p>",[],{"type":685,"hasMath":11,"math":1024,"answerTime":18,"id":1026,"text":1027,"media":1028,"_id":1026},{"latex":1025,"template":611},[],"6934787c94206aabe79a5e41","\u003Cp>h1–h5\u003C/p>",[],{"type":685,"hasMath":11,"math":1030,"answerTime":18,"id":1032,"text":1033,"media":1034,"_id":1032},{"latex":1031,"template":611},[],"6934787c94206a756c9a5e42","\u003Cp>h2–h6\u003C/p>",[],{"type":685,"hasMath":11,"math":1036,"answerTime":18,"id":1038,"text":1039,"media":1040,"_id":1038},{"latex":1037,"template":611},[],"6934787c94206a595a9a5e43","\u003Cp>h1–h4\u003C/p>",[],{"type":685,"text":241,"media":1042,"hasMath":11,"math":1043,"answerTime":18},[],{"template":611,"latex":1044},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4451",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.588Z",{"structure":1055,"standards":1093,"topics":1094,"isSuperParent":11,"standardIds":1095,"unifiedStandardIds":1096,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1097,"time":634,"published":8,"aiCreateMeta":1098,"type":168,"createdAt":730,"updated":1099},{"settings":1056,"hasMath":11,"query":1057,"options":1062,"explain":1087,"hints":1091,"kind":168,"marks":1092,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1058,"answerTime":688,"text":1060,"media":1061},{"latex":1059,"template":611},[],"\u003Cp>Which of the following describes a form with a dropdown list of colors and a checkbox labeled 'Subscribe'?\u003C/p>",[],[1063,1069,1075,1081],{"type":685,"hasMath":11,"math":1064,"answerTime":18,"id":1066,"text":1067,"media":1068,"_id":1066},{"latex":1065,"template":611},[],"6934787c94206ad02b9a5e47","\u003Cp>A form with a dropdown list of colors and a checkbox labeled 'Subscribe'.\u003C/p>",[],{"type":685,"hasMath":11,"math":1070,"answerTime":18,"id":1072,"text":1073,"media":1074,"_id":1072},{"latex":1071,"template":611},[],"6934787c94206a537b9a5e48","\u003Cp>A form with a text input for colors and a radio button for 'Subscribe'.\u003C/p>",[],{"type":685,"hasMath":11,"math":1076,"answerTime":18,"id":1078,"text":1079,"media":1080,"_id":1078},{"latex":1077,"template":611},[],"6934787c94206a11d59a5e49","\u003Cp>A form with a dropdown list of colors and a button labeled 'Subscribe'.\u003C/p>",[],{"type":685,"hasMath":11,"math":1082,"answerTime":18,"id":1084,"text":1085,"media":1086,"_id":1084},{"latex":1083,"template":611},[],"6934787c94206ae8e19a5e4a","\u003Cp>A form with a dropdown list of colors and a checkbox labeled 'Unsubscribe'.\u003C/p>",[],{"type":685,"text":241,"media":1088,"hasMath":11,"math":1089,"answerTime":18},[],{"template":611,"latex":1090},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4452",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.589Z",{"structure":1101,"standards":1139,"topics":1140,"isSuperParent":11,"standardIds":1141,"unifiedStandardIds":1142,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1143,"time":634,"published":8,"aiCreateMeta":1144,"type":168,"createdAt":730,"updated":1145},{"settings":1102,"hasMath":11,"query":1103,"options":1108,"explain":1133,"hints":1137,"kind":168,"marks":1138,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1104,"answerTime":688,"text":1106,"media":1107},{"latex":1105,"template":611},[],"\u003Cp>Which semantic HTML tags should be used to create a simple page layout?\u003C/p>",[],[1109,1115,1121,1127],{"type":685,"hasMath":11,"math":1110,"answerTime":18,"id":1112,"text":1113,"media":1114,"_id":1112},{"latex":1111,"template":611},[],"6934787c94206a0da79a5e4e","\u003Cp>\u003Cheader>, \u003Cmain>, \u003Cfooter>\u003C/p>",[],{"type":685,"hasMath":11,"math":1116,"answerTime":18,"id":1118,"text":1119,"media":1120,"_id":1118},{"latex":1117,"template":611},[],"6934787c94206a19f49a5e4f","\u003Cp>\u003Cdiv>, \u003Cspan>, \u003Csection>\u003C/p>",[],{"type":685,"hasMath":11,"math":1122,"answerTime":18,"id":1124,"text":1125,"media":1126,"_id":1124},{"latex":1123,"template":611},[],"6934787c94206aebe19a5e50","\u003Cp>\u003Cnav>, \u003Caside>, \u003Carticle>\u003C/p>",[],{"type":685,"hasMath":11,"math":1128,"answerTime":18,"id":1130,"text":1131,"media":1132,"_id":1130},{"latex":1129,"template":611},[],"6934787c94206a64449a5e51","\u003Cp>\u003Cbody>, \u003Csection>, \u003Cfooter>\u003C/p>",[],{"type":685,"text":241,"media":1134,"hasMath":11,"math":1135,"answerTime":18},[],{"template":611,"latex":1136},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4453",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.591Z",{"structure":1147,"standards":1185,"topics":1186,"isSuperParent":11,"standardIds":1187,"unifiedStandardIds":1188,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1189,"time":634,"published":8,"aiCreateMeta":1190,"type":168,"createdAt":730,"updated":1191},{"settings":1148,"hasMath":11,"query":1149,"options":1154,"explain":1179,"hints":1183,"kind":168,"marks":1184,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1150,"answerTime":688,"text":1152,"media":1153},{"latex":1151,"template":611},[],"\u003Cp>Select the correct HTML code to create a link that opens in a new tab using target=\"_blank\".\u003C/p>",[],[1155,1161,1167,1173],{"type":685,"hasMath":11,"math":1156,"answerTime":18,"id":1158,"text":1159,"media":1160,"_id":1158},{"latex":1157,"template":611},[],"6934787c94206ab52f9a5e55","\u003Cp>\u003Ca href=\"https://example.com\" target=\"_blank\">Visit Example\u003C/a>\u003C/p>",[],{"type":685,"hasMath":11,"math":1162,"answerTime":18,"id":1164,"text":1165,"media":1166,"_id":1164},{"latex":1163,"template":611},[],"6934787c94206a53d89a5e56","\u003Cp>\u003Ca href=\"https://example.com\" target=\"blank\">Visit Example\u003C/a>\u003C/p>",[],{"type":685,"hasMath":11,"math":1168,"answerTime":18,"id":1170,"text":1171,"media":1172,"_id":1170},{"latex":1169,"template":611},[],"6934787c94206a01c19a5e57","\u003Cp>\u003Ca href=\"https://example.com\" target=\"new\">Visit Example\u003C/a>\u003C/p>",[],{"type":685,"hasMath":11,"math":1174,"answerTime":18,"id":1176,"text":1177,"media":1178,"_id":1176},{"latex":1175,"template":611},[],"6934787c94206a71789a5e58","\u003Cp>\u003Ca href=\"https://example.com\" target=\"_newtab\">Visit Example\u003C/a>\u003C/p>",[],{"type":685,"text":241,"media":1180,"hasMath":11,"math":1181,"answerTime":18},[],{"template":611,"latex":1182},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4454",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.593Z",{"structure":1193,"standards":1231,"topics":1232,"isSuperParent":11,"standardIds":1233,"unifiedStandardIds":1234,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1235,"time":634,"published":8,"aiCreateMeta":1236,"type":168,"createdAt":730,"updated":1237},{"settings":1194,"hasMath":11,"query":1195,"options":1200,"explain":1225,"hints":1229,"kind":168,"marks":1230,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1196,"answerTime":688,"text":1198,"media":1199},{"latex":1197,"template":611},[],"\u003Cp>Which of the following is an example of a definition list with at least 3 terms and definitions?\u003C/p>",[],[1201,1207,1213,1219],{"type":685,"hasMath":11,"math":1202,"answerTime":18,"id":1204,"text":1205,"media":1206,"_id":1204},{"latex":1203,"template":611},[],"6934787c94206a353d9a5e5c","\u003Cp>\u003Cdl>\u003Cdt>HTML\u003C/dt>\u003Cdd>HyperText Markup Language\u003C/dd>\u003Cdt>CSS\u003C/dt>\u003Cdd>Cascading Style Sheets\u003C/dd>\u003Cdt>JS\u003C/dt>\u003Cdd>JavaScript\u003C/dd>\u003C/dl>\u003C/p>",[],{"type":685,"hasMath":11,"math":1208,"answerTime":18,"id":1210,"text":1211,"media":1212,"_id":1210},{"latex":1209,"template":611},[],"6934787c94206a53b99a5e5d","\u003Cp>\u003Cul>\u003Cli>HTML\u003C/li>\u003Cli>CSS\u003C/li>\u003Cli>JS\u003C/li>\u003C/ul>\u003C/p>",[],{"type":685,"hasMath":11,"math":1214,"answerTime":18,"id":1216,"text":1217,"media":1218,"_id":1216},{"latex":1215,"template":611},[],"6934787c94206a2e4c9a5e5e","\u003Cp>\u003Col>\u003Cli>HTML\u003C/li>\u003Cli>CSS\u003C/li>\u003Cli>JS\u003C/li>\u003C/ol>\u003C/p>",[],{"type":685,"hasMath":11,"math":1220,"answerTime":18,"id":1222,"text":1223,"media":1224,"_id":1222},{"latex":1221,"template":611},[],"6934787c94206abbeb9a5e5f","\u003Cp>\u003Ctable>\u003Ctr>\u003Ctd>HTML\u003C/td>\u003Ctd>CSS\u003C/td>\u003Ctd>JS\u003C/td>\u003C/tr>\u003C/table>\u003C/p>",[],{"type":685,"text":241,"media":1226,"hasMath":11,"math":1227,"answerTime":18},[],{"template":611,"latex":1228},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4455",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.595Z",{"structure":1239,"standards":1277,"topics":1278,"isSuperParent":11,"standardIds":1279,"unifiedStandardIds":1280,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1281,"time":634,"published":8,"aiCreateMeta":1282,"type":168,"createdAt":730,"updated":1283},{"settings":1240,"hasMath":11,"query":1241,"options":1246,"explain":1271,"hints":1275,"kind":168,"marks":1276,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1242,"answerTime":688,"text":1244,"media":1245},{"latex":1243,"template":611},[],"\u003Cp>Select the correct HTML code to add an audio file to a page using the audio tag with controls.\u003C/p>",[],[1247,1253,1259,1265],{"type":685,"hasMath":11,"math":1248,"answerTime":18,"id":1250,"text":1251,"media":1252,"_id":1250},{"latex":1249,"template":611},[],"6934787c94206ac0669a5e63","\u003Cp>\u003Caudio src=\"audiofile.mp3\" controls>\u003C/audio>\u003C/p>",[],{"type":685,"hasMath":11,"math":1254,"answerTime":18,"id":1256,"text":1257,"media":1258,"_id":1256},{"latex":1255,"template":611},[],"6934787c94206aa0139a5e64","\u003Cp>\u003Caudio href=\"audiofile.mp3\" controls>\u003C/audio>\u003C/p>",[],{"type":685,"hasMath":11,"math":1260,"answerTime":18,"id":1262,"text":1263,"media":1264,"_id":1262},{"latex":1261,"template":611},[],"6934787c94206ae2489a5e65","\u003Cp>\u003Caudio src=\"audiofile.mp3\">\u003C/audio>\u003C/p>",[],{"type":685,"hasMath":11,"math":1266,"answerTime":18,"id":1268,"text":1269,"media":1270,"_id":1268},{"latex":1267,"template":611},[],"6934787c94206a01899a5e66","\u003Cp>\u003Caudio controls=\"audiofile.mp3\">\u003C/audio>\u003C/p>",[],{"type":685,"text":241,"media":1272,"hasMath":11,"math":1273,"answerTime":18},[],{"template":611,"latex":1274},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4456",{"sourceImage":729,"hasDiagram":11},"2026-02-24T09:57:32.954Z",{"structure":1285,"standards":1323,"topics":1324,"isSuperParent":11,"standardIds":1325,"unifiedStandardIds":1326,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1327,"time":634,"published":8,"aiCreateMeta":1328,"type":168,"createdAt":730,"updated":1007},{"settings":1286,"hasMath":11,"query":1287,"options":1292,"explain":1317,"hints":1321,"kind":168,"marks":1322,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1288,"answerTime":688,"text":1290,"media":1291},{"latex":1289,"template":611},[],"\u003Cp>Select your preferred programming language from the options below.\u003C/p>",[],[1293,1299,1305,1311],{"type":685,"hasMath":11,"math":1294,"answerTime":18,"id":1296,"text":1297,"media":1298,"_id":1296},{"latex":1295,"template":611},[],"6934787c94206a09c69a5e6a","\u003Cp>Python\u003C/p>",[],{"type":685,"hasMath":11,"math":1300,"answerTime":18,"id":1302,"text":1303,"media":1304,"_id":1302},{"latex":1301,"template":611},[],"6934787c94206a0e6c9a5e6b","\u003Cp>JavaScript\u003C/p>",[],{"type":685,"hasMath":11,"math":1306,"answerTime":18,"id":1308,"text":1309,"media":1310,"_id":1308},{"latex":1307,"template":611},[],"6934787c94206ae5969a5e6c","\u003Cp>Ruby\u003C/p>",[],{"type":685,"hasMath":11,"math":1312,"answerTime":18,"id":1314,"text":1315,"media":1316,"_id":1314},{"latex":1313,"template":611},[],"6934787c94206acd189a5e6d","\u003Cp>C++\u003C/p>",[],{"type":685,"text":241,"media":1318,"hasMath":11,"math":1319,"answerTime":18},[],{"template":611,"latex":1320},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4457",{"sourceImage":729,"hasDiagram":11},{"structure":1330,"standards":1368,"topics":1369,"isSuperParent":11,"standardIds":1370,"unifiedStandardIds":1371,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1372,"time":634,"published":8,"aiCreateMeta":1373,"type":168,"createdAt":730,"updated":1007},{"settings":1331,"hasMath":11,"query":1332,"options":1337,"explain":1362,"hints":1366,"kind":168,"marks":1367,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1333,"answerTime":688,"text":1335,"media":1336},{"latex":1334,"template":611},[],"\u003Cp>Select the correct HTML structure for a simple blog post using \u003Carticle>, \u003Csection>, and \u003Caside>.\u003C/p>",[],[1338,1344,1350,1356],{"type":685,"hasMath":11,"math":1339,"answerTime":18,"id":1341,"text":1342,"media":1343,"_id":1341},{"latex":1340,"template":611},[],"6934787c94206a49c19a5e71","\u003Cp>\u003Carticle>\u003Csection>\u003C/section>\u003Caside>\u003C/aside>\u003C/article>\u003C/p>",[],{"type":685,"hasMath":11,"math":1345,"answerTime":18,"id":1347,"text":1348,"media":1349,"_id":1347},{"latex":1346,"template":611},[],"6934787c94206a61619a5e72","\u003Cp>\u003Csection>\u003Carticle>\u003C/article>\u003Caside>\u003C/aside>\u003C/section>\u003C/p>",[],{"type":685,"hasMath":11,"math":1351,"answerTime":18,"id":1353,"text":1354,"media":1355,"_id":1353},{"latex":1352,"template":611},[],"6934787c94206ac2f99a5e73","\u003Cp>\u003Caside>\u003Csection>\u003C/section>\u003Carticle>\u003C/article>\u003C/aside>\u003C/p>",[],{"type":685,"hasMath":11,"math":1357,"answerTime":18,"id":1359,"text":1360,"media":1361,"_id":1359},{"latex":1358,"template":611},[],"6934787c94206a1e839a5e74","\u003Cp>\u003Carticle>\u003Caside>\u003C/aside>\u003Csection>\u003C/section>\u003C/article>\u003C/p>",[],{"type":685,"text":241,"media":1363,"hasMath":11,"math":1364,"answerTime":18},[],{"template":611,"latex":1365},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4458",{"sourceImage":729,"hasDiagram":11},{"structure":1375,"standards":1413,"topics":1414,"isSuperParent":11,"standardIds":1415,"unifiedStandardIds":1416,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1417,"time":634,"published":8,"aiCreateMeta":1418,"type":168,"createdAt":730,"updated":1007},{"settings":1376,"hasMath":11,"query":1377,"options":1382,"explain":1407,"hints":1411,"kind":168,"marks":1412,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1378,"answerTime":688,"text":1380,"media":1381},{"latex":1379,"template":611},[],"\u003Cp>Style a heading to be centered, blue, and uppercase.\u003C/p>",[],[1383,1389,1395,1401],{"type":685,"hasMath":11,"math":1384,"answerTime":18,"id":1386,"text":1387,"media":1388,"_id":1386},{"latex":1385,"template":611},[],"6934787c94206a07f69a5e78","\u003Cp>text-align: center; color: blue; text-transform: uppercase;\u003C/p>",[],{"type":685,"hasMath":11,"math":1390,"answerTime":18,"id":1392,"text":1393,"media":1394,"_id":1392},{"latex":1391,"template":611},[],"6934787c94206a5ab29a5e79","\u003Cp>text-align: left; color: red; text-transform: lowercase;\u003C/p>",[],{"type":685,"hasMath":11,"math":1396,"answerTime":18,"id":1398,"text":1399,"media":1400,"_id":1398},{"latex":1397,"template":611},[],"6934787c94206a38a29a5e7a","\u003Cp>text-align: right; color: green; text-transform: capitalize;\u003C/p>",[],{"type":685,"hasMath":11,"math":1402,"answerTime":18,"id":1404,"text":1405,"media":1406,"_id":1404},{"latex":1403,"template":611},[],"6934787c94206a47dd9a5e7b","\u003Cp>text-align: center; color: black; text-transform: lowercase;\u003C/p>",[],{"type":685,"text":241,"media":1408,"hasMath":11,"math":1409,"answerTime":18},[],{"template":611,"latex":1410},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4459",{"sourceImage":729,"hasDiagram":11},{"structure":1420,"standards":1458,"topics":1459,"isSuperParent":11,"standardIds":1460,"unifiedStandardIds":1461,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1462,"time":634,"published":8,"aiCreateMeta":1463,"type":168,"createdAt":730,"updated":1464},{"settings":1421,"hasMath":11,"query":1422,"options":1427,"explain":1452,"hints":1456,"kind":168,"marks":1457,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1423,"answerTime":688,"text":1425,"media":1426},{"latex":1424,"template":611},[],"\u003Cp>To create a layout using Flexbox where three boxes are aligned in a row with equal spacing, which CSS property and value should be used?\u003C/p>",[],[1428,1434,1440,1446],{"type":685,"hasMath":11,"math":1429,"answerTime":18,"id":1431,"text":1432,"media":1433,"_id":1431},{"latex":1430,"template":611},[],"6934787c94206a211d9a5e7f","\u003Cp>justify-content: space-between;\u003C/p>",[],{"type":685,"hasMath":11,"math":1435,"answerTime":18,"id":1437,"text":1438,"media":1439,"_id":1437},{"latex":1436,"template":611},[],"6934787c94206a9f6c9a5e80","\u003Cp>align-items: center;\u003C/p>",[],{"type":685,"hasMath":11,"math":1441,"answerTime":18,"id":1443,"text":1444,"media":1445,"_id":1443},{"latex":1442,"template":611},[],"6934787c94206af9189a5e81","\u003Cp>flex-direction: column;\u003C/p>",[],{"type":685,"hasMath":11,"math":1447,"answerTime":18,"id":1449,"text":1450,"media":1451,"_id":1449},{"latex":1448,"template":611},[],"6934787c94206afa519a5e82","\u003Cp>justify-content: flex-end;\u003C/p>",[],{"type":685,"text":241,"media":1453,"hasMath":11,"math":1454,"answerTime":18},[],{"template":611,"latex":1455},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445a",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.599Z",{"structure":1466,"standards":1504,"topics":1505,"isSuperParent":11,"standardIds":1506,"unifiedStandardIds":1507,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1508,"time":634,"published":8,"aiCreateMeta":1509,"type":168,"createdAt":730,"updated":1510},{"settings":1467,"hasMath":11,"query":1468,"options":1473,"explain":1498,"hints":1502,"kind":168,"marks":1503,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1469,"answerTime":688,"text":1471,"media":1472},{"latex":1470,"template":611},[],"\u003Cp>Apply a background image to the entire webpage and make it cover the full screen.\u003C/p>",[],[1474,1480,1486,1492],{"type":685,"hasMath":11,"math":1475,"answerTime":18,"id":1477,"text":1478,"media":1479,"_id":1477},{"latex":1476,"template":611},[],"6934787c94206a73a89a5e86","\u003Cp>Use CSS: body { background-image: url('image.jpg'); background-size: cover; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1481,"answerTime":18,"id":1483,"text":1484,"media":1485,"_id":1483},{"latex":1482,"template":611},[],"6934787c94206a0f039a5e87","\u003Cp>Use CSS: body { background-image: url('image.jpg'); background-repeat: repeat; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1487,"answerTime":18,"id":1489,"text":1490,"media":1491,"_id":1489},{"latex":1488,"template":611},[],"6934787c94206a98959a5e88","\u003Cp>Use CSS: body { background-image: url('image.jpg'); background-size: contain; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1493,"answerTime":18,"id":1495,"text":1496,"media":1497,"_id":1495},{"latex":1494,"template":611},[],"6934787c94206a84249a5e89","\u003Cp>Use CSS: body { background-image: url('image.jpg'); background-attachment: fixed; }\u003C/p>",[],{"type":685,"text":241,"media":1499,"hasMath":11,"math":1500,"answerTime":18},[],{"template":611,"latex":1501},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445b",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.601Z",{"structure":1512,"standards":1550,"topics":1551,"isSuperParent":11,"standardIds":1552,"unifiedStandardIds":1553,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1554,"time":634,"published":8,"aiCreateMeta":1555,"type":168,"createdAt":730,"updated":1556},{"settings":1513,"hasMath":11,"query":1514,"options":1519,"explain":1544,"hints":1548,"kind":168,"marks":1549,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1515,"answerTime":688,"text":1517,"media":1518},{"latex":1516,"template":611},[],"\u003Cp>Style a button so that it changes color on hover using the :hover selector.\u003C/p>",[],[1520,1526,1532,1538],{"type":685,"hasMath":11,"math":1521,"answerTime":18,"id":1523,"text":1524,"media":1525,"_id":1523},{"latex":1522,"template":611},[],"6934787c94206a24a89a5e8d","\u003Cp>button:hover { background-color: blue; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1527,"answerTime":18,"id":1529,"text":1530,"media":1531,"_id":1529},{"latex":1528,"template":611},[],"6934787c94206a05489a5e8e","\u003Cp>button:active { background-color: blue; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1533,"answerTime":18,"id":1535,"text":1536,"media":1537,"_id":1535},{"latex":1534,"template":611},[],"6934787c94206ab0039a5e8f","\u003Cp>button:focus { background-color: blue; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1539,"answerTime":18,"id":1541,"text":1542,"media":1543,"_id":1541},{"latex":1540,"template":611},[],"6934787c94206aca2d9a5e90","\u003Cp>button:visited { background-color: blue; }\u003C/p>",[],{"type":685,"text":241,"media":1545,"hasMath":11,"math":1546,"answerTime":18},[],{"template":611,"latex":1547},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445c",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.604Z",{"structure":1558,"standards":1596,"topics":1597,"isSuperParent":11,"standardIds":1598,"unifiedStandardIds":1599,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1600,"time":634,"published":8,"aiCreateMeta":1601,"type":168,"createdAt":730,"updated":1602},{"settings":1559,"hasMath":11,"query":1560,"options":1565,"explain":1590,"hints":1594,"kind":168,"marks":1595,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1561,"answerTime":688,"text":1563,"media":1564},{"latex":1562,"template":611},[],"\u003Cp>Select the correct CSS class that adds a border, padding, and rounded corners to an element.\u003C/p>",[],[1566,1572,1578,1584],{"type":685,"hasMath":11,"math":1567,"answerTime":18,"id":1569,"text":1570,"media":1571,"_id":1569},{"latex":1568,"template":611},[],"6934787c94206a64cd9a5e94","\u003Cp>.box { border: 1px solid #000; padding: 10px; border-radius: 8px; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1573,"answerTime":18,"id":1575,"text":1576,"media":1577,"_id":1575},{"latex":1574,"template":611},[],"6934787c94206a45089a5e95","\u003Cp>.box { border: none; padding: 0; border-radius: 0; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1579,"answerTime":18,"id":1581,"text":1582,"media":1583,"_id":1581},{"latex":1580,"template":611},[],"6934787c94206a4c3b9a5e96","\u003Cp>.box { border: 1px dashed #000; margin: 10px; border-radius: 0; }\u003C/p>",[],{"type":685,"hasMath":11,"math":1585,"answerTime":18,"id":1587,"text":1588,"media":1589,"_id":1587},{"latex":1586,"template":611},[],"6934787c94206a8d429a5e97","\u003Cp>.box { border: 2px dotted #000; padding: 5px; border-radius: 0; }\u003C/p>",[],{"type":685,"text":241,"media":1591,"hasMath":11,"math":1592,"answerTime":18},[],{"template":611,"latex":1593},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445d",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.606Z",{"structure":1604,"standards":1642,"topics":1643,"isSuperParent":11,"standardIds":1644,"unifiedStandardIds":1645,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1646,"time":634,"published":8,"aiCreateMeta":1647,"type":168,"createdAt":730,"updated":1007},{"settings":1605,"hasMath":11,"query":1606,"options":1611,"explain":1636,"hints":1640,"kind":168,"marks":1641,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1607,"answerTime":688,"text":1609,"media":1610},{"latex":1608,"template":611},[],"\u003Cp>Use CSS Grid to create a 3-column layout.\u003C/p>",[],[1612,1618,1624,1630],{"type":685,"hasMath":11,"math":1613,"answerTime":18,"id":1615,"text":1616,"media":1617,"_id":1615},{"latex":1614,"template":611},[],"6934787c94206a09c79a5e9b","\u003Cp>display: grid; grid-template-columns: 1fr 1fr 1fr;\u003C/p>",[],{"type":685,"hasMath":11,"math":1619,"answerTime":18,"id":1621,"text":1622,"media":1623,"_id":1621},{"latex":1620,"template":611},[],"6934787c94206a6c6b9a5e9c","\u003Cp>display: flex; flex-direction: column;\u003C/p>",[],{"type":685,"hasMath":11,"math":1625,"answerTime":18,"id":1627,"text":1628,"media":1629,"_id":1627},{"latex":1626,"template":611},[],"6934787c94206acfdb9a5e9d","\u003Cp>display: grid; grid-template-rows: 1fr 1fr 1fr;\u003C/p>",[],{"type":685,"hasMath":11,"math":1631,"answerTime":18,"id":1633,"text":1634,"media":1635,"_id":1633},{"latex":1632,"template":611},[],"6934787c94206a28739a5e9e","\u003Cp>display: block; column-count: 3;\u003C/p>",[],{"type":685,"text":241,"media":1637,"hasMath":11,"math":1638,"answerTime":18},[],{"template":611,"latex":1639},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445e",{"sourceImage":729,"hasDiagram":11},{"structure":1649,"standards":1687,"topics":1688,"isSuperParent":11,"standardIds":1689,"unifiedStandardIds":1690,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1691,"time":634,"published":8,"aiCreateMeta":1692,"type":168,"createdAt":730,"updated":1007},{"settings":1650,"hasMath":11,"query":1651,"options":1656,"explain":1681,"hints":1685,"kind":168,"marks":1686,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1652,"answerTime":688,"text":1654,"media":1655},{"latex":1653,"template":611},[],"\u003Cp>To make a navigation bar horizontal, which CSS property can be used?\u003C/p>",[],[1657,1663,1669,1675],{"type":685,"hasMath":11,"math":1658,"answerTime":18,"id":1660,"text":1661,"media":1662,"_id":1660},{"latex":1659,"template":611},[],"6934787c94206a18609a5ea2","\u003Cp>display: flex;\u003C/p>",[],{"type":685,"hasMath":11,"math":1664,"answerTime":18,"id":1666,"text":1667,"media":1668,"_id":1666},{"latex":1665,"template":611},[],"6934787c94206aeda99a5ea3","\u003Cp>display: block;\u003C/p>",[],{"type":685,"hasMath":11,"math":1670,"answerTime":18,"id":1672,"text":1673,"media":1674,"_id":1672},{"latex":1671,"template":611},[],"6934787c94206a2cfb9a5ea4","\u003Cp>float: left;\u003C/p>",[],{"type":685,"hasMath":11,"math":1676,"answerTime":18,"id":1678,"text":1679,"media":1680,"_id":1678},{"latex":1677,"template":611},[],"6934787c94206af6609a5ea5","\u003Cp>position: absolute;\u003C/p>",[],{"type":685,"text":241,"media":1682,"hasMath":11,"math":1683,"answerTime":18},[],{"template":611,"latex":1684},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d445f",{"sourceImage":729,"hasDiagram":11},{"structure":1694,"standards":1732,"topics":1733,"isSuperParent":11,"standardIds":1734,"unifiedStandardIds":1735,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1736,"time":634,"published":8,"aiCreateMeta":1737,"type":168,"createdAt":730,"updated":1738},{"settings":1695,"hasMath":11,"query":1696,"options":1701,"explain":1726,"hints":1730,"kind":168,"marks":1731,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1697,"answerTime":688,"text":1699,"media":1700},{"latex":1698,"template":611},[],"\u003Cp>Which CSS properties are essential to create a card UI with shadow, padding, and a width limit (e.g., 300px)?\u003C/p>",[],[1702,1708,1714,1720],{"type":685,"hasMath":11,"math":1703,"answerTime":18,"id":1705,"text":1706,"media":1707,"_id":1705},{"latex":1704,"template":611},[],"6934787c94206a67c59a5ea9","\u003Cp>box-shadow, padding, max-width\u003C/p>",[],{"type":685,"hasMath":11,"math":1709,"answerTime":18,"id":1711,"text":1712,"media":1713,"_id":1711},{"latex":1710,"template":611},[],"6934787c94206a69dc9a5eaa","\u003Cp>border-radius, margin, min-width\u003C/p>",[],{"type":685,"hasMath":11,"math":1715,"answerTime":18,"id":1717,"text":1718,"media":1719,"_id":1717},{"latex":1716,"template":611},[],"6934787c94206a2edb9a5eab","\u003Cp>background-color, float, width\u003C/p>",[],{"type":685,"hasMath":11,"math":1721,"answerTime":18,"id":1723,"text":1724,"media":1725,"_id":1723},{"latex":1722,"template":611},[],"6934787c94206a8a149a5eac","\u003Cp>display: flex, gap, min-height\u003C/p>",[],{"type":685,"text":241,"media":1727,"hasMath":11,"math":1728,"answerTime":18},[],{"template":611,"latex":1729},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4460",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.609Z",{"structure":1740,"standards":1778,"topics":1779,"isSuperParent":11,"standardIds":1780,"unifiedStandardIds":1781,"aiGenerated":8,"__v":261,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1782,"time":634,"published":8,"aiCreateMeta":1783,"type":168,"createdAt":730,"updated":1007},{"settings":1741,"hasMath":11,"query":1742,"options":1747,"explain":1772,"hints":1776,"kind":168,"marks":1777,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1743,"answerTime":688,"text":1745,"media":1746},{"latex":1744,"template":611},[],"\u003Cp>Style an image to be circular using border-radius.\u003C/p>",[],[1748,1754,1760,1766],{"type":685,"hasMath":11,"math":1749,"answerTime":18,"id":1751,"text":1752,"media":1753,"_id":1751},{"latex":1750,"template":611},[],"6934787c94206ae9979a5eb0","\u003Cp>border-radius: 50%;\u003C/p>",[],{"type":685,"hasMath":11,"math":1755,"answerTime":18,"id":1757,"text":1758,"media":1759,"_id":1757},{"latex":1756,"template":611},[],"6934787c94206a39139a5eb1","\u003Cp>border-radius: 100px;\u003C/p>",[],{"type":685,"hasMath":11,"math":1761,"answerTime":18,"id":1763,"text":1764,"media":1765,"_id":1763},{"latex":1762,"template":611},[],"6934787c94206a5fdf9a5eb2","\u003Cp>border-radius: 0;\u003C/p>",[],{"type":685,"hasMath":11,"math":1767,"answerTime":18,"id":1769,"text":1770,"media":1771,"_id":1769},{"latex":1768,"template":611},[],"6934787c94206a39bd9a5eb3","\u003Cp>border-radius: 10%;\u003C/p>",[],{"type":685,"text":241,"media":1773,"hasMath":11,"math":1774,"answerTime":18},[],{"template":611,"latex":1775},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4461",{"sourceImage":729,"hasDiagram":11},{"structure":1785,"standards":1823,"topics":1824,"isSuperParent":11,"standardIds":1825,"unifiedStandardIds":1826,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1827,"time":634,"published":8,"aiCreateMeta":1828,"type":168,"createdAt":730,"updated":1829},{"settings":1786,"hasMath":11,"query":1787,"options":1792,"explain":1817,"hints":1821,"kind":168,"marks":1822,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1788,"answerTime":688,"text":1790,"media":1791},{"latex":1789,"template":611},[],"\u003Cp>A responsive webpage should have text size that adjusts using which of the following relative units?\u003C/p>",[],[1793,1799,1805,1811],{"type":685,"hasMath":11,"math":1794,"answerTime":18,"id":1796,"text":1797,"media":1798,"_id":1796},{"latex":1795,"template":611},[],"6934787c94206ac71d9a5eb7","\u003Cp>em, rem, %\u003C/p>",[],{"type":685,"hasMath":11,"math":1800,"answerTime":18,"id":1802,"text":1803,"media":1804,"_id":1802},{"latex":1801,"template":611},[],"6934787c94206af5ca9a5eb8","\u003Cp>px, pt, in\u003C/p>",[],{"type":685,"hasMath":11,"math":1806,"answerTime":18,"id":1808,"text":1809,"media":1810,"_id":1808},{"latex":1807,"template":611},[],"6934787c94206a92f79a5eb9","\u003Cp>cm, mm, px\u003C/p>",[],{"type":685,"hasMath":11,"math":1812,"answerTime":18,"id":1814,"text":1815,"media":1816,"_id":1814},{"latex":1813,"template":611},[],"6934787c94206a47a59a5eba","\u003Cp>vh, vw, px\u003C/p>",[],{"type":685,"text":241,"media":1818,"hasMath":11,"math":1819,"answerTime":18},[],{"template":611,"latex":1820},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4462",{"sourceImage":729,"hasDiagram":11},"2025-12-06T19:00:57.614Z",{"structure":1831,"standards":1869,"topics":1870,"isSuperParent":11,"standardIds":1871,"unifiedStandardIds":1872,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1873,"time":634,"published":8,"aiCreateMeta":1874,"type":168,"createdAt":730,"updated":1876},{"settings":1832,"hasMath":11,"query":1833,"options":1838,"explain":1863,"hints":1867,"kind":168,"marks":1868,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1834,"answerTime":688,"text":1836,"media":1837},{"latex":1835,"template":611},[],"\u003Cp>Explain how to create animations using @keyframes to move a box from left to right.\u003C/p>",[],[1839,1845,1851,1857],{"type":685,"hasMath":11,"math":1840,"answerTime":18,"id":1842,"text":1843,"media":1844,"_id":1842},{"latex":1841,"template":611},[],"6934787c94206ae5969a5ebe","\u003Cp>Use @keyframes to define the movement from left to right and apply it to the box with the animation property.\u003C/p>",[],{"type":685,"hasMath":11,"math":1846,"answerTime":18,"id":1848,"text":1849,"media":1850,"_id":1848},{"latex":1847,"template":611},[],"6934787c94206a70d89a5ebf","\u003Cp>Use @keyframes to change the box color and apply it with the transition property.\u003C/p>",[],{"type":685,"hasMath":11,"math":1852,"answerTime":18,"id":1854,"text":1855,"media":1856,"_id":1854},{"latex":1853,"template":611},[],"6934787c94206a9c9a9a5ec0","\u003Cp>Use @keyframes to rotate the box and apply it with the animation property.\u003C/p>",[],{"type":685,"hasMath":11,"math":1858,"answerTime":18,"id":1860,"text":1861,"media":1862,"_id":1860},{"latex":1859,"template":611},[],"6934787c94206a25779a5ec1","\u003Cp>Use @keyframes to move the box from top to bottom and apply it with the animation property.\u003C/p>",[],{"type":685,"text":241,"media":1864,"hasMath":11,"math":1865,"answerTime":18},[],{"template":611,"latex":1866},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4463",{"sourceImage":1875,"hasDiagram":11},"https://quizizz-static.s3-accelerate.amazonaws.com/_media/uploadedFiles/d77eda76-3939-4f4c-a6e9-d981e110210d-v2","2025-12-06T19:00:57.617Z",{"structure":1878,"standards":1916,"topics":1917,"isSuperParent":11,"standardIds":1918,"unifiedStandardIds":1919,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1920,"time":634,"published":8,"aiCreateMeta":1921,"type":168,"createdAt":730,"updated":1922},{"settings":1879,"hasMath":11,"query":1880,"options":1885,"explain":1910,"hints":1914,"kind":168,"marks":1915,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1881,"answerTime":688,"text":1883,"media":1884},{"latex":1882,"template":611},[],"\u003Cp>Which of the following describes the correct steps to use a Google Font by linking it in HTML and applying it to the body text?\u003C/p>",[],[1886,1892,1898,1904],{"type":685,"hasMath":11,"math":1887,"answerTime":18,"id":1889,"text":1890,"media":1891,"_id":1889},{"latex":1888,"template":611},[],"6934787c94206ad7f69a5ec5","\u003Cp>Add the Google Font link in the \u003Chead> section and set the font-family in the body CSS.\u003C/p>",[],{"type":685,"hasMath":11,"math":1893,"answerTime":18,"id":1895,"text":1896,"media":1897,"_id":1895},{"latex":1894,"template":611},[],"6934787c94206a08999a5ec6","\u003Cp>Add the Google Font link in the \u003Cbody> section and set the font-family in the \u003Ctitle> tag.\u003C/p>",[],{"type":685,"hasMath":11,"math":1899,"answerTime":18,"id":1901,"text":1902,"media":1903,"_id":1901},{"latex":1900,"template":611},[],"6934787c94206aab4a9a5ec7","\u003Cp>Download the Google Font and use it directly in the \u003Cbody> tag without linking.\u003C/p>",[],{"type":685,"hasMath":11,"math":1905,"answerTime":18,"id":1907,"text":1908,"media":1909,"_id":1907},{"latex":1906,"template":611},[],"6934787c94206a7a4b9a5ec8","\u003Cp>Use the Google Font link in a \u003Cscript> tag and apply the font-family in the \u003Cfooter>.\u003C/p>",[],{"type":685,"text":241,"media":1911,"hasMath":11,"math":1912,"answerTime":18},[],{"template":611,"latex":1913},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4464",{"sourceImage":1875,"hasDiagram":11},"2025-12-06T19:00:57.619Z",{"structure":1924,"standards":1962,"topics":1963,"isSuperParent":11,"standardIds":1964,"unifiedStandardIds":1965,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":1966,"time":634,"published":8,"aiCreateMeta":1967,"type":168,"createdAt":730,"updated":1968},{"settings":1925,"hasMath":11,"query":1926,"options":1931,"explain":1956,"hints":1960,"kind":168,"marks":1961,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1927,"answerTime":688,"text":1929,"media":1930},{"latex":1928,"template":611},[],"\u003Cp>How would you animate a button hover effect that scales it slightly?\u003C/p>",[],[1932,1938,1944,1950],{"type":685,"hasMath":11,"math":1933,"answerTime":18,"id":1935,"text":1936,"media":1937,"_id":1935},{"latex":1934,"template":611},[],"6934787c94206a146a9a5ecc","\u003Cp>By using CSS transform: scale() with a transition on hover.\u003C/p>",[],{"type":685,"hasMath":11,"math":1939,"answerTime":18,"id":1941,"text":1942,"media":1943,"_id":1941},{"latex":1940,"template":611},[],"6934787c94206aff379a5ecd","\u003Cp>By changing the button's color using CSS.\u003C/p>",[],{"type":685,"hasMath":11,"math":1945,"answerTime":18,"id":1947,"text":1948,"media":1949,"_id":1947},{"latex":1946,"template":611},[],"6934787c94206aadaf9a5ece","\u003Cp>By adding a box-shadow on hover only.\u003C/p>",[],{"type":685,"hasMath":11,"math":1951,"answerTime":18,"id":1953,"text":1954,"media":1955,"_id":1953},{"latex":1952,"template":611},[],"6934787c94206a2dc79a5ecf","\u003Cp>By hiding the button on hover.\u003C/p>",[],{"type":685,"text":241,"media":1957,"hasMath":11,"math":1958,"answerTime":18},[],{"template":611,"latex":1959},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4465",{"sourceImage":1875,"hasDiagram":11},"2025-12-06T19:00:57.622Z",{"structure":1970,"standards":2008,"topics":2009,"isSuperParent":11,"standardIds":2010,"unifiedStandardIds":2011,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":2012,"time":634,"published":8,"aiCreateMeta":2013,"type":168,"createdAt":730,"updated":2014},{"settings":1971,"hasMath":11,"query":1972,"options":1977,"explain":2002,"hints":2006,"kind":168,"marks":2007,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":1973,"answerTime":688,"text":1975,"media":1976},{"latex":1974,"template":611},[],"\u003Cp>Building a two-column layout can be achieved using which of the following CSS techniques?\u003C/p>",[],[1978,1984,1990,1996],{"type":685,"hasMath":11,"math":1979,"answerTime":18,"id":1981,"text":1982,"media":1983,"_id":1981},{"latex":1980,"template":611},[],"6934787c94206a84999a5ed3","\u003Cp>Using floats or Flexbox\u003C/p>",[],{"type":685,"hasMath":11,"math":1985,"answerTime":18,"id":1987,"text":1988,"media":1989,"_id":1987},{"latex":1986,"template":611},[],"6934787c94206a62db9a5ed4","\u003Cp>Using only inline styles\u003C/p>",[],{"type":685,"hasMath":11,"math":1991,"answerTime":18,"id":1993,"text":1994,"media":1995,"_id":1993},{"latex":1992,"template":611},[],"6934787c94206a4bbf9a5ed5","\u003Cp>Using JavaScript functions\u003C/p>",[],{"type":685,"hasMath":11,"math":1997,"answerTime":18,"id":1999,"text":2000,"media":2001,"_id":1999},{"latex":1998,"template":611},[],"6934787c94206a47c09a5ed6","\u003Cp>Using CSS animations\u003C/p>",[],{"type":685,"text":241,"media":2003,"hasMath":11,"math":2004,"answerTime":18},[],{"template":611,"latex":2005},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4466",{"sourceImage":1875,"hasDiagram":11},"2025-12-06T19:00:57.624Z",{"structure":2016,"standards":2053,"topics":2054,"isSuperParent":11,"standardIds":2055,"unifiedStandardIds":2056,"aiGenerated":8,"__v":726,"teleportFrom":611,"cloned":611,"ver":726,"parent":611,"_id":2057,"time":634,"published":8,"aiCreateMeta":2058,"type":168,"createdAt":730,"updated":2059},{"settings":2017,"hasMath":11,"query":2018,"options":2023,"explain":2047,"hints":2051,"kind":168,"marks":2052,"answer":18},{"hasCorrectAnswer":8,"fibDataType":683,"canSubmitCustomResponse":11,"doesOptionHaveMultipleTargets":11,"showAdvancedRTE":11},{"type":685,"hasMath":11,"math":2019,"answerTime":688,"text":2021,"media":2022},{"latex":2020,"template":611},[],"\u003Cp>To create a fixed header that stays at the top when scrolling, which CSS property should you use?\u003C/p>",[],[2024,2030,2036,2042],{"type":685,"hasMath":11,"math":2025,"answerTime":18,"id":2027,"text":2028,"media":2029,"_id":2027},{"latex":2026,"template":611},[],"6934787c94206a63c39a5eda","\u003Cp>position: fixed;\u003C/p>",[],{"type":685,"hasMath":11,"math":2031,"answerTime":18,"id":2033,"text":2034,"media":2035,"_id":2033},{"latex":2032,"template":611},[],"6934787c94206a74989a5edb","\u003Cp>position: relative;\u003C/p>",[],{"type":685,"hasMath":11,"math":2037,"answerTime":18,"id":2039,"text":2040,"media":2041,"_id":2039},{"latex":2038,"template":611},[],"6934787c94206aeb9b9a5edc","\u003Cp>position: static;\u003C/p>",[],{"type":685,"hasMath":11,"math":2043,"answerTime":18,"id":2045,"text":1679,"media":2046,"_id":2045},{"latex":2044,"template":611},[],"6934787c94206a7fff9a5edd",[],{"type":685,"text":241,"media":2048,"hasMath":11,"math":2049,"answerTime":18},[],{"template":611,"latex":2050},[],[],{"correct":261,"incorrect":18},[],[],[],[],"6934787c938e1b36929d4467",{"sourceImage":1875,"hasDiagram":11},"2025-12-06T19:00:57.630Z",[],"2025-12-06T18:39:56.242Z","2025-12-06T18:58:56.647Z","2026-03-07T03:04:47.272Z","2026-08-13T20:14:23.604Z",{"service":2066,"version":2067},"quizserver","ec116a0dc8abb03b8d2756530e6fc44cb6fb4f55",{"success":8,"data":2069,"time":2148},{"quizzes":2070,"total":2144,"timeTaken":2145,"experiment":2146,"source":2147},[2071,2080,2088,2097,2106,2116,2125,2134],{"id":2072,"isSuper":11,"type":613,"info":2073,"shouldIndex":11,"stats":2076},"69144ab200f595966538f5e7",{"grade":2074,"name":2075,"slug":2075},[670,670],"AWS MCQ Questions (Medium Level)",{"played":261,"totalPlayers":2077,"totalCorrect":2078,"totalQuestions":2079},60,1073,25,{"id":2081,"isSuper":11,"type":613,"info":2082,"shouldIndex":11,"stats":2086},"691c4f500f463b83f56ac26c",{"grade":2083,"name":2084,"slug":2085},[670,670],"BAHASA INGGRIS","Semester English Exam Questions - Part 1",{"played":261,"totalPlayers":2079,"totalCorrect":2087,"totalQuestions":2079},388,{"id":2089,"isSuper":11,"type":613,"info":2090,"shouldIndex":11,"stats":2094},"68c51232bda3abe6a1870464",{"grade":2091,"name":2092,"slug":2092,"image":2093},[670,670],"ALTSCHOOL QUIZ 13/9/25","https://media.quizizz.com/_mdserver/main/media/resource/gs/quizizz-media/quizzes/d79e2c01-5c96-43ed-811b-a03350ec258c-v2",{"played":261,"totalPlayers":2095,"totalCorrect":2096,"totalQuestions":2079},7,49,{"id":2098,"isSuper":8,"type":613,"info":2099,"shouldIndex":11,"stats":2103},"67daf30832610c2bd7c8a1d2",{"grade":2100,"name":2101,"slug":2101,"image":2102},[670,670],"Bendy and the ink machine","https://media.quizizz.com/_mdserver/main/media/resource/gs/quizizz-media/quizzes/b19f34fa-c0d9-4a27-8024-12a5017b521b-v2",{"played":726,"totalPlayers":726,"totalCorrect":2104,"totalQuestions":2105},39,26,{"id":2107,"isSuper":11,"type":613,"info":2108,"shouldIndex":11,"stats":2112},"68a449846c8c25a7053a79ae",{"grade":2109,"name":2110,"slug":2110,"image":2111},[670,670],"Python Programming Quiz 1","https://media.quizizz.com/_mdserver/main/media/resource/gs/quizizz-media/quizzes/7b608a55-6ffc-42f5-9a6a-3b0f1c95812b-v2",{"played":261,"totalPlayers":2113,"totalCorrect":2114,"totalQuestions":2115},71,960,30,{"id":2117,"isSuper":11,"type":613,"info":2118,"shouldIndex":11,"stats":2122},"68c513cffcc89e10d753ef11",{"grade":2119,"name":2120,"slug":2120,"image":2121},[670,670],"Pelatihan KKA LPD KodeKiddo Fase D","https://media.quizizz.com/_mdserver/main/media/resource/gs/quizizz-media/quizzes/457c4626-caf6-46e3-b6c4-71bb954488b1-v2",{"played":674,"totalPlayers":2123,"totalCorrect":2124,"totalQuestions":2115},61,934,{"id":2126,"isSuper":8,"type":613,"info":2127,"shouldIndex":11,"stats":2132},"6925c4e641cc6f847869d5b7",{"grade":2128,"name":2129,"slug":2130,"image":2131},[670,670],"CySA+ Day 1-4","CySA+ Day 1-3","https://media.quizizz.com/_mdserver/main/media/resource/gs/quizizz-media/quizzes/caef31a2-0e7e-4383-a3c0-57adcfd2c4b2-v2",{"totalQuestions":2133},35,{"id":2135,"isSuper":11,"type":613,"info":2136,"shouldIndex":11,"stats":2140},"66991d7f0d914f5892dc36d4",{"grade":2137,"name":2138,"slug":2139},[670,670],"Net+ day 5","Net+ day 3",{"played":2141,"totalPlayers":2142,"totalCorrect":2143,"totalQuestions":2079},28,262,4382,56,19,"quizPageRecoPublicSearch","recommended_search","2026-08-13T20:14:23.645536805Z",["Reactive",2150],{"$scurrent-user":611,"$srequestCountry":2151,"$srequestRegion":-1},"US",["Set"],["ShallowReactive",2154],{"print-quiz-6934787cb75cb328f5001a08":611,"print-feature-flags":611,"print-recommendations-6934787cb75cb328f5001a08-false":611},"/print/quiz/6934787cb75cb328f5001a08",["Reactive",2157],{"worksheetGame":2158},{"gameId":2159,"worksheetId":2161,"bubbleCoordMap":2162,"gradedChoice":2163,"isGameSettingsMode":2164,"isBubbleSheet":2166,"printCtaTime":2167},["EmptyRef",2160],"null",["EmptyRef",2160],["EmptyRef",2160],["EmptyRef",2160],["EmptyRef",2165],"false",["EmptyRef",2165],["EmptyRef",2160]]</script> <script>window.__NUXT__={};window.__NUXT__.config={public:{disableS3Cache:false,appEnv:"production",isSsgBuild:false,enablePseudoLocale:false,apiBase:"/undefined/undefined",sentry:{dsn:"https://f45858ca79fd48fe019ce67e6c560868@o984659.ingest.us.sentry.io/4508357912363008",enabled:true},gtag:{id:""},gtm:{devtools:true,id:"GTM-N3RKJ8L",debug:true,enabled:true,defer:true},app_type:"server",port:"8080",worker_page_type:"quizPage",component_name:"worksheet",i18n:{baseUrl:"https://cf.quizizz.com/translationsV2/nuxtssr",locales:{en:{domain:""},es:{domain:""},fr:{domain:""},pl:{domain:""},ru:{domain:""},id:{domain:""},ms:{domain:""},tl:{domain:""},de:{domain:""},vi:{domain:""},th:{domain:""},az:{domain:""},"pt-br":{domain:""},"zh-CN":{domain:""},"zh-TW":{domain:""},tr:{domain:""},it:{domain:""},ja:{domain:""},kk:{domain:""},ko:{domain:""},nl:{domain:""},et:{domain:""},lt:{domain:""},hu:{domain:""},lv:{domain:""},sv:{domain:""},da:{domain:""},nb:{domain:""},fi:{domain:""},cs:{domain:""},hi:{domain:""},ro:{domain:""},af:{domain:""},sw:{domain:""},uk:{domain:""}}},device:{defaultUserAgent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36",enabled:true,refreshOnResize:false}},app:{baseURL:"/",buildId:"8b1fd462-a06c-4fa3-b1e7-47abe27fa25f",buildAssetsDir:"nuxtssr",cdnURL:"https://cf.quizizz.com"}}</script></body></html>