Sharon’s company has written a new computer program, and she has been asked to find a way to prevent people from copying the software they purchase and giving it to others who have not purchased the software.
 
What can Sharon’s company do to make sure a customer who purchases the program does not give it to someone else?

A. Acquire a copyright.
B. Obtain an EULA.
C. Use DRM.
D. Issue a license.


Answer: C

Computer Science & Information Technology

You might also like to view...

The GUI for a web-based application is built with

a. HTML b. JavaScript c. both of the above d. none of the above

Computer Science & Information Technology

For question below assume the following environment

``` char s[STACK_SIZE]; char c; int s_top = -1; push (s, ‘T’, &s_top, STACK_SIZE); push (s, ‘A’, &s_top, STACK_SIZE); push (s, ‘K’, &s_top, STACK_SIZE); c = pop(s); push (s, ‘C’, &s_top, STACK_SIZE); push (s, ‘J’, &s_top, STACK_SIZE); c = pop(s); ``` Draw the stack after the push and pop operations have been performed. Label the top entry (element 0).

Computer Science & Information Technology

When entering a formula or function into a cell, most spreadsheet programs require that you begin with some type of symbol, usually the asterisk character (*).

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

Computer Science & Information Technology

Inspect mode helps you identify HTML elements and their associated styles.

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

Computer Science & Information Technology