Web Design And Applications Quiz

Reviewed by Godwin Iheuwa
Godwin Iheuwa, MS, Computer Science |
Computer Expert
Review Board Member
Godwin is a proficient Database Administrator currently employed at MTN Nigeria. He holds as MS in Computer Science from the University of Bedfordshire, where he specialized in Agile Methodologies and Database Administration. He also earned a Bachelor's degree in Computer Science from the University of Port Harcourt. With expertise in SQL Server Integration Services (SSIS) and SQL Server Management Studio, Godwin's knowledge and experience enhance the authority of our quizzes, ensuring accuracy and relevance in the realm of computer science.
, MS, Computer Science
Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Sbteacher
S
Sbteacher
Community Contributor
Quizzes Created: 1 | Total Attempts: 4,683
Questions: 30 | Attempts: 4,683

SettingsSettingsSettings
Web Design And Applications Quiz - Quiz

This exam covers all that we have done over the semester. It will cover web design HTML and Movie Maker.


Questions and Answers
  • 1. 

    All HTML code must be put inside of these symbols

    • A.

      Tags

    • B.

      Less than symbol

    • C.

      Forward slash

    • D.

      Angle brackets

    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.

    Rate this question:

  • 2. 

    The code and these < > together are called

    • A.

      Tags

    • B.

      Angle brackets

    • C.

      Less than symbol

    • D.

      Forward slash

    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.

    Rate this question:

  • 3. 

    Code used with < > to tell the computer you are using HTML

    • A.

      TITLE

    • B.

      HTML

    • C.

      BODY

    • D.

      HEAD

    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.

    Rate this question:

  • 4. 

    Code used with < > to tell the computer you have stopped using HTML

    • A.

      /TITLE

    • B.

      /BODY

    • C.

      /HEAD

    • D.

      /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.

    Rate this question:

  • 5. 

    These two codes are important; without them, your page would be completely blank

    • A.

      HTML & /HTML

    • B.

      TITLE & /TITLE

    • C.

      BODY & /BODY

    • D.

      HEAD & /HEAD

    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.

    Rate this question:

  • 6. 

    The Computer doesn't recognize the difference between these when they are inside tags.

    • A.

      Numbers and symbols

    • B.

      Capital and lowercase letters

    • C.

      Dates and times

    • D.

      Subtraction and division

    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.

    Rate this question:

  • 7. 

    To display the title on the title bar, use this code

    • A.

      TITLE

    • B.

      HTML

    • C.

      /HEAD

    • D.

      BODY

    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.

    Rate this question:

  • 8. 

    This section code holds the most of the page's information or content?

    • A.

      HTML

    • B.

      BODY

    • C.

      TITLE

    • D.

      HEAD

    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.

    Rate this question:

  • 9. 

    Program used to type in the HTML codes

    • A.

      Browser

    • B.

      Text editor

    • C.

      Internet Explorer

    • D.

      Source

    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.

    Rate this question:

  • 10. 

    Program used to view Web Pages

    • A.

      Browser

    • B.

      Notepad

    • C.

      Text editor

    • D.

      Source

    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.

    Rate this question:

  • 11. 

    Shows the HTML codes that the person used to create their Web Page

    • A.

      Comment

    • B.

      Source

    • C.

      Body

    • D.

      Paragraph

    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.

    Rate this question:

  • 12. 

    Tags used to add secret notes in HTML

    • A.

      Comment

    • B.

      Heading

    • C.

      Paragraph

    • D.

      Body

    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.

    Rate this question:

  • 13. 

    Tags used to change the size of the text

    • A.

      Body

    • B.

      Comment

    • C.

      Heading

    • D.

      Paragraph

    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.

    Rate this question:

  • 14. 

    Tags used to give more horizontal space

    • A.

      Body

    • B.

      Comment

    • C.

      Heading

    • D.

      Paragraph

    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.

    Rate this question:

  • 15. 

    "<h1></h1> , <h2></h2> , <h3></h3>"

    • A.

      Heading

    • B.

      Comment

    • C.

      Body

    • D.

      Paragraph

    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.

    Rate this question:

  • 16. 

    "<p>and</p>"

    • A.

      Comment

    • B.

      Source

    • C.

      Paragraph

    • D.

      Body

    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.

    Rate this question:

  • 17. 

    "<body> and </body> "

    • A.

      Comment

    • B.

      Paragraph

    • C.

      Body

    • D.

      Heading

    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.

    Rate this question:

  • 18. 

    "<img src=filename>"

    • A.

      Hyperlink

    • B.

      Picture

    • C.

      Bullet list

    • D.

      Number list

    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.

    Rate this question:

  • 19. 

    "<a href=filename/website> text </a> "

    • A.

      Hyperlink

    • B.

      Picture

    • C.

      Bullet list

    • D.

      Number list

    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.

    Rate this question:

  • 20. 

    A _____________________ is a set of text or button hyperlinks that can be used to access pages in your website

    • A.

      Route bar

    • B.

      Map bar

    • C.

      Direction bar

    • D.

      Navigation bar

    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.

    Rate this question:

  • 21. 

    You can _____________________ if you have an email link on your website.

    • A.

      Read your email

    • B.

      Send your Web visitors messages

    • C.

      Delete your email

    • D.

      Encourage your Web visitors to send you email messages

    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.

    Rate this question:

  • 22. 

    Storing your images in an Images folder will help you to ___________

    • A.

      Stay organized

    • B.

      Save file space

    • C.

      Download pages more quickly

    • D.

      Produce more colorful images

    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.

    Rate this question:

  • 23. 

    When looking at the Windows Movie Maker toolbar, which button will let you save your video project?

    • A.

      7

    • B.

      3

    • C.

      4

    • D.

      2

    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.

    Rate this question:

  • 24. 

    When looking at the Windows Movie Maker toolbar, which button will allow you to perfom a task?

    • A.

      6

    • B.

      7

    • C.

      8

    • D.

      5

    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?

    • A.

      1

    • B.

      7

    • C.

      8

    • D.

      3

    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.

    Rate this question:

  • 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?

    • A.

      Add title before the selected clip in the timeline

    • B.

      Add title on the selected clip in the timeline

    • C.

      Add title at the beginning of the movie

    • D.

      Add title after the selected clip in the timeline

    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.

    Rate this question:

  • 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?

    • A.

      Add title before the selected clip in the timeline

    • B.

      Add title at the beginning of the movie

    • C.

      Add title on the selected clip in the timeline

    • D.

      Add title after the selected clip in the timeline

    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.

    Rate this question:

  • 28. 

    Windows Movie Maker allows you to work in timeline mode or in storyboard mode?

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    Windows Movie Maker allows you to work in timeline mode or in storyboard mode.

    Rate this question:

  • 29. 

    Windows Movie Maker allows you to import and edit videos

    • A.

      True

    • B.

      False

    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.

    Rate this question:

  • 30. 

    Movies created using Windows Movie Maker can be played using a MAC computer

    • A.

      True

    • B.

      False

    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.

    Rate this question:

Godwin Iheuwa |MS, Computer Science |
Computer Expert
Godwin is a proficient Database Administrator currently employed at MTN Nigeria. He holds as MS in Computer Science from the University of Bedfordshire, where he specialized in Agile Methodologies and Database Administration. He also earned a Bachelor's degree in Computer Science from the University of Port Harcourt. With expertise in SQL Server Integration Services (SSIS) and SQL Server Management Studio, Godwin's knowledge and experience enhance the authority of our quizzes, ensuring accuracy and relevance in the realm of computer science.

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Jan 16, 2024
    Quiz Edited by
    ProProfs Editorial Team

    Expert Reviewed by
    Godwin Iheuwa
  • Jun 03, 2011
    Quiz Created by
    Sbteacher

Related Topics

Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.