Case-Based Critical Thinking QuestionsCase 5-1Part of your new job on the Web development team is to review the page download sizes of new pages added to the site to make sure that everything added is well-considered. If you know that a new page added to a particular site is mainly viewed by users on DSL connections, how small does the page have to be in order to download in less than a second?

A. smaller than 500 kb
B. smaller than 400 kb
C. smaller than 200 kb
D. smaller than 100 kb


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following statements is false?

a. A JavaFX GUI's scene graph is a tree structure of an app’s visual elements, such as GUI controls, shapes, images, video, text and more. b. Each visual element in the scene graph is a node—an instance of a subclass of Node (package javafx.scene), which defines common attributes and behaviors for all nodes in the scene graph. c. The first node in the scene graph is known as the origin. d. Nodes that have children are typically layout containers that arrange their child nodes in the scene.

Computer Science & Information Technology

To modify the bullet symbol, select the content text box. On the Home tab, in the ____ group, click the Bullets button arrow, and then click Bullets and Numbering.

A. Lists B. Numbering C. Paragraph D. Bullets

Computer Science & Information Technology

Begin keying the memo heading at approximately 1.5".

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Case-Based Critical Thinking QuestionsCase 1: XYZ SolutionsYou have just started working for XYZ Solutions as a programmer. Your first assignment is to review and correct various code so that you can become familiar with the company's programs. The following code in a different program is not working properly. The message should display the value of theintCountervariable if theintCountervariable contains a balance that is less than or equal to 15. The message does not display. What mistake did the previous programmer make?intCounter = 1Do Until intCounter <= 15     MessageBox.Show(intCounter)     intCounter += 1Loop

A. The counter is not initialized. B. The While keyword should be used instead of the Until keyword. C. The counter is not incrementing. D. intCounter += 1 should be changed to intCounter = intCounter + 1.

Computer Science & Information Technology