Case 2Brandon works for a large construction firm in the Northeast.  Brandon was hired for his excellent skills in web design, specifically his experience with Dreamweaver.  Brandon is eager to put his experience and skills to good use.
Brandon uses photos and other media from federal government websites on the construction firm's site.  Why is Brandon probably within his legal rights to use this media?

A. In general, the media on federal government websites is in the public domain.
B. The media used on the site was never copyright-protected.
C. The media used on the site was never trademark-protected.
D. Brandon gave attribution for the media used on the firm's website.


Answer: A

Computer Science & Information Technology

You might also like to view...

What is wrong with the following definition of headInsert?

struct Node { int item; Node* link; }; typedef Node* NodePtr; void headInsert(NodePtr& head, int data) { NodePtr tmp = new Node; tmp->item = data; head->next = tmp; tmp->next = head->next; } NodePtr head; headInsert(head, 4); a. head->next is pointing to NULL b. if there were any nodes following head they are now lost. c. nothing is wrong. d. tmp should be declared to be a Node not a NodePtr

Computer Science & Information Technology

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

1. A single logical record that extends over two or more physical records is called a spanned record. 2. The file system is also responsible for allocating space on disk. 3. Often, a linked list of sector numbers (or cluster numbers) called a file allocation table is maintained on disk. To link the sectors, the second sector’s number is recorded in the first sector’s file allocation table entry. 4. Directory management works with the file allocation table. 5. Disk space management works with the file allocation table.

Computer Science & Information Technology

When would you prefer a list to a deque?

What will be an ideal response?

Computer Science & Information Technology

A(n) __________ is a software package that usually consists of a text editor, a compiler or interpreter, and tools to test and debug programs.

a. compiler b. CPU c. storage device d. IDE

Computer Science & Information Technology