Intro To Web Design And Development

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 Vbimedia
V
Vbimedia
Community Contributor
Quizzes Created: 1 | Total Attempts: 2,442
Questions: 30 | Attempts: 2,442

SettingsSettingsSettings
Intro To Web Design And Development - Quiz

INTRODUCTION TO WEB DESIGN Quarter 1 VBI School of Creative MediaWeb Basics, HTML and CSS


Questions and Answers
  • 1. 

    The web is based on

    • A.

      Images

    • B.

      Text

    • C.

      Information

    • D.

      HTML

    Correct Answer
    D. HTML
    Explanation
    HTML (Hypertext Markup Language) is the correct answer because it is the standard language used for creating web pages. HTML is used to structure the content of a webpage, including text, images, and other media. It provides the basic framework for organizing and presenting information on the web. While images, text, and information are all important components of web content, HTML is the underlying language that allows these elements to be displayed and interacted with on the web.

    Rate this question:

  • 2. 

    HTML stands for

    • A.

      Hyper Text Marking Language

    • B.

      Hyperdiaper Text Markup Lingo

    • C.

      Hyper Text Markup Language

    Correct Answer
    C. Hyper Text Markup Language
    Explanation
    HTML stands for Hyper Text Markup Language. It is a standard markup language used for creating web pages and applications. It is the fundamental building block of the World Wide Web and is used to structure content, define layout and formatting, and add multimedia elements such as images and videos. HTML uses tags to define different elements and their properties, allowing web browsers to interpret and display the content correctly.

    Rate this question:

  • 3. 

    What is the predominant markup language for web pages?

    • A.

      HTML

    • B.

      PHP

    • C.

      CSS

    Correct Answer
    A. HTML
    Explanation
    HTML (Hypertext Markup Language) is the predominant markup language for web pages. It is used to structure the content and define the layout of a webpage. HTML provides a set of tags that are used to mark up elements such as headings, paragraphs, images, links, etc. These tags allow web browsers to interpret and display the content correctly. PHP is a server-side scripting language used for dynamic web development, while CSS (Cascading Style Sheets) is used for styling the appearance of web pages. However, HTML is the primary language for creating the structure and content of web pages.

    Rate this question:

  • 4. 

    What is a web browser?

    • A.

      Something in my dashboard

    • B.

      Used to make web pages

    • C.

      Software application for retrieving and presenting information on the web

    Correct Answer
    C. Software application for retrieving and presenting information on the web
    Explanation
    A web browser is a software application that allows users to access and view web pages on the internet. It retrieves information from web servers and presents it to the user in a readable format. It also enables users to interact with web pages by clicking on links, submitting forms, and performing various other actions. Overall, a web browser acts as a gateway for users to navigate and explore the vast amount of information available on the web.

    Rate this question:

  • 5. 

    A domain name is a identification label.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    A domain name is a unique identification label that is used to identify and locate a website on the internet. It serves as the address of a website, allowing users to access it by typing the domain name in their web browser. Therefore, the statement "A domain name is a identification label" is true, as it accurately describes the purpose and function of a domain name.

    Rate this question:

  • 6. 

    What is the URL of VBI School of Media?

    • A.

      208.98.67.012

    • B.

      Public_html/vbimedia

    • C.

      Http://www.vbimedia.com

    Correct Answer
    C. Http://www.vbimedia.com
    Explanation
    The correct answer is http://www.vbimedia.com. This is the URL of VBI School of Media as it follows the standard format for website addresses, starting with "http://" and followed by the domain name "www.vbimedia.com".

    Rate this question:

  • 7. 

    What is web hosting?

    • A.

      A domain name

    • B.

      Something people view with a browser

    • C.

      Online space for web site and data

    Correct Answer
    C. Online space for web site and data
    Explanation
    Web hosting refers to the provision of online space for a website and its associated data. It is the service that allows individuals and organizations to make their websites accessible on the internet. Web hosting providers allocate storage space on servers, where website files are stored and can be accessed by visitors through a web browser. This online space also includes features like bandwidth, email accounts, databases, and other resources necessary for the functioning of a website.

    Rate this question:

  • 8. 

    What type of web hosting did we not talk about in class

    • A.

      Shared Web Hosting

    • B.

      Virtual Private Server Hosting

    • C.

      Unified Location Hosting

    Correct Answer
    C. Unified Location Hosting
  • 9. 

    What is a web server?

    • A.

      Computer program that delivers content

    • B.

      World Wide Web

    • C.

      A remote computer that is used to network computers

    Correct Answer
    A. Computer program that delivers content
    Explanation
    A web server is a computer program that delivers content over the World Wide Web. It is responsible for receiving requests from clients (web browsers) and delivering the requested web pages or files to them. The web server processes these requests and sends the appropriate response back to the client. It acts as an intermediary between the client and the server hosting the website or web application, ensuring that the requested content is delivered accurately and efficiently.

    Rate this question:

  • 10. 

    What is the first tag we put on the top of a basic HTML page?HINT:  <         >

    Correct Answer
    HTML
    html

    Explanation
    The first tag we put on the top of a basic HTML page is the HTML tag. This tag indicates that the document is an HTML file and everything inside it will be interpreted as HTML code. The lowercase "html" tag is also correct, as HTML tags are case-insensitive. Both tags serve the same purpose of identifying the document as an HTML file.

    Rate this question:

  • 11. 

    HTML provides 5 heading tags h1 to h5

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    HTML provides 6 heading tags h1 to h6.

    Rate this question:

  • 12. 

    Choose the correct HTML tag for the largest heading

    • A.

      H6

    • B.

      H3

    • C.

      H1

    Correct Answer
    C. H1
    Explanation
    The correct HTML tag for the largest heading is h1. In HTML, headings are used to define the structure and hierarchy of a webpage. The h1 tag represents the main heading of a page and is typically used for the most important title or heading. It is considered the largest and most prominent heading tag in HTML. The h6 tag, on the other hand, represents the smallest and least prominent heading. Therefore, h1 is the correct answer for the largest heading.

    Rate this question:

  • 13. 

    What is the correct HTML tag for inserting a line break

    • A.

      Lb

    • B.

      Break

    • C.

      Br

    Correct Answer
    C. Br
    Explanation
    The correct HTML tag for inserting a line break is "br". This tag is a self-closing tag, meaning it does not require a closing tag. It is used to add a single line break in the text or content within an HTML element.

    Rate this question:

  • 14. 

    What is a correct HTML for adding background color?

    • A.

      Background>yellow

    • B.

      Body bgcolor="#000000"

    • C.

      Body background< #227645>

    Correct Answer
    B. Body bgcolor="#000000"
    Explanation
    The correct HTML for adding a background color is "body bgcolor="#000000"". This code sets the background color of the body element to black (#000000).

    Rate this question:

  • 15. 

    The correct HTML tag to make text bold is "bold" 

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The correct HTML tag to make text bold is "strong". The "bold" tag is not a valid HTML tag for making text bold. The "strong" tag is used to emphasize the importance or significance of text, and it is rendered as bold by most web browsers.

    Rate this question:

  • 16. 

    The correct HTML tag to make text italic is "italic"

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The correct HTML tag to make text italic is "em". The "em" tag is used to emphasize text and it is displayed in italics by default in most browsers. The "italic" tag does not exist in HTML, so selecting "False" as the correct answer is appropriate.

    Rate this question:

  • 17. 

    What is the correct HTML for creating a hyperlink?

    • A.

      A>http://www.vbimedia.com

    • B.

      A url="http://www.vbimedia.com">VBIMEdia.com

    • C.

      A href="http://www.vbimedia.com">VBIMEDIA

    Correct Answer
    C. A href="http://www.vbimedia.com">VBIMEDIA
    Explanation
    The correct HTML for creating a hyperlink is "a href="http://www.vbimedia.com">VBIMEDIA". This code uses the "a" tag, which is the anchor tag, to create the hyperlink. The "href" attribute is used to specify the URL that the hyperlink should point to, in this case, "http://www.vbimedia.com". The text that will be displayed as the hyperlink is "VBIMEDIA".

    Rate this question:

  • 18. 

    How can you create an email link?

    Correct Answer
    B. A href="mailto:[email protected]">
    Explanation
    To create an email link, you can use the HTML code "a href="mailto:[email protected]"". This code will create a clickable link that, when clicked, will open the user's default email client and automatically populate the recipient's email address as "[email protected]". This allows users to easily send an email to the specified address by simply clicking on the link.

    Rate this question:

  • 19. 

    How can you open a link in a new browser window?

    • A.

      A href="url" new>

    • B.

      A href="url" target="_blank">

    • C.

      A href="url" target="new">

    Correct Answer
    B. A href="url" target="_blank">
    Explanation
    The correct answer is "a href="url" target="_blank"". This is because the "target="_blank"" attribute opens the link in a new browser window or tab.

    Rate this question:

  • 20. 

    What is the correct HTML for inserting an image?

    • A.

      Img href="image.gif />

    • B.

      Image src="image.gif" />

    • C.

      Img src="image.gif" />

    Correct Answer
    C. Img src="image.gif" />
    Explanation
    The correct HTML for inserting an image is "img src="image.gif" />". This is because the "img" tag is used to insert an image in HTML, and the "src" attribute specifies the source file of the image. In this case, the source file is "image.gif".

    Rate this question:

  • 21. 

    What does CSS stand for?

    • A.

      Corporate Site Solutions

    • B.

      Corporate Space Site

    • C.

      Cascading Style Sheets

    Correct Answer
    C. Cascading Style Sheets
    Explanation
    CSS stands for Cascading Style Sheets. It is a style sheet language used for describing the presentation of a document written in HTML or XML. CSS is used to control the layout, formatting, and appearance of web pages. It allows web developers to separate the content of a webpage from its design, making it easier to maintain and update. By using CSS, developers can create consistent and visually appealing websites across different devices and browsers.

    Rate this question:

  • 22. 

    CSS avoids all the problems of _ _ _ _ formatting

    • A.

      TEXT

    • B.

      HTTP

    • C.

      HTML

    Correct Answer
    C. HTML
    Explanation
    CSS avoids all the problems of HTML formatting. HTML is the markup language used to structure and present content on the web, but it has its limitations when it comes to controlling the appearance and layout of the content. CSS (Cascading Style Sheets) is a separate language that works in conjunction with HTML to provide more control over the visual presentation of a webpage. By using CSS, web developers can easily modify the style, layout, and design of HTML elements, allowing for greater flexibility and customization.

    Rate this question:

  • 23. 

    CSS does its work by stepping between _ _ _ _ and the _ _ _ _ _ _ _

    • A.

      TEXT, IMAGES

    • B.

      HTML, BROWSER

    • C.

      HTPT, VISITOR

    Correct Answer
    B. HTML, BROWSER
    Explanation
    CSS does its work by stepping between HTML and the browser. CSS (Cascading Style Sheets) is a style sheet language used for describing the presentation of a document written in HTML. It is used to define the layout, colors, fonts, and other visual aspects of a webpage. HTML (Hypertext Markup Language) is the standard markup language for creating webpages. The browser is the software used to access and display webpages. CSS steps in between HTML and the browser to apply the specified styles and formatting to the HTML elements, thus controlling the visual appearance of the webpage.

    Rate this question:

  • 24. 

    As of August 2010 the most popular web browser used to access the internet was

    • A.

      Internet Explorer

    • B.

      Safari

    • C.

      Google Chrome

    • D.

      Opera

    • E.

      Firefox

    Correct Answer
    E. Firefox
    Explanation
    As of August 2010, Firefox was the most popular web browser used to access the internet. This can be attributed to several factors such as its user-friendly interface, customizable features, and strong security measures. Firefox gained popularity for its fast browsing speed and efficient performance, attracting a large user base. Additionally, Firefox was known for its extensive library of add-ons and extensions, allowing users to personalize their browsing experience. These factors contributed to Firefox becoming the preferred web browser during that time period.

    Rate this question:

  • 25. 

    What does FTP stand for?

    • A.

      Files To Put online

    • B.

      File Transfer Protocol

    • C.

      File Transfer Please

    Correct Answer
    B. File Transfer Protocol
    Explanation
    FTP stands for File Transfer Protocol. It is a standard network protocol used for the transfer of files between a client and a server on a computer network. FTP allows users to upload, download, and manage files on a remote server. It is commonly used by web developers to upload files to a website and by individuals to download files from the internet.

    Rate this question:

  • 26. 

    After watching the Video below what would you say is an important element to factor into your web development project.  Choose the best answer. 

    • A.

      Twitter

    • B.

      Young People

    • C.

      Online Dating

    • D.

      Facebook

    • E.

      Social Media

    Correct Answer
    E. Social Media
    Explanation
    An important element to factor into your web development project is social media. This is because social media platforms have become integral to people's lives and play a crucial role in connecting individuals and businesses. Integrating social media features into your website can help increase user engagement, drive traffic, and promote your brand. By leveraging social media, you can tap into a wider audience, enhance your online presence, and ultimately achieve your web development goals.

    Rate this question:

  • 27. 

    Before I get started designing in Dreamweaver what should I do?

    • A.

      Buy a Domain Name

    • B.

      Setup my Dedicated Server

    • C.

      Setup a Work Space

    Correct Answer
    C. Setup a Work Space
    Explanation
    Before starting to design in Dreamweaver, it is important to set up a work space. This involves creating a designated area or environment where all the necessary tools, resources, and files for the design process are organized and easily accessible. This allows for a more efficient and focused workflow, ensuring that everything needed for the design project is readily available. Setting up a work space also helps in keeping the design process organized and structured, leading to better productivity and creativity.

    Rate this question:

  • 28. 

    What area of Dreamweaver did we not talk about or use in class so far?

    • A.

      Local View

    • B.

      Property Inspector

    • C.

      Multiscreen

    • D.

      Live View

    • E.

      Remote Server

    • F.

      Get AIR Extension

    Correct Answer
    F. Get AIR Extension
    Explanation
    The correct answer is "Get AIR Extension". In class, we did not discuss or use the feature of Dreamweaver called "Get AIR Extension". This feature allows users to download and install the Adobe AIR extension for Dreamweaver, which enables them to create and test applications for the Adobe Integrated Runtime (AIR) platform.

    Rate this question:

  • 29. 

    Did you read Chapter 3 in your Adobe Dreamweaver CS5 textbook?

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The given correct answer is "True" because it implies that the person did read Chapter 3 in their Adobe Dreamweaver CS5 textbook.

    Rate this question:

  • 30. 

    You enjoyed the first quarter of VBI School of Creative Media.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The statement suggests that the person enjoyed the first quarter of VBI School of Creative Media. Since the answer is "True," it can be inferred that the person had a positive experience during the initial period of their time at the school.

    Rate this question:

Quiz Review Timeline +

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

  • Current Version
  • May 27, 2024
    Quiz Edited by
    ProProfs Editorial Team
  • Oct 22, 2010
    Quiz Created by
    Vbimedia
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.