NEW
Font size
WorksheetsU23CS381 - ADD QUIZ Assessment
Total questions: 60
Worksheet time: 20mins
HTML stand for _____________
HTML tag is used for creating an unordered list is ___________
<li>
<Unordered List>
<ul>
<list>
The purpose of the HTML element ________
How many sizes of headers are available in HTML by default?
HTML tag is used to associate a label with a form control _____________________
<element>
<label>
<form control>
<form label>
HTML tag is used to define a table row _____________
<table row>
<tr>
<th>
<row>
HTML tag is used to define a table heading __________
<table head>
<th>
<tr>
<Head>
HTML tag is used to create a form in HTML ____________
<form>
<create>
<from>
<html form>
Which CSS selector is used to select elements with a specific class?
What does the CSS selector div > p select?
All <p>
elements inside a
<div> element
The first <p>
element inside a
<div> element
All <p>
elements directly preceded by a <div> element
All <p>
elements inside a <div>
regardless of their nesting level
In CSS, what property is used to set the space between the border and the content of an element?
Bootstrap is a framework primarily for ____________ type of development
Where can you place JavaScript code in an HTML document for it to be executed when the page loads?
_____________ is the correct way to comment in JavaScript?
Keyword is used to declare a variable in JavaScript is_______________
The result of the expression 5 + "5" in JavaScript is _____
Which statement is used to execute a block of code repeatedly as long as a condition is true?
The purpose of the else statement in JavaScript is _______
How do you declare a function in JavaScript?
The JavaScript event occurs when the user clicks on an HTML element is _____________
How can you check if a form field is empty using JavaScript?
What does the setAttribute() method in the DOM do?
How do you redirect a user to another webpage using JavaScript?
How do you access an HTML element with id "myElement" in JavaScript?
GitHub is a ____________
Git command is used to initialize a new repository locally is_________________
What does the command git add do?
How do you clone a repository from GitHub to your local machine?
___________ command is used to create a new branch in Git
How do you merge a branch into the main branch in Git?
