Question

[5 pts] An element with no closing tag is called which of the following? an attribute...

  1. [5 pts] An element with no closing tag is called which of the following?
    1. an attribute
    2. an empty element
    3. a Socratic element
    4. a hermit element
  2. [5 pts]
    <a href="#info">Click Here</a>

The above HTML is an example of which of the following?

    1. An external link
    2. An internal link
    3. An anonymous function
    4. A source attribute
  1. [5 pts] Which of the following should be primarily responsible for the design and formatting of a Web page?
    1. CSS
    2. HTML
    3. JavaScript
    4. XML
  2. [5 pts]   The following: <header>, <footer>, <main>, <nav>, and <section> are all examples of what?
    1. HTML5 gradient elements
    2. CSS selectors
    3. CSS rule sets
    4. HTML5 semantic elements
  3. [5 pts]   Which of the following forces a line break to be rendered by the browser?
    1. <br>
    2. <a>
    3. <div>
    4. <header>
  4. [5 pts] In the CSS box model, ___________________ is the space between the content itself and the containing element.
    1. Margin
    2. Border
    3. Padding
    4. Border-style
  1. [5 pts]   The default global object in JavaScript is what?
    1. Number
    2. String
    3. document
    4. window
  2. [5 pts] Given the following JavaScript code, what is the value of y after the following is executed?

let x = 6;

let y = 0;

y = ++x;

y *= 2;

  1. 6
  2. 8
  3. 14
  4. 10

Homework Answers

Answer #1

Answer1: Empty element

Answer2: Internal link

Answer3: HTML

Answer4: HTML5 semantic elements

Explanations:

Explanation1: Empty elements don't need closing tags. Ex: <br> to break the line.

Explanation2:  Internal link is used to show the link that will redirect you to next page.

Explanation3:  HTML is the primarly responsible for designing the webpage. It creates the structure of the webpage.

Explanation4:  HTML semantics used to give meaning to the user and browser. It uses syntax like nav, header, footer

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
I have trouble in my code with - Create and append the fancySheet link element to...
I have trouble in my code with - Create and append the fancySheet link element to the document head - Create and append figBox element to element with id box - Populate the figure box with preview images of the five fancy style sheets I don't understand what went wrong. New Perspectives HMTL5, CSS3, and JavaScript T12 Case Problem 1: New Accents Photography JavaScript File Event Listener Go to the na_styler.js file in your editor. Add an event listener that...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>All Pets Veterinary Hospital</title> <style> body { font-family: arial,...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>All Pets Veterinary Hospital</title> <style> body { font-family: arial, sans-serif; font-size: 100%; } /* outer container */    #wrapper { width: 960px; margin: 50px auto; padding: 0px; background-color: rgb(255, 255, 255); /* white */ border: 1px solid #000; /* black */ }    header h1 { text-align: center; }    nav { text-align: center; background: rgb(175, 196, 206); }    address figure { text-align: center; } </style> </head> <body> <div id="wrapper"> <!-- outer...
Challenge 5 Read ALL of the instructions carefully before starting the exercise! Dear Colleague, Earlier today...
Challenge 5 Read ALL of the instructions carefully before starting the exercise! Dear Colleague, Earlier today I built my fourth website using HTML5 and CSS3. This time I wanted to try using CSS float layout options on a website dedicated to my favorite topic: robotics. I wanted my website to look like what is shown in Figure 1 (see below). However, after giving it my best effort, things once again didn’t turn out the way I wanted (see the code...
This will be my third time submitting this question. THERE SHOULD BE NO USE OF CSS...
This will be my third time submitting this question. THERE SHOULD BE NO USE OF CSS OR SWITCH STATEMENTS IN THE JAVASCRIPT. Even though there is stylesheet in the HTML file do no create a new one. Project Standards: Students will use click events to capture user input. Students will use variables to store information needed by their application and keep track of their program’s state. Students will use conditionals to control project flow. Project Task You will be building...