NEW
Font size
WorksheetsDebugging Challenge 2
Total questions: 15
Worksheet time: 9mins
Frontend web development consists of 3 main languages. What are those?
HTML, CSS, Java
HTML, CSS, Javascript
HTML, CSI, Typescript
HTML, CSI, Python
What do you think will be the result of the code snippet?
A link showing "Koding Next"
A paragraph text showing "Koding Next"
A main title text showing "Koding Next"
An image showing "Koding Next"
What do you think is missing from the code snippet?
<heading>
</img>
</body>
<source>
Most HTML tags have opening and closing tag. But some of the tags are not having the closing tag. What are those tag called?
Multiple Tag
Double Tag
Solo Tag
Single Tag
Which one do you think is the correct way to add an image in HTML?
A table consist of rows and columns. In HTML, what is the tag name of table row and table column?
<row> and <column>
<tr> and <tc>
<tr> and <td>
<table> and <tr>
How many rows and how many columns the table has?
3 rows & 6 columns
6 rows & 2 columns
3 rows & 3 columns
3 rows & 2 columns
Which one is not true?
HTML is for the building blocks and structure of the website.
CSS is for the styling and the presentational side of the website.
Java is for the functionality and interactivity of the website.
Frontend languages consists of HTML, CSS, & Javascript.
To get the result as shown in the picture, what tag do we use?
<audio controls></audio>
<audio control></audio>
<audio player></audio>
<audio source></audio>
Which tag do we use to make a clickable link that redirect to google page?
What is the tag that we use to add a youtube video to our website>
<iframe></iframe>
<video></video>
<youtube></youtube>
<vid></vid>
CSS stands for .....
Creating Style Sheet
Concrete Styling Sheet
Cascading Style Sheet
Canopy Style Sheet
There are 3 ways to add CSS to our website. Which one IS NOT correct?
Creational
Inline
Internal
External
What tag do we use to make a text bold?
<strong></strong>
<big></big>
<old></old>
<heavy></heavy>
What do you think will be the result of this code snippet?
A title text with a blue color.
A title text with background color of blue.
A title text with background color of white.
A title text with no styling.
