A ____ uses the Internet to harass a particular target, often using fake identities or public Web sites to enable the harassment.

A. griefer
B. cyberbully
C. sociopath
D. troll


Answer: B

Computer Science & Information Technology

You might also like to view...

Is it possible to write code in this manner for a C++ program?

```int size; cout << “Enter the size of the array.”.; cin >> size; int numbers[size];``` A. Yes, this is perfectly acceptable C++ code. B. No, the array dimension cannot be a variable. C. The compiler would report that there is an illegal use of a keyword. D. Both A and C are correct.

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; int main() { int list[] = {1, 1, 1, 1}; *(list) = *(list) + 1; *(list + 1) = *(list + 1) + 2; *(list + 2) = *(list + 2) + 3; *(list + 3) = *(list + 3) + 4; cout << list[0] << " " << list[3] << endl; return 0; } ``` a. 2 2 b. 3 5 c. 2 5 d. 1 2 e. 3 4

Computer Science & Information Technology

If you enter *kit in a Criteria box, access will change this to Like "kit."

Indicate whether the statement is true or false

Computer Science & Information Technology

To update records in SQL, you use the UPDATE command with a(n) ____ clause.

A. UPDATE B. SET C. CHANGE D. MODIFY

Computer Science & Information Technology