Game Preview

Review for Exam

  •  English    15     Public
    Exam Review
  •   Study   Slideshow
  • What type of element takes up the full width available?
    Block Element
  •  5
  • What is the correct tag name for list items?
    <li>
  •  5
  • 1010 + 0101 =
    1111
  •  5
  • 101011 + 1111 =
    111010
  •  5
  • 1101 × 0110 =
    01001110
  •  5
  • What is a common use of the <span> element?
    To style specific parts of text
  •  5
  • Which of the following syntax is correct?
    C
  •  5
  • An image displayed from logo.png with alternative text “CNHS logo”. <img _____="logo.png" _____="CNHS Logo">
    <img src="logo.png" alt="CNHS Logo">
  •  5
  • A hyperlink to https://www.example.com with the clickable text lms.cnhs.site”. <a _____="https://www.example.com"> www.lms.cnhs.site </a>
    <a href="https://www.example.com"> lms.cnhs.site</a>
  •  5
  • A table with one row and two columns: Name and Age.
    <table> <tr> <td> Name </td> <td> Age </td> </tr> </table>
  •  5
  • A background color lightblue applied to the whole page. <body _____="background-color:lightblue;">
    <body style="background-color:lightblue;">
  •  5
  • A video player that plays movie.mp4 with controls enabled. <____ src="movie.mp4" _____></____>
    <video src="movie.mp4" controls></video>
  •  5
  • What will be shown by the following table code?
  •  5
  • 1110111 + 11110111 =
    101101110
  •  5
  • Convert Binary Value to Decimal Value: 111111011
    507
  •  5