What will the following script accomplish?
for (int i=0; i<blacklist.length; i++)
if (HttpCookie.domainMatches(blacklist[i],
host))
return false;
A.
Create a list of blacklist domains
B.
Check domains against a blacklist
C.
Prevent site from being blacklisted
D.
Delete entries in a blacklist file
Explanation: