Which of the following is the code of acceptable behaviors users should follow while on the Internet; that is, it is the conduct expected of individuals while online?

A. netiquette
B. web politesse
C. Internet behavior
D. web civility


Answer: A

Computer Science & Information Technology

You might also like to view...

The preferred means of creating multithreaded Java applications is by implementing the ________ interface. An object of a class that implements this interface represents a task to perform.

a. Thread b. Runner c. Runnable d. None of the above.

Computer Science & Information Technology

The advantage a linked list has over a vector is that

a. a linked list can dynamically shrink or grow and a vector cannot b. a linked list is smaller than a vector c. a node can be inserted or removed faster from a linked list than from a vector d. data removal and insertion are more accurate with a linked list than with a vector e. None of these

Computer Science & Information Technology

(De Morgan’s Laws) In this chapter, we discussed the logical operators &&, || and !. De Morgan’s Laws can sometimes make it more convenient for us to express a logical expression. These laws state that the expression !(condition1 && condition2) is logically equivalent to the expression (!condition1 || !condition2). Also, the expression !(condition1 || condition2) is log- ically equivalent to the expression (!condition1 && !condition2). Use De Morgan’s Laws to write equivalent expressions for each of the following, and then write a program to show that the original expression and the new expression are equivalent in each case.

a. ``` !( x < 5 ) && !( y >= 7 ) ``` b. ``` !( a == b ) || !( g != 5 ) ``` c. ``` !( ( x <= 8 ) && ( y > 4 ) ) ``` d. ``` !( ( i > 4 ) || ( j <= 6 ) ) ```

Computer Science & Information Technology

A user interface that displays an alternative appearance and customized functionality for software, such as Windows Media Player is called a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology