?
Case-Based Critical Thinking Questions
?
Case 5-1
Alex, a web designer, is assigned the task of creating a mobile-device-friendly website for a leading fashion outlet called AllStyles. A desktop version of AllStyles's website already exists. Alex can refer to this desktop version of the website to create the mobile website design.
For the AllStyles's main web page, Alex creates a navigation bar that includes topical areas named Clothing, Accessories, and About Us. Alex wants to create nested lists within each of these topical areas that would contain links to specific pages on the AllStyles website. In order to do so, Alex must _____ while writing the HTML code.?

A. ?set the width of the layout viewport to the width of the nested lists
B. ?put each of the nested lists within a class
C. ?insert the structure of the nested list within a specific style sheet structure
D. ?use theonlykeyword to hide the list items


Answer: B

Computer Science & Information Technology

You might also like to view...

Scenario: The Internet Explorer 8 browser is being used to display a web page with an audio player but the audio element displays nothing on the page. Read the following code snippet and select the reason for the incorrect display from the choices below.

``` ``` a. The controls attribute should be controls=”yes” b. There are too many source elements. c. There is no fallback content to display for browsers that do not support the audio element. d. The MIME type values are incorrect.

Computer Science & Information Technology

Analyze the following code:

``` #include using namespace std; class Date { friend void p(); private: int year; int month; int day; }; void p() { Date date; date.year = 2000; cout << date.year; } int main() { p(); return 0; } ``` A. The program compiles and runs fine and display 2000. B. Since year is private, you cannot access it using date.year in function p(). C. The program has a syntax error because year is a private data field in Date. D. The program will have a syntax error if the line friend void p() is deleted.

Computer Science & Information Technology

Write four different Java statements that each add 1 to integer variable x.

What will be an ideal response?

Computer Science & Information Technology

A group of related pages published to a specific location on the Internet is called a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology