NEW
Font size
WorksheetsIT2 SHS 1st Quarter Exam
Total questions: 57
Worksheet time: 29mins
Which of the following best describes Misamis University’s Philosophy?
To be the largest university in Mindanao
To focus solely on local development
To provide a nurturing, inclusive, innovative, transformative, and sustainable learning environment
To train students in business and technology only
What is the Vision of Misamis University?
To be a globally-recognized institution of learning
To develop entrepreneurship and innovation
To promote cultural diversity and moral values
To provide accessible education for all
Which of the following is included in the Mission of Misamis University?
Creating the largest alumni network in the Philippines
Developing God-fearing, competent, adaptive, and service-oriented critical thinkers
Producing highly technical graduates only
Training athletes for international competitions
Which of the following is NOT one of the Core Values of Misamis University?
Compassionate
Competitive
Innovative
Responsible
Misamis University’s Goals include all of the following EXCEPT:
Develop critical and innovative thinking skills
Enhance resiliency and life skills
Focus only on academic excellence without community engagement
Promote social responsibility and environmental stewardship
How does Misamis University promote unity and collaboration in the academic community?
By engaging in spiritual, cultural, co-curricular, and extra-curricular activities
By limiting students’ exposure to industry immersion
By prioritizing only classroom learning
By restricting extracurricular activities
Which of the following objectives emphasizes real-world exposure for students?
Conducting pure laboratory research only
Exposing students to industry immersion, on-the-job training, and other related learning experiences
Focusing on theoretical lectures only
Limiting partnerships with industries
Misamis University conducts research and extension initiatives mainly to:
Compete with international universities
Earn more revenue for the university
Focus on global ranking
Respond to the needs of stakeholders
As a student, how can you apply Misamis University’s Core Value of Responsibility in daily life?
By blaming groupmates for unfinished projects
By relying only on teachers to remind you of tasks
By submitting assignments late but with excuses
By taking ownership of your tasks, meeting deadlines, and being accountable for your actions
A group of students wants to create a community project promoting environmental stewardship. Which Misamis University principle are they applying?
Core Value of Excellence only
Goals
Philosophy
Vision
Who invented the World Wide Web in 1989?
Bill Gates
Larry Page
Steve Jobs
Tim Berners-Lee
What does HTML stand for?
High-level Transfer Machine Language
Hyper Transfer Markup Logic
Hyperlinks and Text Management Language
HyperText Markup Language
Why are domain names important for web users?
They allow users to access websites without typing IP addresses
They prevent spam emails
They reduce file size of web pages
They replace the need for browsers
If a company wants to restrict its website only to government agencies, which domain extension should it use?
.com
.gov
.io
.net
You are asked to make a website for an educational institution. Which domain extension is most appropriate?
.edu
.gov
.io
.net
You are creating a website portfolio. To enhance creativity and avoid plagiarism, which rule should you follow?
Avoid templates and design your own
Avoid using CSS
Copy from existing sites
Use free templates to save time
You want to give your classmates feedback on their web design work without offending them. Which classroom rule applies?
Communication
Proactiveness
Respect
Time management
If a student faces a family emergency that affects coursework, what should they do?
Communicate with the teacher to apply for extenuating circumstances
Copy a classmate’s work
Drop the course immediately
Skip class until the situation resolves
Which tag is required in all HTML5 documents?
<!DOCTYPE html>
<html5>
<link>
<meta>
Which element contains the visible content of a webpage?
<title>
<meta>
<head>
<body>
How many heading levels does HTML5 provide?
3
6
8
10
Which tag is used to create a hyperlink in HTML5?
<a>
<href>
<link>
<url>
What attribute specifies the destination of a hyperlink?
alt
href
link
src
Which two image formats are most common for web development?
BMP and TIFF
GIF and DOC
PDF and PSD
PNG and JPEG
What attribute provides alternative text for images in HTML5?
alt
title
text
title
Which element creates a list with bullet points?
<dl>
<li>
<ol>
<ul>
Why is the DOCTYPE declaration important in HTML5 documents?
It adds meta information for search engines
It ensures the page renders in standards mode
It makes the code shorter
It speeds up the internet connection
What is the purpose of comments in HTML5?
To be displayed on the webpage
To explain the code for readability
To provide SEO keywords
To speed up rendering
Why is indentation of nested elements recommended?
Browsers require indentation
It changes the design of the page
It promotes readability and shows document structure
It reduces file size
Why should width and height attributes be included in the <img> tag?
To let browsers allocate space before loading
To make images accessible
To reduce image file size
To validate HTML5 documents
Why is the alt attribute crucial for images?
It enlarges the image
It helps increase SEO rankings
It provides a text replacement for accessibility
It speeds up loading
What is the main difference between radio buttons and checkboxes?
Checkboxes are visual, radios are not
Checkboxes require JavaScript, radios don’t
Only one radio button in a group can be selected
Radio buttons are square, checkboxes are round
Why should legacy elements like <hr> be avoided?
CSS provides better formatting alternatives
They are not supported in browsers
They are too complex
They cannot be validated
How does the meta description element help a website?
It encrypts sensitive data
It helps search engines catalog and display site info
It improves rendering speed
It prevents HTML errors
You want a webpage title to display in the browser tab. Which tag should you use?
<h1>
<head>
<meta>
<title>
A developer wants to make “Google” link to google.com. Which is correct?
<a href="http://www.google.com">Google</a>
<goto="google.com">Google</goto>
<link href="google.com">Google</link>
<url="google.com">Google</url>
You need to create a table with 3 rows and 2 columns. Which element defines each row?
<table>
<td>
<th>
<tr>
A student wants to create a dropdown for “Rating.” Which tag should they use?
<input type="radio">
<option>
<select>
<textarea>
You want to add a line break in HTML text. Which tag should you use?
<br>
<hr>
<lb>
<p>
If an image is not loading, but the text “Book Cover” appears instead, which attribute is responsible?
alt
path
src
title
You want to create a numbered list of items. Which tag do you use?
<li>
<list>
<ol>
<ul>
A user clicks a link and gets a "404 error." What does it mean?
The browser has crashed
The page has a syntax error
The page is under maintenance
The server cannot find the requested page
You want to make text bold in HTML5. Which tag is appropriate?
<bld>
<bold>
<em>
<strong>
If a paragraph should display “Welcome to HTML5!”, which tags should surround it?
<body> and </body>
<div> and </div>
<h1> and </h1>
<p> and </p>
A webpage displays © 2025. Which code correctly produces the copyright symbol?
©
&csym;
&rights;
&sign;
You need to include a client’s email link. Which is correct?
<a href="contact.html">email</a>
<a href="mailto:client@example.com">Email Us</a>
<a id="email">client@example.com</a>
<email="client@example.com">Email</email>
A teacher wants students to check multiple options for “Things You Liked.” Which input type should be used?
button
checkbox
radio
select
If only one selection is allowed (e.g., “How did you get to our site?”), which input type is used?
checkbox
dropdown
radio
select
A developer wants to create a password field where characters are hidden. Which input type should be used?
<input type="hidden">
<input type="password">
<input type="secure">
<input type="text">
You want to make an image act as a clickable link to another webpage. How should it be coded?
<a link="image.jpg">page.html</a>
<a src="page.html"><img src="image.jpg"></a>
<img href="page.html">
<img src="page.html">
A company wants to list its products in a structured format with rows and columns. Which element is best suited?
<div>
<p>
<table>
<ul>
You want to display “H2O” correctly in HTML. Which tags should you use?
<H2O>
H<sub>2</sub>O
H<sup>2</sup>O
H2<O>
A website needs to display a numbered outline with subpoints (nested lists). Which should be used?
<h1> with <p>
<ol> with nested <ul>
<table> with <li>
<ul> with nested <table>
You want to create a bulleted list of favorite websites with each item being clickable. Which is the best structure?
<a><ul><li>Site</li></ul></a>
<li><a>Site</a></li>
<ol><p>Site</p></ol>
<ul><li><a href="...">Site</a></li></ul>
What is a correct HTML markup for the document type declaration?
<!DOCTYPE html>
DOCTYPE html;
--DOCTYPE html;
True or False. Empty elements must have a close tag.
True
False
Which of the following is a correct syntax for using an HTML attribute?
<img src='img_girl.jpg'>
<img src('img_girl.jpg')>
<img src:'img_girl.jpg'>
