MAA NATIONAL HIGH SCHOOL
MAA, DAVAO CITY
2ND SUMMATIVE TEST
PROGRAMMING .NET
1. One of the characteristics of a good entrepreneur 7. Identify the Element in the given HTML file.
has a self- reliance in one’s ability and judgment. a. <h1>
A. Ability to accept change b. <p>
B. Disciplined c. <br>
C. Confident d. <img src>
D. Has the initiative 8. Which is TRUE about the <!DOCTYPE html>
2. People skills refer to effective and efficient a. Allows you to used tools such as Markup
communication and establishing good relationship validator to check the syntax of your
to the people working in and out of your business. HTML.
a. Excellent Planner b. Tell the site what type of files you are
b. Profit Oriented writing
c. Possess people skills c. A syntax that has been specified the
d. Sound Decision Making standard mode
3. Which of the following is NOT considered as a d. It does not serve any purpose
characteristic of an entrepreneur?
a. Copes with failure 9. What would be the display on your tab bar if you
b. Persistent run the given HTML file?
c. Dependent a. My first HTML
d. Opportunity seeker b. HTML
4. Noemae wants to ensure a profitable business c. Hello World
operation, what characteristic d. Girl in the Jacket
will she maintain?
a. Committed 10. What particular HTML tags are you going to
b. Futuristic declare to highlight "Hello World”?
c. Goal oriented a. <highlight>
d. Opportunity seeker b. <mark>
c. <color>
5. Rio, her best friend tells that she has a strong will d. <em>
and does not give up find
a solution to a business problem. What PECs
has been demonstrated by Mrs. Gonzales? WHAT WOULD BE THE OUTPUT? 20POINTS
a. Hard work
c. Self-Confidence
b. Persistence d.
Risk- Taking <H1 ALIGN="CENTER">SAFETY TIPS FOR CANOEISTS</H1>
<OL TYPE=“a” START=“2”>
<LI>Be able to swim </LI>
Refer to item number 6-10 <LI>Wear a life jacket at all times </LI>
<!DOCTYPE html> <LI>Don't stand up or move around. If canoe tips,
<html>
<head> <UL>
<title>HTML</title> <LI>Hang on to the canoe </LI>
</head> <LI>Use the canoe for support and </LI>
<body> <LI>Swim to shore
<h1>My first HTML</h1> </UL> </LI>
<img src= “img_girl.gif” alt= “Girl in a Jacket” style=
“width:400px ; <LI>Don't overexert yourself </LI>
height :600px ;> <br> <p> </p> <LI>Use a bow light at night </LI>
Hello World! </OL>
</body>
</html>
6. What do you think is the error in the given HTML
code?
a. >
b. </html>
c. ”
d. Alt
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left; }
</style>
</head>
<body>
<h2>Table Caption</h2>
<p>To add a caption to a table, use the caption tag.</p>
<table style="width:100%">
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
DRAW YOUR OUTPUT HERE