Answer:
A: used by ISP's to filter out email SPAM
C: a way to help an individual focus on best choices when deciding what to watch or buy.
Explanation:
Collaborative filtering uses a community-based approach to filter spam. It works by collecting numerous email users from around the world. By doing this, it becomes possible for users to flag emails that are spam and those that are legitimate.
Also Collaborative Filtering is one of the most efficient techniques for building a system that can help a user when it comes to recommending best choices based on information from a large number of users.
Happy valentine’s u too !!
Answer: Computers and cellular devices
Reason: Everyone every day watched entertainment with commercials of the internet all day on these technologies and proven by 92 percent. Make this brainly answer for everyone else that needs this. Hope this helps:)
Jesse should use the customize prompt under appearance menu to customize the necessary details she want to emphasize. The customize prompt allows the users to personally edit certain information to their personal tastes, in such a way that, the customized information will easily grab the attention of the target group.
Answer:
Option b. ArrayList‹Integer› = new ArrayList‹Integer›(10) does not correctly declare an ArrayList.
<u>Explanation</u>:
ArrayList in Java dynamically stores elements in it. It also called as re- sizeable array as it expands in size when elements are added and decreases when an element is removed from it. This array list class also allows to use duplicate and null values.
The syntax for creating Array list is as follows
ArrayList<Type> obj = new ArrayList<Type>()
Type specifies the type of ArrayList like Integer, Character, Boolean etc, and obj is the object name. But in the option b ArrayList‹Integer› = new ArrayList‹Integer›(10) object name is missed and not specified.