Download CIW Site Development Associate Practice Exam Questions With 100% Verified Answers and more Exams Company Secretarial Practice in PDF only on Docsity! CIW Site Development Associate Practice Exam Questions With 100% Verified Answers When developing a Web site, which of the following actions would be considered unethical? - correct answer Copying some code from another Web site When you are using stock images on your Web site, a royalty-free license allows you to: - correct answer Use the images without paying a fee for each use. Which choice describes a correct order of precedence for implementing CSS? - correct answer Inline styles override all other styles. During the initial meeting to plan a new Web site, whose input must be obtained? - correct answer Stakeholders You can use the HTML <input>, <select>, and <text area> tags to create form fields in a Web page by placing them between the <form> </form> container tags. Which attribute is used with the <input> element to designate the fields that will appear in the form? - correct answer The type attribute CIW Site Development Associate Practice Exam Questions With 100% Verified Answers You are developing a Web site in HTML5. You want the new HTML5 structural elements (such as <header> or <article>) to be styled consistently in all browsers. You must add a CSS rule that will change them to which type element type, to ensure the site will render successfully? - correct answer Block Which set of standards developed by the W3C Web Accessibility Initiative (WAI) project provides a universal set of standards promoting accessibility for all Web users, including those with disabilities? - correct answer Web Content Accessibility Guidelines Marsha's boss directed her to create a mobile version of the company's Web site. To ensure her mobile site is optimized, Marsha eliminates banners and advertisements. What other recommendations should Marsha follow? - correct answer Use white space to give the site an uncluttered look Matthew has embedded a video in his Web page using the HTML5 video format. The video is not rendering properly. He asks Arlene to help determine the problem, so she reviews his code, which appears as follows: CIW Site Development Associate Practice Exam Questions With 100% Verified Answers You are creating a style sheet to format the pages on your company's Web site. One section will have a black background with white text. What is the hexadecimal reference you would use to specify the text color for this portion of the Web page? - correct answer #FFFFFF Aisha is coding a Web site using a GUI HTML editor. She wants to quickly check her code for errors and compliance with HTML standards as she works. How can she best accomplish this? - correct answer Validate the code using the GUI validator You are modifying an existing Web page that needs to validate HTML5 code. To create a rectangular hot-spot in an image map that links to www.xyz.com, which code could you nest inside the <map></map> container tags? - correct answer <area shape="rect" coords="78, 0, 156, 75" href="http://www.xyz.com" alt="xyz" /> Clyde is working on a Web page for his company's intranet. He wants to insert an HTML comment within the page to let other developers know that the page validates as HTML5 and that he is the page author. Which CIW Site Development Associate Practice Exam Questions With 100% Verified Answers line of code will insert the comment that Clyde requires? - correct answer <!--Clyde Davis, 9/17/2012. This code validates to HTML5 --> Consider the following HTML5 code: <!DOCTYPE html> <html lang="en"> <head> <title>My Favorite Movie Quotes</title> <link rel="stylesheet" href="css/styles.css" /> </head> <p> This web site...</p> <blockquote>What we are</blockquote> </p> </body> </html> - correct answer The <blockquote> tag should be used outside the <p> tags Consider the following HTML5 code: - correct answer <!--NAVIGATIONAL SIDEBAR --> CIW Site Development Associate Practice Exam Questions With 100% Verified Answers <nav> <img height="129" src="syb/SYBSumRepCV.jpg" width="100" alt="Link to a PDF file. Go to www.adobe.com to download Adobe Reader" /> <br/> <br/>SYB <br/>Summary Report </nav> Also consider the following CSS code: - correct answer nav { float: left; width: 165px; background: #fc3 url(navbg_04.gif) repeat-y top right; height: 662px; } This HTML5 and CSS code directs the sidebar background image to: - correct answer display at the top-right of the sidebar CIW Site Development Associate Practice Exam Questions With 100% Verified Answers Marion is asked to complete the project within 8 weeks. The site currently includes 10 pages and connects to a back-end database so that customers can sign in for a personalized experience. Marion suspects that most of the existing code will need to be replaced. Marion must ensure that she has plenty of time for the testing phase, so she needs to complete the planning phase, in which she selects the multimedia for the site, within the next couple of days. Which strategy should Marion use in the planning phase? - correct answer Purchase stock photos from online resources Which Web-based validation tool is used to validate Cascading Style Sheets (CSS)? - correct answer www.jigsaw.w3.org You are creating a style sheet to format your Web pages. For the page background color, you enter the hexadecimal code FF0000. What color will the page background be when you apply this style? - correct answer Red Sampson has used HTML5 to create a Web page that contains image-based navigation buttons. He would like to add text-based navigation to help ensure accessibility. CIW Site Development Associate Practice Exam Questions With 100% Verified Answers Which of the following HTML5 elements should he use? - correct answer <footer> Karen is the Webmaster for her company. Management would like to make the company's intranet site more effective by providing links to internal HR forms for all employees to access. These forms are currently stored on the company's file server and are updated quarterly. For security reasons, the Web server does not allow linking to the company's file server. How should Karen create these links? - correct answer Upload the forms to the Web server and create local relative links to the files. Which choice lists the HTML5 elements that define the document structure for a Web page? - correct answer <header>, <footer>, <nav>, <article>,<aside> When previewing a Web page using a GUI HTML editor, you will: - correct answer Be limited to the browsers installed on your computer or device Which Web-based validation tool is used to validate HTML documents? - correct answer www.validator.w3.org CIW Site Development Associate Practice Exam Questions With 100% Verified Answers Which choice lists the CSS standard(s) that HTML5 supports? - correct answer All CSS standards (CSS1, CSS2, and CSS3) Prior to HTML5, structuring a Web site using style sheets with the <div> tag and its attribute has been an acceptable practice to govern the document's structure. With the emergence of HTML5, what five new elements were introduced for more effectiveness? - correct answer <nav>, <article>, <aside>, <header>,<footer> Katie developed her corporation's intra-net site using proprietary HTML language extensions based on the company's current browser. The company has recently updated its systems to include the use of a new browser. Now the intra net site that Katie developed no longer renders its content consistently. What should Katie do to ensure that this site's content renders consistently regardless of the browser used? - correct answer Update the site using a single language standard consistently, such as HTML5 or XHTML CIW Site Development Associate Practice Exam Questions With 100% Verified Answers elements organizes information input by the user into the NAME = VALUE pairs? - correct answer Name Since the advent of HTML5, which choice accurately describes a difference between a mobile app and a mobile Web site? - correct answer A mobile app is faster because it does not necessarily use the browser. Web developers typically include a comments in their code for which reason? - correct answer To explain the purpose of code sections to other developers You have been asked to design and develop a Web site for a retirement community. What can you do to help make the site accessible to the elderly? - correct answer Comply with WAI's Web Content Accessibility Guidelines When developing Web pages, it is important to test the pages with: - correct answer Current and older versions of multiple browsers CIW Site Development Associate Practice Exam Questions With 100% Verified Answers When a developer wants to center a paragraph of text, which code should she use? - correct answer <p style="text-align: center"> This is the text to center </p> The process of wireframing typically includes determining Web site goals plus: - correct answer Outlining the development process and site navigation, and identifying required technologies Phillip creates a Web form in HTML5, but the data will not process. He has the method attribute included in the <form> element. What is missing? - correct answer The act/on attribute of the <form> element Violating a copyright or trademark is an example of what type of prosecutable crime? - correct answer Infringement Skylar has been asked by the HR Department to create a Web page for the company's intra net site that compares the company's four different medical insurance plans. To accomplish this effectively in HTML5, Skylar would: - correct answer Use document structure tags to lay out CIW Site Development Associate Practice Exam Questions With 100% Verified Answers the page and use a table to organize the medical insurance plan information Marsha has been hired by XYZ, Inc. to update the company Web site. Marsha discovers that the existing Web pages were structured using tables. Marsha needs to explain to XYZ why the Web site needs to be recoded in HTML with CSS controlling the structure of the document. What is the most important reason for using HTML5 and CSS? - correct answer The Web site can be interpreted by any HTML5-compliant browser, including mobile devices