1.
All HTML code must be put inside of these symbols
Correct Answer
D. Angle brackets
Explanation
HTML code must be put inside angle brackets (< >) in order to be recognized as HTML tags. The opening angle bracket () is used to end a tag. These symbols are essential for the proper structure and formatting of HTML code.
2.
The code and these < > together are called
Correct Answer
A. Tags
Explanation
The code and these < > together are called tags. Tags are used in programming and markup languages to define elements and provide structure to the code. They are typically represented by angle brackets < > and are used to enclose elements such as HTML tags or XML elements.
3.
Code used with < > to tell the computer you are using HTML
Correct Answer
B. HTML
Explanation
The given answer is correct because HTML is the code used with "" symbols to tell the computer that you are using HTML. HTML stands for Hypertext Markup Language and it is the standard language for creating web pages. It is used to structure the content of a webpage and define the layout and appearance of the elements within it. By using HTML tags enclosed in "" symbols, you can specify different elements and their properties within a webpage.
4.
Code used with < > to tell the computer you have stopped using HTML
Correct Answer
D. /HTML
Explanation
The given code "/HTML" is used to tell the computer that the HTML code has ended or stopped. It is placed at the end of the HTML document to indicate that there are no more HTML tags or elements to be processed. This closing tag ensures that the HTML document is properly structured and helps the computer understand that the HTML code has concluded.
5.
These two codes are important; without them, your page would be completely blank
Correct Answer
C. BODY & /BODY
Explanation
The two codes that are important for the content of your page, and without them, your page would be completely blank are the BODY and /BODY tags. These tags define the main content of the HTML document. The opening BODY tag (<body>) marks the beginning of the content, and the closing /BODY tag (</body>) marks the end of the content. Everything between these tags is displayed in the browser window.
6.
The Computer doesn't recognize the difference between these when they are inside tags.
Correct Answer
B. Capital and lowercase letters
Explanation
The computer doesn't recognize the difference between capital and lowercase letters when they are inside tags. This means that if a tag is written in all capital letters or all lowercase letters, the computer will still interpret it as the same tag. For example,and will be treated as the same tag by the computer.
7.
To display the title on the title bar, use this code
Correct Answer
A. TITLE
Explanation
The code "TITLE" is used to display the title on the title bar of a webpage. This code is typically placed within the HTML section of the webpage. By using this code, the title specified will be shown on the title bar of the browser window, allowing users to easily identify the webpage they are currently viewing.
8.
This section code holds the most of the page's information or content?
Correct Answer
B. BODY
Explanation
The correct answer is BODY. In HTML, the BODY element is used to define the main content of a webpage. It holds all the visible content such as text, images, links, etc. The content inside the BODY tag is what users see when they visit a webpage. Therefore, the BODY section of the code holds the majority of the page's information or content.
9.
Program used to type in the HTML codes
Correct Answer
B. Text editor
Explanation
A text editor is a program used to type in HTML codes. It provides a user-friendly interface for writing and editing code, making it easier for developers to create and modify web pages. Unlike a browser or Internet Explorer, which is used to view web pages, a text editor is specifically designed for writing and organizing code. It allows users to write HTML tags, attributes, and content and then save the file with a .html extension. This file can then be opened and viewed in a browser to see how the web page will appear to users.
10.
Program used to view Web Pages
Correct Answer
A. Browser
Explanation
A browser is a program used to view web pages. It allows users to access and navigate through websites by interpreting and displaying the HTML code of the web pages. Browsers also support various other technologies like JavaScript, CSS, and multimedia elements, enabling users to interact with web content and perform tasks such as submitting forms, playing videos, and downloading files. Therefore, a browser is the correct answer as it specifically caters to the purpose of viewing web pages.
11.
Shows the HTML codes that the person used to create their Web Page
Correct Answer
B. Source
Explanation
The correct answer is "source" because in the context of creating a web page, the "source" refers to the HTML codes that a person used to create their web page. The source code of a web page contains all the HTML tags and elements that define the structure, content, and styling of the page. By viewing the source code, one can see the underlying HTML markup used to create the web page.
12.
Tags used to add secret notes in HTML
Correct Answer
A. Comment
Explanation
In HTML, the "comment" tag is used to add secret notes. These notes are not displayed on the webpage but can be seen in the HTML code. They are useful for adding comments or reminders for other developers working on the code. The "heading", "paragraph", and "body" tags are not used for adding secret notes in HTML.
13.
Tags used to change the size of the text
Correct Answer
C. Heading
Explanation
The tag "heading" is used to change the size of the text. This tag is typically used to create headings or titles in a document or webpage. It allows the user to specify the level of importance or hierarchy of the text, with different levels corresponding to different sizes. By using the "heading" tag, the size of the text can be adjusted to make it stand out or differentiate it from other content on the page.
14.
Tags used to give more horizontal space
Correct Answer
D. ParagrapH
Explanation
The correct answer is "paragraph" because a paragraph is a section of text that is organized around a specific topic or idea. It is usually composed of multiple sentences and provides a coherent and complete thought. In the context of the given question, using a paragraph tag in HTML would allow for the creation of a block of text with appropriate formatting and spacing.
15.
"<h1></h1> , <h2></h2> , <h3></h3>"
Correct Answer
A. Heading
Explanation
The given answer "heading" is correct because the HTML tags , , and are used to define headings in a web page. Headings are used to provide structure and hierarchy to the content, with being the highest level heading and being the lowest level heading.
16.
"<p>and</p>"
Correct Answer
C. ParagrapH
Explanation
The given answer "paragraph" is correct because the HTML tag "" represents a paragraph in a webpage. It is used to define a block of text that forms a single paragraph.
17.
"<body> and </body> "
Correct Answer
C. Body
Explanation
The correct answer is "body" because the and tags are used to define the main content of an HTML document. These tags enclose all the visible content on a webpage, such as text, images, links, and other elements. The content placed between these tags is what is displayed in the browser window.
18.
"<img src=filename>"
Correct Answer
B. Picture
Explanation
The given code "" is used to display an image on a webpage. The "src" attribute specifies the source or location of the image file, which is denoted by "filename" in this case. Therefore, the correct answer is "picture" as it accurately describes the purpose and functionality of the code.
19.
"<a href=filename/website> text </a> "
Correct Answer
A. Hyperlink
Explanation
The given code represents a hyperlink. It is used to create a clickable link that redirects the user to another webpage or file when clicked. The "filename/website" represents the URL or file path of the destination, while "text" is the visible text that the user sees and clicks on.
20.
A _____________________ is a set of text or button hyperlinks that can be used to access pages in your website
Correct Answer
D. Navigation bar
Explanation
A navigation bar is a set of text or button hyperlinks that can be used to access pages in your web site. It is typically placed at the top or side of a webpage and allows users to easily navigate through different sections or pages of the website. The navigation bar helps users find the information they are looking for and improves the overall user experience by providing clear and intuitive navigation options.
21.
You can _____________________ if you have an email link on your website.
Correct Answer
D. Encourage your Web visitors to send you email messages
Explanation
Having an email link on your website allows you to encourage your web visitors to send you email messages. This can be beneficial as it provides a direct and convenient way for visitors to contact you, ask questions, provide feedback, or engage in further communication. By encouraging email messages, you can foster communication and build relationships with your website visitors, potentially leading to increased customer satisfaction and business opportunities.
22.
Storing your images in an Images folder will help you to ___________
Correct Answer
A. Stay organized
Explanation
Storing your images in an Images folder will help you to stay organized. By keeping all your images in one designated folder, it becomes easier to locate and manage them. This organization can save time and effort when searching for specific images or when organizing and categorizing your files. Additionally, having a dedicated folder for images can also prevent clutter and confusion in your file system, allowing for a more streamlined and efficient workflow.
23.
When looking at the Windows Movie Maker toolbar, which button will let you save your video project?
Correct Answer
B. 3
Explanation
The correct answer is 3. The question asks which button on the Windows Movie Maker toolbar will let you save your video project. Since the answer is 3, it implies that button 3 on the toolbar is the one that allows you to save the video project.
24.
When looking at the Windows Movie Maker toolbar, which button will allow you to perfom a task?
Correct Answer
A. 6
25.
When looking at the Windows Movie Maker toolbar, which button will let you create a new collection folder in your video project?
Correct Answer
B. 7
Explanation
Button 7 on the Windows Movie Maker toolbar allows you to create a new collection folder in your video project.
26.
In Windows Movie Maker, if you have selected a picture or video clip in the middle of your timeline that you want to put a title on, which of the following methods would be best for you to use?
Correct Answer
B. Add title on the selected clip in the timeline
Explanation
To add a title on a selected picture or video clip in the middle of the timeline in Windows Movie Maker, the best method would be to use the option "Add title on the selected clip in the timeline". This would allow the user to place the title directly on the selected clip, ensuring that it appears exactly where desired in the final movie.
27.
In Windows Movie Maker, if you have selected a picture or video clip that you want to put a title at the beginning of the movie, which of the following methods would be best for you to use?
Correct Answer
B. Add title at the beginning of the movie
Explanation
To add a title at the beginning of the movie in Windows Movie Maker, the best method would be to select "Add title at the beginning of the movie". This option allows the user to create a title slide or screen that will appear before the selected clip in the timeline. By choosing this method, the user can ensure that the title is displayed at the very beginning of the movie, setting the tone and introducing the content to the viewers.
28.
Windows Movie Maker allows you to work in timeline mode or in storyboard mode?
Correct Answer
A. True
Explanation
Windows Movie Maker allows you to work in timeline mode or in storyboard mode.
29.
Windows Movie Maker allows you to import and edit videos
Correct Answer
A. True
Explanation
Windows Movie Maker is a video editing software developed by Microsoft. It provides users with the ability to import videos from various sources and edit them according to their preferences. Therefore, the statement that Windows Movie Maker allows you to import and edit videos is true.
30.
Movies created using Windows Movie Maker can be played using a MAC computer
Correct Answer
B. False
Explanation
Movies created using Windows Movie Maker cannot be played directly on a MAC computer because Windows Movie Maker is a video editing software designed for Windows operating systems. MAC computers use a different operating system called macOS, which is not compatible with Windows Movie Maker files. Therefore, in order to play movies created with Windows Movie Maker on a MAC computer, the files would need to be converted into a compatible format or played using a different video player that supports Windows Movie Maker files.