COGNITIVE ASSESSMENT
What term is used to describe the process of restricting access to certain material on the web?
A. content filtering
B. information monitoring
C. data mining
D. social profiling
Answer: A
You might also like to view...
All layout managers implement the interface ________.
a. LayoutInterface b. InterfaceLayoutManager c. LayoutManagerInterface d. LayoutManager
The stroke and fill colors can be set on the ____ panel.
a. Tools b. Shapes c. Colors d. Options
Since ICMP messages use authentication, man-in-the-middle attacks cannot be successful.
Answer the following statement true (T) or false (F)
In the following code, what is the output for list1?
``` public class Test { public static void main(String[] args) { int[] list1 = {1, 2, 3}; int[] list2 = {1, 2, 3}; list2 = list1; list1[0] = 0; list1[1] = 1; list2[2] = 2; for (int i = 0; i < list1.length; i++) System.out.print(list1[i] + " "); } } ``` a. 1 2 3 b. 1 1 1 c. 0 1 2 d. 0 1 3