Evaluate ( 00001000 & 11000101 ) ^ ( 11110000 ).

a. 00001101
b. 11000000
c. 00111101
d. 11110000


d. 11110000

Computer Science & Information Technology

You might also like to view...

Static class variables:

a. are final. b. are public. c. are private. d. are shared by all objects of a class.

Computer Science & Information Technology

Identify the algorithm used in the following code.

void algo(int arr[], int n){ for (int i = 0; i < n-1; i++) { for (int j = 0; j < n-i-1; j++){ if (arr[j] > arr[j+1]) { int temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } } a. Bubble sort, O(n^2) b. Insertion sort, O(n^2) c. Merge sort, O(n log n) d. Quick sort, O(n log n)

Computer Science & Information Technology

In configuring the VPN for a ____ configuration, you need to specifically identify each of these participants to every other participant that uses the VPN.

A. mesh B. hub-and-spoke C. inter-connected D. client

Computer Science & Information Technology

In order to move from the /home/joe/test/data to the /home/joe directory, what command below should be issued?

A. cd .. B. cd ../.. C. /home/joe D. cd ./..

Computer Science & Information Technology