The News Feed is located on a Facebook member's ________ page

A) Events
B) Wall
C) Profile
D) Home


D

Computer Science & Information Technology

You might also like to view...

Asc("A") is 65. What is displayed by txtBox.Text = Chr(65) & "B";?

(A) ABC (B) A BC (C) 656667 (D) Not enough information is available.

Computer Science & Information Technology

private fields of a superclass can be accessed in a subclass

a. by calling private methods declared in the superclass. b. by calling public or protected methods declared in the superclass. c. directly. d. All of the above.

Computer Science & Information Technology

The principal object of a hash function is __________ .

A. data integrity B. compression C. collision resistance D. mapping messages

Computer Science & Information Technology

Which of the following codes inserts text for each item as a hyperlink?

A. var linkElem = document.createElement("a");linkElem.innerHTML =linkElem.setAttribute("href", "#" + n.id); B. var linkElem = document.createElement("a");linkElem.innerHTML = n.innerHTML;linkElem.setAttribute("href") C. var linkElem = document.createElement("a");linkElem.innerHTML = n.innerHTML;linkElem.setAttribute("href", "#" + n.id); D. var linkElem = document.createElement("a");linkElem.setAttribute("href", "#" + n.id);

Computer Science & Information Technology