CIW (1D0-61B): Site Development Associate Course Sample Questions

  1. Home
  2. CIW (1D0-61B): Site Development Associate Course Sample Questions
CIW Site Development Associate (1D0-61B) Sample Questions

Question 1 – Which of the given actions are considered to be unethical in the process of website development?

  • A. copying music from another site with the owner’s written permission
  • B. Creating new code providing a look and feel which is similar to another site
  • C. Linking your site to some other site with permission
  • D. Copying a code from another Web site

Correct Answer: D 

Question 2- A royalty-free license lets you use stock images on your Web site in the following ways:

  • A. Using the images without paying a fee for each use.
  • B. Reselling or transferring the images without paying a fee.
  • C. Using the images without purchasing a license.
  • D. Assuming copyright of the images.

Correct Answer: A 

Question 3- Which of the given options correctly describes a proper order of precedence for implementing CSS?

  • A. Inline styles override all other styles.
  • B. External styles override all other styles.
  • C. Internal (embedded) styles override inline styles.
  • D. External styles override internal (embedded) styles.

Correct Answer: A 

Question 4 – Whose input must be sought during the initial meeting to plan a new Web site?

  • A. Shareholders
  • B. Stakeholders
  • C. Web developers
  • D. Graphic designers

Correct Answer: B 

Question 5 – You are using the HTML <input>, <select>, and <text area> tags for creating form fields in a Web page by placing them between the <form> /form> container tags. Which of the following attribute can be used with the <input> element for designating the fields appearing in the form?

  • A. The type attribute
  • B. The name attribute
  • C. The value attribute
  • D. The action attribute

Correct Answer: A 

Question 6 – You are working on the development of a Web site in HTML5, and you want the new HTML5 structural elements (such as <header> or <article>) to be styled consistently in all browsers. The site must be rendered successfully by adding a CSS rule that changes them to which element type.

  • A. Inline
  • B. Script
  • C. Fixed
  • D. Block

Correct Answer: D 

Question 7 – Among the standards developed by the W3C Web Accessibility Initiative (WAI) project, which one assures accessibility to all Web users, including those with disabilities?

  • A. Web Content Accessibility Guidelines
  • B. User Agent Accessibility Guidelines
  • C. W3C Authoring Tool Accessibility Guidelines
  • D. Section 508 of the Rehabilitation Act

Correct Answer: A 

Question 8 – Jack’s boss ordered her to design a mobile-friendly version of the company’s Web site. Marsha eliminates banners and advertisements from her mobile site to optimize it for mobile devices. Are there any other recommendations Jack should follow?

  • A. Using images instead of video on the Web site.
  • B. Using white space to give the site an uncluttered look.
  • C. Using Flash content to replace lengthy text descriptions.
  • D. Creating several Web sites, each tailored to a specific mobile platform.

Correct Answer: B 

Question 9 – What is the most effective way to establish a mobile presence that offers mobile-friendly content to as many people as possible?

  • A. Traditional Web sites
  • B. Mobile Web sites
  • C. Mobile apps
  • D. RSS feeds

Correct Answer: B 

Question 10 – According to the browser, which line of code instructs it to search for a directory named mysite at the top level of the current page?

  • A. mysite/index.html
  • B. /mysite/index.html
  • C. ./mysite/index.html
  • D. http://www.mysite.com/index.html

Correct Answer: C 

Question 11 – Is there a tool that lets you edit and validate your source code and preview your Web pages across multiple browsers simultaneously?

  • A. GUI HTML editor
  • B. HTML text editor
  • C. Word processor
  • D. Compiler

Correct Answer: A 

Question 12 – What kind of web pages will fail W3C validation tests regardless of the standard they are designed with?

  • A. <div>
  • B. <table>
  • C. <header>
  • D. <aside>

Correct Answer: B

Question 13 – In addition to business plans, proprietary code, and sales contracts, what kind of intellectual property do they belong to?

  • A. Copyleft
  • B. Copyright
  • C. Trademark
  • D. Trade secret

Correct Answer: D 

Question 14 – When you put a quote on your Web page, it must be centered and indented. Which of the following is the best way to accomplish this using HTML5?

  • A. Using the <pre> element.
  • B. Using the <block quote> element.
  • C. Using the style attribute with the <p> tag.
  • D. Using the text-align attribute with the <p> tag.

Correct Answer: B 

Question 15 – Users use a CCI script to submit data from a form on your Web page to a database. When users fill out the form, which attributes of the form field elements organize their information by name and value?

  • A. Name
  • B. Form
  • C. Value
  • D. Method

Correct Answer: A 

Question 16 – A graphic must include which element to be successfully validated as HTNL5 when it is inserted in a Web page.

  • A. The id attribute
  • B. The alt attribute
  • C. The target attribute
  • D. The name attribute

Correct Answer: B

Question 17 – In your style sheet, you will format a section of your company’s website with a black background and white text. If you wanted to specify the color of this portion of the Web page in hexadecimal, what would you use?

  • A. “white”
  • B. 000000
  • C.  FFFFFF
  • D. “255,255,255”

Correct Answer: C 

Question 18 – As Aisha codes a Web site using a GUI HTML editor, she wants to make sure that it complies with HTML standards and checks for errors as she goes. How will this be accomplished?

  • A. Rendering and validating the code using http://validator.w3.org.
  • B. Rendering the code with a browser to see if it looks correct.
  • C. Validating the code using http://validator.w3.org.
  • D. Validating the code using the GUI validator.

Correct Answer: D 

Question 19 – An existing Web page is being modified and HTML5 code needs to be validated. For creating a rectangular hot spot in an image map that links to www.xyz.com, which of the following codes should you nest inside the <map> </map> container tags?

  • A. <area shape=”rectangle” coords=”78, 0, 156, 75″ href=”http://www.xyz.com” alt=”xyz”
  • B. <area shape=”rectangle” coords=”78, 0, 156, 75″ href=”www.xyz.com” alt=”xyz” />
  • C. <area shape=”rect” coords=”78, 0, 156, 75″ href=”http://www.xyz.com” alt=”xyz” />
  • D. <area shape=”rect” coords=”78, 0, 156, 75″ href=http://www.xyz.com />

Correct Answer: C 

Question 20 – Henry, the author of a Web page on his company’s intranet wants to insert an HTML comment so other developers know that it validates as HTML5 and that it was written by him. How should the comment be inserted that he requires?

  • A. // Henry, 9/17/2012. This code validates to HTML5
  • B. <? Henry, 9/17/2012. This code validates to HIML5?>
  • C. /*Henry, 9/17/2012. This code validates to HTML5 */
  • D. <!–Henry, 9/17/2012. This code validates to HTML5–>

Correct Answer: D

CIW (1D0-61B) free practice tests
Menu