The ____ attribute tells the browser which frame it should use to display the target Web page.

A. source
B. target
C. browser
D. link


Answer: B

Computer Science & Information Technology

You might also like to view...

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

1. A statement of the form IO.File.WriteAllLines("fileName.t", numArray) copies the contents of the numeric array numArray into a text file. 2. The acronym CSV stands for "Comma Separated Values". 3. When you place the OpenFileDialog control on a form, it will not be visible on the form. 4. In order to use the OpenFileDialog control, the programmer must first change its Name property to something other than the default OpenFileDialog1. 5. The following statement could be used to set the Filter property of the OpenFileDialog control so that it displays files with the .txt extension. Text Files (*.txt)|(.txt)

Computer Science & Information Technology

Describe what this function does. Try different numbers as input.

``` def test(num): if num > 0: return test(num -2) * test(num -1) else: return 0 ```

Computer Science & Information Technology

Consider the NFR Framework described in Section 12.3.7. Draw a QOC model that is equivalent to the goal graph depicted in Figure 12-12. Discuss the respective advantage and disadvantages of QOC and the NFR Framework for representing rationale during requirements.

Figure 12-2 depicts a QOC model equivalent to the goal graph. The advantages of the NFR Framework over QOC are that • goals (questions) are represented as an AND-OR refinement a hierarchy • the satisfied goals for a given option are more easily visible

Computer Science & Information Technology

Which of the following is a computer placed on the network perimeter with the main goal of distracting hackers from attacking legitimate network resources?

A. IDS B. router C. honeypot D. firewall

Computer Science & Information Technology