Where might you find recommendation engines at work?
Suggesting a new song you might
enjoy on a streaming music site.
Providing new movies you might
enjoy based on titles you liked.
An online advertisement for a video
game you recently read about in a
blog post.
All of the above

Where Might You Find Recommendation Engines At Work?Suggesting A New Song You Mightenjoy On A Streaming

Answers

Answer 1

Answer:

All of the above.

Explanation:

All scenarios show signs of a recommendation engine at work since they are providing recommendations and suggestions of things that you would potentially like based on the analysis of data from your search history or likes from songs, movies, etc.

Hope this helps :)


Related Questions

which is many many years of vot in nepal.​

Answers

Answer:

18 yrs

Explanation:

Which best describes what databases do?
O They guarantee users find needed data.
O They create categories for data.
O They identify important data.
O They enable users to search for data.
Plz help me I will mark u brainlest!!!

Answers

Answer:

They create categories for data.

Explanation:

They can create categories for data, by storing the data. Information itself can be stored in multiple ways, like creating categories!

I hope this helped :)

Answer:

A. They guarantee users find needed data.

Explanation:

How are computers used in education and entertainment? List them.​

Answers

Answer:

The answer to this question is given below in this explanation section.

Explanation:

              "computers used in education and entertainment"

Computers started as very and simplistic machines data.Most of these files were text-based reports used in a work environment.As technology advanced,computer became increasingly versatile in what they could do.With the creation of the internet and faster processors,file sharing and entertainment became a popular use for personal computer everywhere.Computer have endless users in the entertainment industry by directly marketing products to users.

MusicTelevision and moviesArtGames

Many websites services allow users to purchase individual tracks or albums directly to their computer.Most record labels take advantage of these services to makeup for lost revenue from illegal downloading.

When the advantages of video card and internet speed,moving and streaming television are now at the click of a mouse button.Some websites even offer free streaming episodes of certain TV series with internet commercials.

Art is something that is readily available online at any moment. Pictures,Painting,Poetry and more are just a click away.Popular browsers offer specific image search option to quickly browse through art with a single keyword.Beside general use,computer photo editing programs and animation programs are also the sources behind most movies and professional photographs.

Since nobody answered, I'm gonna just try this again. I really need help with this so please-

Answers

Answer:

3.8

Explanation:

In Word, you can format the font, size, and alignment but not the color of text.

Answers

Answer:

You can change color of text as well.

Explanation:

It is false that in word one can format the font, size, and alignment but not the color of text.

What is text formatting?

In computing, formatted text, styled text, or rich text, as opposed to plain text, is digital text that contains styling information in addition to the bare minimum of semantic elements: colors, styles, sizes, and special HTML features.

Formatted text is text that is displayed in a specific manner. Formatting data may be associated with text data in computer applications to generate formatted text.

The operating system and application software used on the computer determine how formatted text is created and displayed.

In Word, you can change the font, size, alignment, and even the color of the text.

Thus, the given statement is false.

For more details regarding text formatting, visit:

https://brainly.com/question/766378

#SPJ2

Viewport: Fresh User Location: Outside of the Viewport What is the correct technique when measuring the distance of a result outside of the viewport?A. Measure from the outer edge of the viewportB. Measure to the center of the viewport (device icon)C. Measure to the User locationD. All of the Above

Answers

Answer:

The answer is "Option A".

Explanation:

It's also better and measures the distance returned to a viewport to accomplish the right angle from the result produced outside the viewfinder. Its reason for this is that the outer edge of a perspective is where all the perspective begins.

The Viewport is a new client location that is the outside of the Viewfinder that Calculates the distance with an external edge of a viewfinder from the outside of the viewfinder is a methodology.

What are important acronyms we use when we talk about the internet? this is for computer science.

Answers

Answer:

Lol

Brb

Btw

Gtg

Explanation:

I hope this helps

what is intellectual property rights law ?​

Answers

Intellectual property law deals with the rules for securing and enforcing legal rights to inventions, designs, and artistic works. Just as the law protects ownership of personal property and real estate, so too does it protect the exclusive control of intangible assets.

1.
List any five importance of environment health. Describe any two of
them briefly​

Answers

Answer:

The answer to this question is given below in this explanation section.

Explanation:

            "Environmental health"

The environment can be directly and indirectly impact our health and well being .Environmental health examines the interaction between the environmental and over health.

 Environmental health refers to aspects of human health that are determined by physical,chemical,biological,social and psycho social factors in the environment.

                "importance of environmental health"

Maintaining a healthy environment is central to increasing quality of life and years of healthy life. Globally 23% of all death and 26% of deaths among children under age 5 are due to preventable factors are diverse and far reaching.

Exposure to hazardous substance in the air,water,soil and foodNatural and technological disastersClimate changeOccupational hazardsThe built environment

climate change:

             Climate change includes both the global warming driven by human emissions of greenhouse gases,and the resulting large scale shifts in weather patterns.Through there have been previous period of climate change.

The built environment:

     The term built environment refers to the human made surroundings that provide the setting for human activity ranging scale from building and parks are green space to neighborhoods and cities can often include their supporting such as water supply and energy supporting.

True or False: Python code can include a script that returns the operating system platform
your code is running on with the .sys

Answers

True

import sys

print(sys.platfom)

This will print, to the console, which type of platform is running.

Which are Career and Technical Student Organizations? (Check all that apply.)
Business Professionals of America
American Association of School Administrators
American Chemical Society
DECA
Future Business Leaders of America
OFFA
Skills USA
FCCLA

Answers

Answer:

1,4,5,6

American Institute of Architects

American Medical Association

Screen Actors Guild

American Society of Mechanical Engineers

Explanation:

correct on edge

The culture of the Internet is interlinked in dependence between technological advances and the way in which ____.


humans increased personal capacity by using these advances

humans have become entirely dependent on digital technology

humans increased their processing knowledge with technology

humans have become interdependent on various technologies

Answers

Answer: humans increased personal capacity by using these advances.

Explanation:

The culture of the Internet is interlinked in dependence between technological advances and the way in which humans increased personal capacity by using these advances.

Technological advancement has to do with how information is being generated which brings about the improvement and inventions regarding technology.

Answer:

C) humans increased personal capacity by using these advances

Which of the following is not a type of application software?
A)Microsoft Office
B)Encyclopedias
C)Games
D)Windows 98

Answers

Answer:

windows 98

Explanation:

Answer:

I think the best answer would indeed be B.

Explanation:

B. Encyclopedias

Add a method reflect_x to Point which returns a new Point, one which is the reflection of the point about the x-axis. For example, Point(3, 5).Reflect_x() is (3, -5)

Answers

Answer:

Following are the code to this question:

class Point:#defining a class Point

   def __init__(self, x, y):#defining a constructor that takes three parameters  

       self.x = x#use self to hold x variable value

       self.y = y#use self to hold y variable value

   def Reflect_x(self):#defining a method reflect_x that hold object self

       return Point(self.x, (-1) * self.y)#use return keyword that return positive x and negative y value

   def __str__(self):#Use __str__ to convert object value into string  

       return "Point(" + str(self.x) + "," + str(self.y) + ")"#return string value

py = Point(3, 5)#defining a variable py that call class by passing the value  

reflect = py.Reflect_x();#Use variable reflect to hold Reflect_x value

print("P:", py)#print value

print("Reflection about x axis of p:", reflect)#print value

Output:

P: Point(3,5)

Reflection about x axis of p: Point(3,-5)

Explanation:

In the code, a class "Point" is declared, inside the class, a constructor is created that hold three-parameter "self, x, and y", and use a self to hold x and y values.

In the next step, a "Reflect_x" method is defined that uses a class object and converts the x and y values, and in the next step, the str method is used that converts an object value into a string and return its values.

Outside the class, a py variable is defined, that holds Point values and pass into the Reflect_x method, and prints its return values.

What is the 4w problem canvas?

Answers

Answer: Under problem scoping, we use the framework of 4Ws problem canvas where we look into the Who, What, Where and Why of a problem. ... The project cycle consists of 5 steps namely: problem scoping, data acquisition, data exploration, modelling and evaluation. Each of the stages holds importance in the framework.

Explanation:

In what order does the Cascade look at factors to determine which CSS rule to follow?

Answers

Answer:

In other words, the CSS rules can "cascade" in their order of precedence. Where the rules are located is one factor in the order of precedence. The location order of precedence is: browser default rules, external style sheet rules, embedded styles, and inline style rules.

What can help an interface user understand or navigate an online interface?​

Answers

Answer:

1. Add options and names.

2. Allow to provide back feedback.

3.Pay attention to patterns.

4.Stay consistent.

5.Use visual hierarchy.

Explanation:

Navigating an online interface describes how to move and locate features of an application software or program. He, some implementation which might aid easy navigation include ;

Adopting a simple User interface :

The use of a simple rather than a complex user interface will usually allow users get used to working with an application more easily.

Use of color and texture :

Color schemes may be adopted in other to aid segmentation of categorization of features or classes in other to make reasonable grouping of features or classes.

Visual hierarchy :

This describes logical and strategic arrangement of features or elements in such a way that users could easily grasp the pattern in the arrangement.

Learn more :https://brainly.com/question/20380750

Which TWO pieces of information does a TCP/IP data packet contain?

the source address
the destination address
its position in the series
the type of data it carries

Answers

The TCP/IP is an encrypted communication protocol that is used to communicate over the internet. The protocol was made by DoD and is multilayered.

The protocol under the OSI model consists of seven layers such as a physical layer, data link layer, network, transport layer, session presentation, and application layer. The TCP/IP layer packets consist of the head and body having source and data.

Thus the option A and D are correct.

Learn more about the 2 information which makes up the TCP/IP.

brainly.in/question/19565899.

HELP I WILL MARK BRAINLIEST TO CORRECT ANSWER ! VERY EASY
Which two things caused a demand for cotton?
sewing machine
carding machine
cotton gin
cotton mill

Answers

Answer:

Cotton Gil, And Cotton Mill

Explanation:

Answer:

It would be Cotton Gin and the Cotton Mill

Explanation:

The wrong answer is: Sewing machine- wasn't invented yet, Carding Machine- Wasn't invented yet.

Give the uses of Word’s mail merge.

Answers

Answer:

Mail Merge is a handy feature that incorporates data from both Microsoft Word and Microsoft Excel and allows you to create multiple documents at once, such as letters, saving you the time and effort of retyping the same letter over and over.

To transfer files to your company's internal network from home, you use FTP. The administrator has recently implemented a firewall at the network perimeter and disabled as many ports as possible. Now you can no longer make the FTP connection. You suspect the firewall is causing the issue. Which ports need to remain open so you can still transfer the files? (Select TWO

Answers

Answer:

Ports 20 and 21

Explanation:

For the FTP to work, there are two parts that are required; the command and the data.  These two parts are sent on the two ports 21 and 20 respectively.  If the firewall is indeed blocking connections on ports 21 and 20, then your FTP will not work.

Hence, you need to open ports 20 and 21 to allow FTP to remain functional.

Cheers.

Serena, an analyst at an environmental agency, wants to prepare a report using data from the Car Emissions database.
In her report she plans to include written analysis as well as circle graphs. To best complete this task, she can
O export the query results from the database to a spreadsheet, then export the graph to a document.
O export the query results into a word processing document, then import the graph into the same document.
O export the graph into a spreadsheet.
export the query into a word processing document.

Answers

Answer:

The correct answer is:

Option 1: export the query results from the database to a spreadsheet, then export the graph to a document.

Explanation:

Spreadsheets are used to represent numerical data, perform calculations and display the results numerically or graphically.

When using a database, the query results can be exported to other software using the query web address.

So in order to include the graph in her report, Serena will export the result to spreadsheet and then export the graph to document.

Hence,

The correct answer is:

Option 1: export the query results from the database to a spreadsheet, then export the graph to a document.

Answer:

the guy above me is correct and its a on edge

Explanation:

The three main parts of a computer are the CPU, Memory, and Motherboard Imagine you are explaining what a computer is to a kindergarten student. What analogy could you use to explain the hardware parts of a computer?

Answers

Answer:

the cpu is like your brain, the memory is like a library and the motherboard is like the roads in your town

If the active cell contains a formula, it will be shown on _______.

Answers

The answer would be: a formula bar

........ is used to move and select and move items on he computer screen and to give different commands to the computer.

Answers

Answer:

Isn't it the mouse?

Tell me if wrong. :) Hope it helps!

Explanation:

Why is a niche important in video production

Answers

Answers

You need a niche to start your recording for let's say commentary you'll need that for your commentary.

Answer:

A . A reviewer must be able to make changes to a presentation after an author creates it

When do I use while loops

Answers

Answer:

When you dont know how long the loop is going to run for

Explanation:

which of the following is a likely problem for a driver in an urban area? A. fame animals on the roads B.not finding a gas station

Answers

Answer:

D. Line of sight restrictions

Explanation:

The urban area is denser when it comes to the population of people compared to the rural area. This means that the traffic is heavy and there are many people crossing the streets. The buildings are also tall. These things block the person's view upon driving to his target destination. Therefore, he has many line-of-sight restrictions when driving in the city. He needs to be more careful in driving by using his mirrors in order to prevent accidents. Unlike in the countryside, the target area is usually visible to the sight of the driver.

Answer:

D. line of sight restrictions

Explanation:

Data collection begins only after completing the research design process. after determining whether there are any objections. whenever the researcher wants to. after creating the presentation format. after analyzing the data.

Answers

Answer:

Data collection begins only

after completing the research design process.

Explanation:

The nature of the research problem and design process provides the basis for data collection.  Data collection can be carried out from primary or secondary sources or both.  The collection system will indicate if the research is exploratory, descriptive, or conclusive.  Data collection provides an important way to understand the characteristics of the research interest.  A clear definition of the research interest is provided by a correct research question, which also provides focus and direction for the study.

Which of these number formats would you want to apply to a cell showing the total sales for the month? Currency, Number, or Percentage


I didn't know what to put it as because it is kind of business but its a question I have for a technology class

Answers

Answer:

Currency!

Explanation:

I hope this helped

The number formats that would you want to apply to a cell showing the total sales for the month is currency. The correct option is A.

What is currency?

Currency is the number format used to apply to the cell showing the total sales for the month. To display numbers as monetary values, they need to be structured as currency.

To do this, prepare the desired cells using either the Accounting number format or the Currency number format. Options for number formatting can be found under the Number group on the Home tab.

You can display a number with the default currency sign by choosing the cell or range of cells, then clicking the Accounting Number Format button in the Number group on the Home page. (Press Ctrl+Shift+$ after selecting the cells to use the Currency format.)

Therefore, the correct option is A, currency.

To learn more about currency, refer to the link:

https://brainly.com/question/22802393

#SPJ6

Other Questions
Which of the following is an example of a Power that the President of theU.S. has?O power to declare warO power to raise an almy and navyO power to calla special session of Congress in order to encourage certain legislationOpower to tax Layers of rock that bend can produce a downward fold known as a(n). c) Abus drives for 3/2hours at an average speed of 56 mph.How far does the bus drive? __________ are inappropriate behaviors that are discouraged because they typically violate the rules of society. andrew needs to call his 8 baseball teammates to make plans for a party at the end of the season if each call takes 5 minutes how much time will he spend making the calls?A. 1/3 hour B.40/100 hour C.2/3 hour D.3/4 hour Please help me with this one i will give brainliest to whoever answers first and it has to be correct and please provide an explanation The Mormons made a practice of taking land from the Indians and never paying for it Please select the best answer from the choices provided T F Determine how much timerequired for an investmentto double in value if theinterest is earned at a rateof 6.56%, compoundedQuarterly? Pick Best answer The graphs below have the same shape What is the equation of the blue graph? An alpha particle has twice the charge of a beta particle. Why does the former deflect less than the latter when passing between electrically charged plates, assuming they both have the same speed? The atmospheric pressure is highest at... What are the concrete nouns in Rudolph the red-nose reindeer song? Write the numbers 0,1,2,3,4,5,6,7,8,9 in this order and insert + or - between them to get the result -3 please help im begging you ill mark brainliest and like and 5 stars Can someone translate this into Spanish please. Selena Quintanilla was born on April 16, 1971, in Lake Jackson, Texas.Selena spoke english growing up but was taught spanish from herfather. Selena was a musician and her first album Ven Conmigo was the firstTejano record to achieve gold record status Selena had seven songs hitNumber one on the Hot Latin Songs Chart and also 14 songs there were inthe top 10. Selena was also shot and killed on March 31, 1995 by thepresident of her fan clubWhat made Selena so famous was her music and how it inspired people.What stood out was that Selena was considered the "Mexican Madonnabecause of her music. Also she won a grammy for the best Mexican-American album in 1993. Personally I don't listen to Selena much but my momloves her. PLZThe unit price of a T-shirt is $6.50 when purchased in a pack of 3. A single shirt costs $8. What is the least amount of money Sandy can spend to get 4 T-shirts? Four copies of the triangle shown are joined together, without gaps or overlaps, to make a parallelogram. measurements= 5cm, 13cm, 12cm What is the largest possible perimeter of the parallelogram? Peter and Angad win some money and share it in the ratio 4:1. Peter gets 28. How much did they win in total The manager of a grocery store estimates that 74% of customers will make a purchase. Part A: How many customers should a cashier expect until he finds a customer that makes a purchase? Part B: What is the probability that a cashier helps 3 customers until he finds the first person to make a purchase? Which statement best describes the epic feature used in this excerpt and its effect on the plot? A. The interference of the gods creates more tension and suspense in the plot. B. The use of poetic verse causes the narrative to become confusing. C. The long and difficult journey reflects how strong and enduring Gilgamesh is.D.The presence of a brave hero indicates that the challenge ahead will be simple. Steam Workshop Downloader