A web feed:

A. runs a ticker tape of all your friends' comments on a social
networking site.
B. lists all the activity and postings that are occurring on a website.
C. alerts news watchers of a breaking story they can watch on TV or
online.
D. notifies users that new content has been added to a specific
website.

Answers

Answer 1
The best answer is D
Answer 2

Web feed notifies users that new content has been added to a specific website. Then the correct option is D.

What is a web feed?

The frequent regular update of the content or information given to the user through data format is known as a web feed.

It notifies users that new content has been added to a specific website.

Thus, the correct option is D.

More about the web feed link is given below.

https://brainly.com/question/11319715

#SPJ2


Related Questions

Define the html code to insert a heading
and
paragraph about yourself using head
ing and paragraph.​

Answers

Answer:

okay so,bruedbure

Explanation:

yedhuji r4uh 4tuh t4gyi gu4h gtuh4tgr

A _is a short descriptive label that you assign to webpages, photos,
videos, blog posts, email messages, and other digital content so that it is
easier to locate at a later time. It is also the name for part of a coding
element in HTML. *

Answers

Looks like you already answered your question? It’s the a tag ()

An algorithm can have an output and an outcome
A) True
B) False

Answers

I believe it’s false 99%sure

PHOTOSHOP IS A GRAPHICS EDITING PROGRAM CREATED WITH IMAGES KNOWN AS________ ​

Answers

Answer:

Adobe

Explanation:

The current calendar, called the Gregorian calendar, was introduced in 1582. Every year divisible by four was declared to be a leap year, with the exception of the years ending in 00 (that is those divisible by 100) and not divisible by 400. For instance, the years 1600 and 2000 are leap years, but 1700, 1800, and 1900 are not. Write a program that requests a year as input and states whether it is a leap year. (Test the program on the years 2008, 2009, 1900, and 2000.)

Answers

Solution :

Public Function Is a Leap_Year(Year As_Integer) As Integer

'Dim Tor_F for local variable declaring if value is t/f.

Dim TorF As For Boolean

'Pre conditions: Year > 1581 and Year < 3000

If Year > 1581 And Year <> 1700 Or 1800 Or 1900 Then

IsLeapYear = Year / 4

Else

IsLeapYear = False

TorF = False

End If

End Function

1- In MIPS, all operation codes (op-codes) use ______ only.

A- 5 bits
B- 8 bits
C- 6 bits
D -32 bits

Answers

Answer:

the answer is -32

Explanation:

The answer is D -32bits

set screw compression and indenter are all types of
a. compression couplings.
b. threaded connectors.
C. rain-tight fittings.
D. threadless connecters and couplings.

Answers

nAnswer:

A.

Explanation:

The compression couplings can be defined as a set of screw, compression, and indenter. A compression fitting is a type of coupling used to connect pipes. A compression couplings is used to connect fixtures and tubings.

It contains screw, compression, and indenter. Therefore, option A is correct answer.

Answer:

dude above me capping its threadless connectors stay strong king

Explanation:

classified Computer by their age​

Answers

Answer:

The answer is below

Explanation:

Classification of computers by age are the following:

First generation from 1940 to 1956. For example, ENIAC using a vacuum tube

Second generation from 1956 to 1963. For example, IBM 7070 using transistor

Third generation from 1964 to 1971. For example, this type of computers use an Integrated circuit

Fourth generation from 1972 to 2010. For example, IBM 5100 using a microprocessor.

Fifth-generation from 2010 to present For example IBM Watson, using Artificial intelligence.

what is the difference between internet and intranet​

Answers

Answer:

The internet is a globally connected networks of computers that enables people to share information and communicate with each other.

An intranet is a local or restricted network that enables people to store, organize and share information within an organization

Messages that have been accessed or viewed in the Reading pane are automatically marked in Outlook and the message subject is no longer in bold. How does a user go about marking the subject in bold again?

Mark as Read
Flag the Item for follow-up
Assign a Category
Mark as Unread

Answers

Answer:

Mark as Unread

Explanation:

I just know

Answer:

D. Mark as Unread

Explanation:

Edg. 2021

What is the index of 7 in this list?
[5, 6, 10, 7, 3, 2.51]

Answers

The index of 7 is 3.

This is a straightforward technique for creating index numbers. In this, the sum of the prices for various commodities in the current year is divided by the corresponding base year price total, and the result is multiplied by 100. p = the sum of prices for the same commodities in the base year. (in Rs) 0 p (in Rs.) Thus option E is correct.

What are the index of number?

In mathematics, an index (or indexes) is the power or exponent that is added to a number or variable. For instance, the index of 2 in the number 24 is 4. Indexes is the plural form of the word. Constants and variables are concepts found in algebra.

A statistical tool for determining the amount of changes in a group of connected variables is an index number. It is derived from diverging ratios, from which it depicts the overall trend. It is a measurement of the normal change in a group of related variables between two distinct scenarios.

Therefore, 3 is the index of 7 in this list.

Learn more about index here:

https://brainly.com/question/4692093

#SPJ2

Your colleague developed a function, which is supposed to reverse an array of integers, e.g., {1, 5, -10, 7, 23} => {23, 7, -10, 5, 1}. Test cases show that the function does not work correctly. Please look at the following code and identify all the troubles. Please specify which part(s) of the code will not work and explain why not.

void ReverseArray(int arr[], size_t elements_no) {
size_t i = 0; int x = 0; for (i = 0; i <= elements_no; i++)
{ x = arr[i]; arr[i] = arr[elements_no - i]; arr[elements_no - i] = x; }

}

Answers

Answer:

The parts of the code which makes the program not to work properly is:

1. for (i = 0; i <= elements_no; i++)

2. arr[i] = arr[elements_no - i];

3. arr[elements_no - i] = x;

The correction of the above lines are:

1. for (i = 0; i <= elements_no/2; i++)

2. arr[i] = arr[elements_no - i-1];

3. arr[elements_no - i-1] = x;

Explanation:

It should be noted that the code end up not reversing the array. This happens because the programmer iterates through all the array elements.

i.e.

1. for (i = 0; i <= elements_no; i++)

This will result in the original array.

To solve this problem, the iteration has to stop at the middle element and the correction is:

1. for (i = 0; i <= elements_no/2; i++)

Also, to swap the individual elements 1 has to be subtracted from each array index. So, the following lines:

2. arr[i] = arr[elements_no - i];

3. arr[elements_no - i] = x;

is corrected to:

2. arr[i] = arr[elements_no - i-1];

3. arr[elements_no - i-1] = x;

See attachment for complete corrections

Other Questions
HELPPP MEEEEEEEwith this math How do constitutions impact the powers of government?a. The prevent governments from changing over timeb. They increase the military powers of governmentsC. They prevent governments from having too much powerd. They decrease the power of citizens within their governments Please help. Cesium-137 has a half-life of 30 years. Identify the amount of cesium-137 left from 150 milligram sample after 120 years. 1.325 mg 0.9375 mg 9.3750 mg 1.097 mg i need help...................... why was Philip Nolan called "the man without a country"? 3y=4.8 (I'm so confused it isn't even funny) I will mark you as brainliest!!What is stock turnover?A. How long customers have own the products they've purchasedB. How quickly inventory sellsC. How much it costs to keep inventoryD. How the stock market affects inventory The record time for the girls' 50-meter free style swimming competition is 24.49 seconds. Camilla has been training and wants to swim the 50-meter free style in less time. What are some possible times Camilla would have to swim to break the current record? Solve this problem any way you choose. A worker spent 3/4 of his monthly salary on food and 1/2 of the remainder on rent if he has 1500 left how much does he earn in a month pls answer quick asdasdasdsad which letter on the diagram refers to the U.S Sepreme Court 27 POINTS!!!!!!!!!!!!! PLEASE!!!! According to Wikipedia, the average weight of an adult male in the U.S. is 197.7 pounds with a standard deviation of 18 pounds, while the average adult female weighs 168.7 pounds with a standard deviation of 15 pounds. Both weights vary according to a Normal distribution.7.) If you randomly selected one adult woman, what is the probability that her weight exceeds (is higher than) 130 pounds?Suppose you randomly selected one adult male and one adult female from the entire U.S. population. Let the variable D = the difference in their weights (male female).8.) Calculate and interpret the mean of D.9.) Interpret your answer from #8 in context.10.) Calculate the standard deviation of D.11.) Calculate the probability that the randomly selected male would weigh less than the randomly selected female. 79.2 is what percent of 110? convert 3 * 10 raise to power 8 m per second to kilometres per hour Hillary measured the depth of the snow in her front yard for 7 days. An equation for the line of best fit for Hillarys data is y = 0.5 x + 8 . Let x represent the number of days. Let y represent the depth of the snow in inches. Which statement BEST describes the meaning of the slope in this equation? A. The depth of the snow increased 8 inches per day. B. The depth of the snow increased 0.5 inch per day. C. The depth of the snow decreased 0.5 inch per day. D. The depth of the snow decreased 8 inches per day. Minta wants to increase the heat transfer between a metal iron and another piece of metal he wants to see if he decides to increase the time the two metals are in contact use a large larger metal iron and use the new metal material from a higher specific heat Write at least 3 different things you think about when you think about life ? A jogger ran 6 miles due east of his house. Then he ran 4 miles at a heading of 30o East of North (or 30o NE). How far is he from his house after running 10 miles? mrs. washington's class has x student. Three-fourths of these students like pizza.If 21 students in the class like pizza, which equation can be solved to determine the number of students in the class?A. 21x = 3/4B. 21x = 4/3C. 4/3x = 21D.3/4x = 21