Lesson 4: Understanding Web Applications 1. You are developing a Web page for a medium-sized business. You want to separate the formatting and layout of the page from its content. Which of the following technologies should you use to define the formatting and layout of the page content? a) Cascading Style Sheets (CSS) b) Hypertext Markup Language (HTML) c) JavaScript d) Hypertext Transmission Protocol (HTTP) Answer: a Difficulty: Medium Section Reference: Understanding Web Page Development Cascading Style Sheets (CSS) help you define the formatting and layout of a page’s content and store that separately from the content. HTML is a text-based language that uses various markup tags that describe how content is displayed. JavaScript is scripting language that you use to add functionality and behavior to a Web page. HTTP is the underlying communication protocol used by the World Wide Web. 2. You want to display an image on your Web page. The image is stored on a...