What web browser feature would be particularly useful when using public computers?

a. Pinned tabs
b. Session restore
c. Privacy browsing
d. all of the above

C

Computer Science & Information Technology

You might also like to view...

List output from the following queries. (Uses tables created in the Chapter 4 Lab Activity)

1. SELECT INITCAP(First) || ‘ ’ || INITCAP(Last) “Student Name” FROM student; 2. SELECT COUNT(DISTINCT (MajorId)) FROM student; 3. SELECT Building, SUM(Capacity) TOTCAP FROM location GROUP BY Building ORDER BY TOTCAP DESC; 4. SELECT UPPER(Lname), UPPER(Fname), (SYSDATE – HIREDATE) DAYS FROM employee ORDER BY DAYS; 5. SELECT Building, AVG (Capacity) FROM location GROUP BY Building HAVING AVG (Capacity) > 25;

Computer Science & Information Technology

The Favorites list includes SkyDrive, an internet-based storage location for saving files in the cloud. 

Answer the following statement true (T) or false (F)

Computer Science & Information Technology