WorksheetsFundamentals of Web Design Final Exam
Total questions: 97
Worksheet time: 49mins
Name
Class
Date
1.
Q: Which of the following is an HTML tag that is used to bold text?
a)
A)
b)
B)
c)
C)
d)
D)
2.
Q: Which of the following HTML tag is used to italicize text?
a)
A)
b)
B)
c)
C)
d)
D)
3.
Q: What does HTML stand for?
a)
A) Hyperlinks and Text Markup Language
b)
B) Home Tool Markup Language
c)
C) Hyper Text Markup Language
d)
D) Hyper Tool Markup Language
4.
Q) What is the main purpose of the tag>
a)
A) To create a division amongst sections of a webpage
b)
B) To separate out small pieces of text to be styled
c)
C) To apply stylings spanning across multiple webpages
d)
D) Applying a horizontal line across the page
5.
Q: Which HTML tag is used to insert a line break?
a)
A)
b)
B)
c)
C)
d)
D)
6.
Q: Which property is used to change the background color in CSS?
a)
A) color
b)
B) background-color
c)
C) bgcolor
d)
D) background
7.
Q: Which CSS property is used to change the text color of an element?
a)
A) text-color
b)
B) font-color
c)
C) text-style
d)
D) color
8.
Q: Which keyword is used to declare a variable in JavaScript?
a)
A) var
b)
B) variable
c)
C) v
d)
D) declare
9.
Q: Which HTML tag is used to define a paragraph?
a)
A)
b)
B)
c)
C)
d)
D)
10.
Q: What does the "div" tag do in HTML?
a)
A) It creates a division or a section in an HTML document
b)
B) It divides the HTML document into two parts
c)
C) It provides a division symbol for mathematical operations
d)
D) It creates a divider line in the HTML document
11.
Q: In CSS, what does the "px" unit stand for?
a)
A) Pixels
b)
B) Percentage
c)
C) Points
d)
D) Picas
12.
Q: Which HTML tag is used to define an internal style sheet?
a)
A)
b)
B)
c)
C)
d)
D)
13.
Q: What is the main advantage of using external CSS?
a)
A) It allows for faster page load times
b)
B) It allows for style rules to be applied across multiple pages
c)
C) It allows for more complex animations
d)
D) It allows for more secure websites
14.
Q: How do you link an external CSS file to an HTML document?
a)
A)
b)
B)
c)
C)
d)
D)
15.
Q: What is embedded CSS?
a)
A) CSS rules defined within the tag of an HTML document
b)
B) CSS rules defined in an external .css file
c)
C) CSS rules defined within HTML tags using the 'style' attribute
d)
D) CSS rules defined within a JavaScript file
16.
Q: Which type of CSS has the highest specificity?
a)
A) External CSS
b)
B) Internal CSS
c)
C) Inline CSS
d)
D) Embedded CSS
17.
Q: What is the order of specificity from less specific to most specific?
a)
A) External -> Internal -> In-line
b)
B) Internal -> External - In-Line
c)
C) In-Line -> Internal -> External
d)
D) External -> In-Line -> Internal
18.
Q: In which HTML tag do you typically place internal CSS?
a)
A)
b)
B)
c)
C)
d)
D)
19.
Q: Which type of CSS is written directly within an HTML element's opening tag?
a)
A) Internal CSS
b)
B) External CSS
c)
C) In-line CSS
d)
D) Embedded CSS
20.
Q: If the same style is defined in an external CSS file and an internal style sheet, which one will be applied?
a)
A) The style in the external CSS file
b)
B) The style in the internal style sheet
c)
C) Both styles will be applied
d)
D) Neither style will be applied
21.
Q: Which HTML element contains the metadata about the document, such as its title and link to its CSS file?
a)
A)
b)
B)
c)
C)
d)
D)
22.
Q: What is the purpose of the tag in HTML?
a)
A) To provide a title for the webpage that is displayed in the browser's title bar or tab
b)
B) To create a title heading within the webpage
c)
C) To provide a title for the webpage's images
d)
D) To create a title footer at the bottom of the webpage
23.
Q: What is the purpose of the tag in HTML?
a)
A) To contain the webpage's metadata
b)
B) To contain the webpage's visible content
c)
C) To contain the webpage's scripts and styles
d)
D) To contain the webpage's title and description
24.
Q: Which HTML element is used to define a list item?
a)
A)
b)
B)
c)
C)
d)
D)
25.
Q: What is the purpose of the element in HTML?
a)
A) To define a header for a document or a section
b)
B) To define the head of a table
c)
C) To define a heading
d)
D) To define the top margin of a document
26.
Q: Which HTML element is used to insert an image into a webpage?
a)
A) ![]()
b)
B)
c)
C)
d)
D) ![]()
28.
Q: Which HTML semantic tag is used to define a section in a document?
a)
A)
b)
B)
c)
C)
d)
D)
29.
Q: Which HTML element is used to define a table?
a)
A)
b)
B)
d) D) 48. Q: Which of the following is a correct tag to use within a table to create a cell? a) A) b) B) c) C) d) D) 49. Q: Which of the following is a correct tag to use within a table to create a row? a) A) b) B) c) C) d) D 50. Q: In HTML, what does the acronym "URL" stand for? a) A) Universal Resource Locator b) B) Uniform Resource Locator c) C) Unified Resource Language d) D) Universal Rendering Language 51. Q: What does the HTML tag represent? a) A) Defines a block of code b) B) Indicates a long quotation c) C) Creates a bulleted list d) D) Represents a bold text 52. Q: What is the correct way to include an external JavaScript file in an HTML document? a) A) b) B) c) C) d) D) 53. Q: Which HTML attribute is used to set the text alignment within an element? a) A) text-align b) B) align c) C) text-position d) D) alignment 54. Q: Which HTML tag is used for creating a horizontal rule or line? a) A) b) B) c) C) d) D) 55. Q: Which of the following HTML tags are used to bold text for accessibility reasons? a) A) b) B) c) C) d) D) 56. Q: Which CSS selector targets all instances of a specific HTML element on a page? a) A) #element b) B) .element c) C) element{} d) D) *{} 57. Q: Which of the following correctly displays a CSS Class? a) A) this-is-an-id {} b) B) .this-is-an-id {} c) C) #this-is-an-id {} d) D) this is a class {} 58. Q: In CSS, what does the :hover pseudo-class target? a) A) The first child element b) B) Elements with a specific class c) C) Elements when the mouse hovers over them d) D) Elements in odd-numbered positions 59. Q: Which CSS property is used to control the transparency of an element? a) A) opacity b) B) transparency c) C) visibility d) D) alpha 60. Q: In CSS, what is the purpose of the float property? a) A) Adds a floating animation to the element b) B) Aligns the element to the left or right within its container c) C) Increases the element's font size d) D) Creates a border around the element 61. Q: Which CSS property is used to set the minimum width of an element? a) A) max-width b) B) min-width c) C) width-min d) D) minimum-width 62. Q: What is the alternate name of the HTML Tree? a) A) HTML Branches b) B) HTML Skeleton c) C) HTML Flowchat d) D) HTML Doc 63. Q: Which CSS property is used to control the visibility of an element? a) A) display b) B) visibility c) C) hidden d) D) opacity 64. Q: What is a digital footprint? a) A) The physical size of a device b) B) A measure of internet speed c) C) The trail of data left behind by online activities d) D) The brightness of a computer screen 65. Q: How can a person actively manage their digital footprint? a) A) Avoiding internet use entirely b) B) Deleting all online accounts c) C) Being mindful of online activities and settings d) D) Increasing online presence 66. Q: What potential impact can a negative digital footprint have on an individual? a) A) Enhanced online security b) B) Improved job opportunities c) C) Negative effects on personal and professional life d) D) Increased social media followers 67. Q: Which of the following is an example of personal information that contributes to a digital footprint? a) A) Online search history b) B) Internet connection speed c) C) Computer screen resolution d) D) Software preferences 68. Q: How can social media contribute to an individual's digital footprint? a) A) By reducing online visibility b) B) By avoiding any online interaction c) C) By sharing posts, comments, and images d) D) By using private browsing mode 69. Q: What is the significance of privacy settings on social media platforms concerning a digital footprint? a) A) They have no impact on digital footprints b) B) They control who can access and view personal information c) C) They increase the size of the digital footprint d) D) They slow down internet connectivity 70. Q: Why is it important for individuals to be aware of their digital footprint? a) A) To increase online anonymity b) B) To boost internet speed c) C) To maintain a positive online reputation d) D) To avoid all online interactions 71. Q: Which of the following actions contributes to a positive digital footprint? a) A) Sharing inappropriate content b) B) Deleting all online accounts c) C) Using strong language online d) D) Engaging in positive and constructive online activities 72. Q: What role does online security play in managing one's digital footprint? a) A) It has no impact on a digital footprint b) B) It ensures complete online anonymity c) C) It helps protect personal information and reduces potential risks d) D) It increases the visibility of the digital footprint. 73. Q: What is personally identifiable information (PII)? a) A) A measure of internet speed b) B) Information that can be used to identify an individual c) C) The brightness of a computer screen d) D) The physical size of a device 74. Q: Which of the following is considered personally identifiable information (PII)? a) A) Computer screen resolution b) B) Social media post likes c) C) Home address and phone number d) D) Online search history 75. Q: How should individuals handle the sharing of personally identifiable information online? a) A) Share PII freely to increase online presence b) B) Avoid using the internet altogether c) C) Be cautious and selective about sharing PII d) D) Share PII without considering privacy settings 76. Q: Why is it crucial to protect personally identifiable information (PII) from unauthorized access? a) A) To increase online visibility b) B) To enhance job opportunities c) C) To avoid potential privacy breaches and identity theft d) D) To boost social media followers 77. Q: Which action contributes to safeguarding personally identifiable information (PII) online? a) A) Regularly updating privacy settings on online accounts b) B) Sharing PII in public forums c) C) Using weak and easily guessable passwords d) D) Providing PII to unknown websites without verification 78. Q: What is the purpose of a web browser in the context of the internet? a) A) To measure internet speed b) B) To browse and access websites on the internet c) C) To adjust screen brightness d) D) To store computer files 79. Q: Which of the following is a commonly used web browser? a) A) Adobe Photoshop b) B) Microsoft Excel c) C) Windows File Explorer d) D) Google Chrome 80. Q: How can users enhance their online privacy while using web browsers? a) A) Regularly clear browser history and cookies b) B) Disable all browser extensions c) C) Use weak passwords d) D) Share PII freely 81. Q: Which feature in web browsers allows users to save and manage website passwords securely? a) A) Incognito Mode b) B) Cookie Settings c) C) Extensions d) D) Password Manager 82. Q: What is the significance of copyright protection in the context of webpage images? a) A) It insures faster webpage loading times b) B) It protects the intellectual property rights of image creators c) C) It increases the size of image files d) D) It allows unlimited sharing of images without attribution 83. Q: Which Creative Commons license is the most lenient? a) A) CC BY-ND b) B) CC BY-SA c) C) CC BY-NC-ND d) D) CC BY-NC-SA 84. Q: How can webpage creators respect copyright when using images on their sites? a) A) Use any image found on the internet without attribution b) B) Only use images that are in the public domain c) C) Crop and edit images to remove watermarks d) D) Ignore copyright laws for online images 85. Q: What does the term "royalty-free" mean in the context of webpage images? a) A) Images that be used without permission or payment b) B) Images that are free to use only for a limited time c) C) Images that require payment for every use d) D) Images that can only be used by paying the creator initially 86. Q: How does watermarking contribute to copyright protection for webpage images? a) A) It increases image file size b) B) It prevents images from being displayed on webpages c) C) It adds a visible or invisible mark to identify the image's creator d) D) It automatically grans permission for unlimited image usage 87. Q: What should website creators consider to avoid copyright infringement when using images? a) A) Ignore copyright laws for online images b) B) Always use images from the internet without attribution c) C) Obtain permission or use images with proper licensing d) D) Crop and edit images to remove any copyright information 88. Q: What is the Creative Commons (CC) in the context of content licensing? a) A) A paid subscription service for creative works b) B) A platform for selling copyrighted materials c) C) A website with free-to-use images d) D) A licensing system that allows creators to share their work with specific permissions 89. Q: How does the Creative Commons licensing system differ from traditional copyright? a) A) Creative Commons restricts all usage of the content b) B) Creative Commons provides unlimited usage rights without any restrictions c) C) Creative Commons allows creators to choose specific permissions for their work d) D) Creative Commons automatically grants exclusive rights to the first person who views the content 90. Q: What does the Creative Commons license type "Attribution" mean for content usage? a) A) Users are not required to give credit to the creator b) B) Users must provide proper credit to the original creator c) C) Content can only be used for non-commercial purposes d) D) No changes or modifications are allowed to the content 91. Q: Which of the following Creative Commons licensure requires that credit must be given to the original creator and it cannot be used to earn money? a) A) CC BY b) B) CC BY-NC c) C) CC BY-ND d) D) CC BY-SA 92. Q: Which of the following Creative Commons licensure requires that credit must be given to the original creator and it cannot be changed in any way? a) A) CC BY b) B) CC BY-NC c) C) CC BY-ND d) D) CC BY-SA 93. Q: Which of the following changes the size of the image when added to the a) A) size: b) B) px: c) C) type: d) D) height: 94. Q: How can the CSS property "filter" be used to modify images on a webpage? a) A) By adjusting the image's transparency b) B) By changing the image's file format c) C) By applying visual effects like blurring or color adjustments d) D) By resizing the image 95. Q: In CSS, how can the opacity property be used to control the transparency of an image? a) A) opacity: transparent b) B) opacity: 0.5 c) C) opacity: solid d) D) opacity: visible 96. Q: What does the CSS property transform: rotate() do when applied to an image? a) A) Adjusts the image size b) B) Flips the image c) C) Rotates the image by a specific angle degree d) D) Changes the image color 97. Q: What does the CSS property transform: scale() do when applied to an image? a) A) Adjusts the image size b) B) Flips the image vertically c) C) Rotates the image by a specified angle d) D) Changes the image hue 100 % Similar Resources on Wayground93 questions 7th Grade Final Review Worksheet • 7th Grade 93 questions Sinh 10 CKI Worksheet • KG - University 102 questions English 102 Worksheet • KG - University 100 questions regnes de la cultura prohibida Worksheet • 8th Grade - University 100 questions 200-300 Worksheet • KG - University 100 questions Honors Biology Midterm Review2025 Worksheet • KG - University |
|---|
