Design Freaks Online Test (Round 1)

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 Designfreaks2k16
D
Designfreaks2k16
Community Contributor
Quizzes Created: 1 | Total Attempts: 189
Questions: 20 | Attempts: 189

SettingsSettingsSettings
Design Quizzes & Trivia

This test consists of 20 questions which are MCQ's
There is no negative marking
Answer as many questions as possible to boost your score.
Do provide the correct E-Mail id and Phone number as results will be dispatched through these.


Questions and Answers
  • 1. 

    How can you make an e-mail link in HTML?

    • A.

      <a href="xxx@yyy">send email</a>

    • B.

      <mail href="xxx@yyy">send email</mail>

    • C.

      <mail>xxx@yyy</mail>

    • D.

      <mail xxx@yyy>send mail</mail>

    Correct Answer
    A. <a href="xxx@yyy">send email</a>
    Explanation
    To create an email link in HTML, you can use the anchor tag () with the href attribute set to the email address you want to link. The text within the opening and closing tags will be displayed as the clickable link. Therefore, the correct answer is "send email".

    Rate this question:

  • 2. 

    What is the correct HTML for adding a background color?

    • A.

      < body color=”yellow” >

    • B.

      < body bgcolor=”yellow”>

    • C.

      < background > yellow < /background >

    • D.

      < body background=”yellow”>

    Correct Answer
    B. < body bgcolor=”yellow”>
    Explanation
    The correct HTML for adding a background color is < body bgcolor=”yellow”>. This attribute sets the background color of the entire body of the HTML document to yellow.

    Rate this question:

  • 3. 

    If you wanted to make an HTML list that listed items from 1-5, what tag should you use? 

    • A.

      < li >

    • B.

      < ol >

    • C.

      < ul >

    • D.

      < number >

    Correct Answer
    B. < ol >
    Explanation
    To create an ordered list in HTML that lists items from 1-5, the correct tag to use is . The tag is used to define each individual item within the list, while the tag is used to define the ordered list itself. The tag is used for unordered lists, where the order of the items does not matter. The tag is not a valid HTML tag.

    Rate this question:

  • 4. 

    Which is the correct to create an ROMAN numeral list 

    • A.

      <ul type=”I″>

    • B.

      <ol type=”I″>

    • C.

      <ol type=”1″>

    • D.

      <li type=”1″>

    Correct Answer
    B. <ol type=”I″>
    Explanation
    To create a Roman numeral list, the correct answer is "

    Rate this question:

  • 5. 

    The …………………. attribute adds space within each cell.

    • A.

      CELL SPACING

    • B.

      CELL PADDING

    • C.

      WIDTH

    • D.

      ALIGN

    Correct Answer
    B. CELL PADDING
    Explanation
    The correct answer is CELL PADDING. The CELL PADDING attribute adds space within each cell. This attribute is used in HTML table elements to specify the amount of space between the content of a cell and its border. By using CELL PADDING, you can control the amount of space or padding inside each cell, allowing for better spacing and alignment of content within the table.

    Rate this question:

  • 6. 

    Default style and color of unvisited link in any browser is __________

    • A.

      Underline and pink

    • B.

      Normal and blue

    • C.

      Underlined and blue

    • D.

      Underline and magento

    Correct Answer
    C. Underlined and blue
    Explanation
    The default style and color of an unvisited link in any browser is underlined and blue. This is a common convention that helps users easily identify clickable links on webpages. The underlined format distinguishes the link from regular text, while the blue color stands out against the default black text color.

    Rate this question:

  • 7. 

    Screen colors are defined by which colors?

    • A.

      All Blue colors

    • B.

      Green, yellow and Red

    • C.

      Red, yellow and green

    • D.

      Red, Green and Blue

    Correct Answer
    D. Red, Green and Blue
    Explanation
    Screen colors are defined by the combination of red, green, and blue. This is known as the RGB color model. By varying the intensity of these three primary colors, it is possible to create a wide range of colors on a screen. The RGB model is commonly used in electronic displays such as televisions, computer monitors, and smartphones.

    Rate this question:

  • 8. 

    Which HTML Tag will use to scroll a text in web page?

    • A.

      <marquee> … </marquee>

    • B.

       <scroll> … </scroll>

    • C.

      <round> … </round>

    • D.

      <go> … </go>

    Correct Answer
    A. <marquee> … </marquee>
    Explanation
    The correct answer is ... . The tag is used to create a scrolling text or image on a web page. It allows the content within the tag to move horizontally or vertically across the screen, creating a scrolling effect.

    Rate this question:

  • 9. 

    What is Web Font in HTML ?

    • A.

      Web Font is the core font that is use to develop Web Pages.

    • B.

      Web Font enables to use fonts over the Web without installation.

    • C.

      Web Font is the special font that developed by Microsoft Corp.

    • D.

      All of the Above.

    Correct Answer
    D. All of the Above.
    Explanation
    The correct answer is "All of the Above." This means that all the statements mentioned in the question are correct explanations of what a Web Font is in HTML. A Web Font is indeed the core font used to develop web pages, it enables the use of fonts over the web without installation, and it can also be a special font developed by Microsoft Corp.

    Rate this question:

  • 10. 

     What is the use of iframe in HTML?

    • A.

      to display a web page within a web page.

    • B.

      to display a web page with animation effect.

    • C.

      To display a web page without browser.

    • D.

      All of the Above.

    Correct Answer
    A. to display a web page within a web page.
    Explanation
    The use of an iframe in HTML is to display a web page within another web page. This allows for the embedding of external content such as videos, maps, or social media feeds into a website. By using an iframe, the content from another web page can be seamlessly integrated and displayed within the current page, providing a more interactive and dynamic user experience.

    Rate this question:

  • 11. 

    Which of the following is correct HTML for inserting an image?

    • A.

       <image source= “www.mcqsets.com/admin.jpg” alt= “This is me” />

    • B.

      <img src= “www.mcqsets.com/admin.jpg” alt= “This is me” />

    • C.

      <img source= “www.mcqsets.com/admin.jpg” alt= “This is me” />

    • D.

      <img alt= “This is me”>www.mcqsets.com/admin.jpg

    Correct Answer
    B. <img src= “www.mcqsets.com/admin.jpg” alt= “This is me” />
    Explanation
    The correct HTML for inserting an image is "". This code uses the "img" tag to insert an image, with the "src" attribute specifying the source URL of the image file and the "alt" attribute providing alternative text for the image. The forward slash at the end of the tag indicates that it is a self-closing tag.

    Rate this question:

  • 12. 

     Which of the following is correct to set “Black” color as Background of page?

    • A.

      <body bgcolor=“#000000?>

    • B.

      <body background = “#000000?> 

    • C.

      <body Background color = “#000000?>

    • D.

      All of Above

    Correct Answer
    A. <body bgcolor=“#000000?>
    Explanation
    The correct answer is "" because the "bgcolor" attribute is used to set the background color of the page. The value "#000000" represents the color black in hexadecimal format.

    Rate this question:

  • 13. 

    How to define target in new page in HTML?

    • A.

       <a href=“http://www.headstart.cbit.ac.in/” target=“blank”>Click Here</a>

    • B.

      <a href = “http:// www.headstart.cbit.ac.in /” target = “_blank”> Click Here </a>

    • C.

       <a href = “http:// www.headstart.cbit.ac.in /” target = “#blank”> Click Here </a>

    • D.

      <a href = “http:// www.headstart.cbit.ac.in /” target = “@blank”> Click Here </a>

    Correct Answer
    B. <a href = “http:// www.headstart.cbit.ac.in /” target = “_blank”> Click Here </a>
    Explanation
    The correct answer is " Click Here ". This is the correct way to define the target in a new page in HTML. The "target" attribute is used to specify where to open the linked document when the user clicks on the link. In this case, the target value "_blank" indicates that the linked document should be opened in a new browser window or tab.

    Rate this question:

  • 14. 

    How to set a picture as a background web page?

    • A.

      <body background=“backpic.gif”> 

    • B.

      <body background image= “backpic.gif”>

    • C.

      <background= “backpic.gif”>

    • D.

      <background image= “backpic.gif”>

    Correct Answer
    C. <background= “backpic.gif”>
  • 15. 

    Which of the following is the correct HTML tag to comment in HTML?

    • A.

      <!/ and //>

    • B.

      <!– and –>

    • C.

      <!# and ##>

    • D.

      <!% and %%>

    Correct Answer
    B. <!– and –>
    Explanation
    The correct HTML tag to comment in HTML is "". This tag is used to add comments in the HTML code. Anything written between "" is considered as a comment and is not displayed on the webpage. Comments are useful for adding notes or explanations to the code, making it easier for other developers to understand or for future reference.

    Rate this question:

  • 16. 

    What does &nbsp; stand for?

    • A.

      Non-Blocked Space

    • B.

      Non-Breaking Space

    • C.

      Non-Baked Space

    • D.

      Never-Broken Space

    Correct Answer
    B. Non-Breaking Space
    Explanation
    The correct answer is "Non-Breaking Space". In HTML, the   entity is used to insert a non-breaking space. This means that the space will not be collapsed or ignored by the browser, and text or elements will not wrap to the next line if the space is at the end of a line. It is commonly used to create consistent spacing between elements or to prevent line breaks in certain situations.

    Rate this question:

  • 17. 

    Which organization defines the Web Standards?

    • A.

      Microsoft Corporation

    • B.

      IBM Corporation

    • C.

      World Wide Web Consortium

    • D.

      Apple Inc.

    Correct Answer
    C. World Wide Web Consortium
    Explanation
    The World Wide Web Consortium (W3C) is the organization that defines the Web Standards. They are responsible for developing protocols and guidelines that ensure the long-term growth and accessibility of the Web. W3C's standards are widely adopted and followed by web developers and browser manufacturers, making it the correct answer in this case.

    Rate this question:

  • 18. 

    In HTML, Uniform Resource Identifier (URI) is used to

    • A.

      To identify a name or a resource on the internet.

    • B.

      To create a image map in the webpage.

    • C.

      To customize the image in the webpage.

    • D.

      To create a frame document .

    Correct Answer
    A. To identify a name or a resource on the internet.
    Explanation
    In HTML, Uniform Resource Identifier (URI) is used to identify a name or a resource on the internet. URI is a string of characters that provides a unique address for a resource on the web, such as a webpage or an image. It allows users to access and retrieve information from the internet by specifying the location or name of the resource. By using URI, HTML can link to other webpages, images, or files, enabling navigation and interaction within the web.

    Rate this question:

  • 19. 

     What does vlink attribute mean?

    • A.

      Visited link

    • B.

      Virtual link

    • C.

      Virtual link

    • D.

      active link

    Correct Answer
    A. Visited link
    Explanation
    The vlink attribute refers to a visited link. This attribute is used in HTML to define the color of a link that has been visited by the user. By setting the vlink attribute, web developers can customize the appearance of visited links on their website, making it easier for users to identify which links they have already clicked on.

    Rate this question:

  • 20. 

    Which of the following is an attribute of <Table> tag?

    • A.

      SRC

    • B.

      LINK

    • C.

      CELLPADDING

    • D.

      BOLD

    Correct Answer
    A. SRC
    Explanation
    The attribute "SRC" is not an attribute of the tag. The SRC attribute is commonly used with the tag to specify the source (URL) of an image.

    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
  • Mar 18, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Oct 15, 2016
    Quiz Created by
    Designfreaks2k16
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.