CompuScholar Chapter 4 Exam Practice
Quiz by KANDI YOUNG
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
20 questions
Show answers
- Q1The < div > element:divides numbers in math equationsmarks a "division" in your web pagedivides your web page into 3 equal partsmakes all of your elements bold30s
- Q2The _________ element can be used to identify a block section and make sure the content appears on its own lines, but it does not add any extra styling by itself.< blockquote >< strong >< span >< div >30s
- Q3What attribute does not do anything other than put a unique label on the container?The “identifier” attributeThe “id” attributeThe “label” attributeThe “target” attribute30s
- Q4Which of the following is NOT a use for a Comment?write descriptive text to help someone else understand a section of codebold certain areas of textwrite notes to yourself in your code that wouldn’t be displayed in the browserto help identify the ending tags that go with a particular attribute30s
- Q5What is used to start and end a comment?"< !--" tag and end with "-- >" characters."+" tag and end with "-" characters"!!!" tag and end with "***" characters30s
- Q6You can type pretty much anything inside a comment except:asterisks (***)double dashes (--)pound signs (###)numbers30s
- Q7What is the purpose of a “character reference” in HTML?Both of these are trueTo add symbols to your visible content that do not exist on the keyboardNeither of these are trueTo add symbols to your visible content such as < or > that have special meaning in HTML30s
- Q8Which of the following is a correctly formatted character reference for the greater than (>) angle bracket?& gt;gt;>&>;30s
- Q9What kind of area do you normally find at the bottom of a web page?A navigation sidebarA main content areaA footerA header30s
- Q10Which of the following elements are block elements?All of these are block elements< p >< em >< strong >30s
- Q11Block elements can contain:Only inline elementsOnly paragraphsBoth other inline and other block elementsOnly other block elements30s
- Q12This kind of element does not add any space around the data within the element; it will just control how the data is displayed.Inline elementBlock elementNew line elementBold element30s
- Q13Which of the following elements inline elements doesn’t do anything by itself, but can mark things for later styling?< br />< span >< em >< div >30s
- Q14If your web site contains ____________, searching for problems and errors is much easier and faster.clean codespecific codenew codeorganized lines30s
- Q15When you set code inside other code, in an orderly fashion, it is called:NestingOrganized linesOrderly codeInside code30s