70-480 Exam Details

  • Exam Code
    :70-480
  • Exam Name
    :Programming in HTML5 with JavaScript and CSS3
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :332 Q&As
  • Last Updated
    :Dec 07, 2021

Microsoft 70-480 Online Questions & Answers

  • Question 211:

    You display a long text content in a div.

    You need to prevent the vertical scrollbar of the browser from being displayed.

    Which CSS element should you use?

    A. @page
    B. @keyframes
    C. overflow-x
    D. overflow-y

  • Question 212:

    You are developing a customer web form that includes the following HTML.

    A customer must enter a valid age in the text box prior to submitting the form.

    You need to add validation to the control.

    Which code segment should you use?

    A. Option A
    B. Option B
    C. Option C
    D. Option D

  • Question 213:

    DRAG DROP

    You have a stylesheet for an existing website.

    The website contains the following HTML markup.

    You need to apply a custom font named MyFont1 to all of the navigation elements.

    You write the following markup in the stylesheet.

    How should you complete the markup? To answer, drag the appropriate code elements to the correct targets. Each code element may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

    NOTE: Each correct selection is worth one point.

    Select and Place:

  • Question 214:

    HOTSPOT

    You test a webpage that contains the following JavaScript code:

    The webpage also contains the following markup:

    You need to ascertain how the webpage responds when the user enters characters and then clicks the add and divide buttons.

    For each statement in the table, select Yes if the action causes the webpage to behave as described. Select No if it does not. Make only one selection in each column.

    Hot Area:

  • Question 215:

    HOTSPOT

    You develop an HTML5 webpage. You have the following HTML markup: (Line numbers are for reference only.)

    The webpage also contains the following CSS markup:

    You need to determine how the webpage will appear when the CSS styles are applied.

    For each of the following statements, select Yes if the statement is true. Otherwise, select No.

    NOTE: Each correct selection is worth one point.

    Hot Area:

  • Question 216:

    You develop an HTML5 webpage. You have the following HTML markup:

    You need to prevent users from entering specific characters into the username field.

    What should you do?

    A. Using the keyup event, add an anonymous function that returns true when a specific character keycode value is determined.
    B. Using the change event, add an anonymous function that returns true when a specific character keycode value is determined.
    C. Using the keydown event, add an anonymous function that returns false when a specific character keycode value is determined.
    D. Using the change event, add an anonymous function that returns false when a specific character keycode value is determined.