search engines use software that combs the web to find webpages and add new data about them to the database. what is this software called?a. spidersb. centipedesc. web searchersd. query handlers

Answers

Answer 1

Search engines use software called spiders that combs the web to find webpages and add new data about them to the database. Spiders are also known as crawlers, robots, or search engine bots, which constantly crawl the internet to find fresh content and links.

The search engines use software called spiders that searches the web to locate webpages and then adds new data about them to the database. Spiders are also known as crawlers, robots, or search engine bots, which constantly crawl the internet to find fresh content and links. They are automated software that follows links and collects the content from web pages and indexes it. Spiders are critical for search engines because they can crawl through enormous amounts of web pages and add the relevant information to the search engine's database. The web searchers are the people who perform a search on the search engine, while the query handlers are software applications that respond to users' search queries.

To learn more about Search engines, visit:

https://brainly.com/question/32419720

#SPJ11


Related Questions

What is the minimum ethernet frame size that will not be discarded by the receiver as a runt frame?.

Answers

Answer:

64 bytes

Explanation:

decimal numbers is equivalent to binary 110

Answers

Answer:

yes it is

Explanation:

binary number is 1101110

Kris is the project manager for a large software company. Which part of project management describes the overall project in detail? Analysis report Resources document Scope Scope creep

Answers

Answer:

The given option "Resource document" is the correct answer.

Explanation:

Whenever it applies to chronology as either the documentation a resource records collection of specific documents should indeed be regarded as a component of this kind of record. The resource component encompasses a series of proclamations provided by the researcher including its memorandum, and therefore is willing to take responsibility for each other by the very same body is nonetheless accountable again for the file.

The remaining three options do not apply to something like the specified scenario. And the latter is the correct one.

Answer:

Resource document

Explanation:

what appears next to a cell with data validation to indicate the type of data to enter in the cell? question 20 options: heading title input message asterisk

Answers

Data Validation Error Messages and Input Messages

What are Data Validation Error Messages

When the user selects the cell, you can decide whether to display an input message. Input messages are typically used to instruct users on the kind of information you want them to enter in the cell. This kind of message pops up close to the cell.

When incorrect data is typed into cells with data validation turned on but the error alert is off, both sampling error and non-sampling error can have an impact on data.

Learn more about Data Validation here:

https://brainly.com/question/29976983

#SPJ1

MS Excel is word processing software true or false​

Answers

Answer:

Explanation:

Microsoft Excel is a spreadsheet program used for calculations, making charts and recording data about all sorts of business processes.

Answer:

false

Explanation:

Microsoft Excel is a spreadsheet program used for calculations, making charts and recording data about all sorts of business processes.

In a _error,solution is working but not giving required results

Answers

Answer:

it is a random error

Explanation:

I HOPE THAT THIS ANSWER HELPS YOU

What might you see by turning a surface model to a certain angle? *


PLEASE HELP!!! THANK U SO MUCH! GOD BLESS!

What might you see by turning a surface model to a certain angle? *PLEASE HELP!!! THANK U SO MUCH! GOD

Answers

Answer:

Turning a surface model to a certain angle can control whether or not you it can go right or left :)

Explanation:

a user of a database such as that pictured in the accompanying figure refers to a field as what

Answers

In the context of a database, a user refers to a "field" as a specific data attribute or element within a record.

Fields are used to organize and store information within a database, which consists of multiple records (rows) and fields (columns).

Fields can represent various types of data, such as text, numbers, dates, or even images, depending on the requirements of the database system.

A well-structured database enables users to efficiently access, manipulate, and analyze the stored data by using fields to categorize and filter information.

Learn more about database at

https://brainly.com/question/13084792

#SPJ11

After the computer process the data, the result is first save in

Answers

Answer:

Answer

Saved In Computer

A store sells a product of 25 cents each for small orders or 20 cents for orders of 50 or more. Write a program to request the number of items ordered and display the total cost

Answers

This Python program prompts the user to enter the number of items ordered and calculates the total cost based on the pricing scheme.

Python program that calculates the total cost based on the number of items ordered:

```python

num_items = int(input("Enter the number of items ordered: "))

if num_items < 50:

   total_cost = num_items * 0.25

else:

   total_cost = num_items * 0.20

print("Total cost:", total_cost)

```

This program prompts the user to enter the number of items ordered using the `input()` function. The input is converted to an integer using `int()` and stored in the variable `num_items`.

Next, the program checks if the number of items is less than 50 using an `if` statement. If it is, it calculates the total cost by multiplying the number of items by $0.25 and assigns it to the variable `total_cost`.

If the number of items is 50 or more, the program enters the `else` block and calculates the total cost using the discounted price of $0.20 per item.

Finally, the program uses the `print()` function to display the total cost to the user.

learn more about program prompts here:

https://brainly.com/question/13839713

#SPJ11

Bruce needs to have a drive to rerecord data on the used DVD

Answers

Answer:

DVD- RW

Explanation:

Based on what you know about color coding of memory slots on a motherboard and for optimal memory performance, which memory configuration is correct assuming there are four slots on the motherboard?

Answers

The correct memory configuration for optimal performance on a motherboard with four slots would be to populate the slots using color coding.

When it comes to memory slots on a motherboard, they are often color-coded to indicate memory channel configuration. Typically, memory slots of the same color belong to the same memory channel. To achieve optimal memory performance, it is recommended to populate the memory slots in a balanced manner, ensuring an even distribution across memory channels. In a four-slot configuration, if the slots are color-coded, you would want to install the memory modules in matching colors.

This ensures that the memory operates in dual-channel or quad-channel mode, maximizing memory bandwidth and performance. By following the correct memory configuration based on the color coding, you can ensure efficient utilization of memory channels and achieve the best possible memory performance on your motherboard.

You can learn more about motherboard at

https://brainly.com/question/12795887

#SPJ11

Ethan's family member pays for new systems software. Which of the following would best protect Ethan's laptop?
thumb drive
O anti-virus software
O photo-editing software
O a microphone
O thumb drive

Answers

Answer:

Anti-virus software

Explanation:

The reason being, if Ethan downloaded any files/extensions that aren't 100% safe, they might result in virus(es), if the proper protection for the software isn't in play.

Answer:

A

Explanation:

Question 12 What will the following code segment display? enum Season (Spring, Summer, Fall, Winter) favoriteSeasons favorite Season - Summer; cout << favorite Season; 1 02 Summer "Summer" None of these.

Answers

The following code segment will display "Summer". This is because the code defines an enumeration called "Season" with four possible values: Spring, Summer, Fall, and Winter. It then creates a variable called "favorite season" of type "Season" and assigns it the value "Summer".

Finally, it uses the "cout" function to display the value of "favorite season", which is "Summer".

Therefore, the correct answer is "Summer".
The given code segment has some syntax issues, so I'll provide a corrected version to help you understand it:

```cpp
#include
using namespace std;

enum Season {Spring, Summer, Fall, Winter};
int main() {
   Season favorite Season = Summer;
   cout << favorite Season;
   return 0;
}
```

When this corrected code segment is executed, it will display "1". This is because the `enum` values are assigned integer values starting from 0 by default, and "Summer" is the second value in the enumeration (with "Spring" being 0).

learn more about enumeration here: brainly.com/question/13068603

#SPJ11

The ______ is an optional key that may be present on any PIV card, does not require PIN entry, and whose purpose is to authenticate the card and therefore its possessor.

Answers

Answer:

CAK

Explanation:

Card Authentication Key

A beam of electrons accelerated in an electric field is passing through two slits separated by a very small distance d and then hits a screen that glows when an electron hits it. The potential difference is v. Assume the distance from the slits to the screen is l.

Answers

The double-slit experiment is a display in modern physics that light and matter can demonstrate characteristics of both classically defined waves and particles; additionally, it demonstrates the fundamentally probabilistic nature of quantum mechanical phenomena.

what is double-slit experiment?

Thomas Young first performed this type of experiment in 1802, as a demonstration of visible light's wave behavior.

Light was thought to be made up of either waves or particles at the time.

If the viewing distance is greater than the slit separation (the far field), the phase difference can be calculated using the geometry.  The path difference between two waves traveling at an angle is calculated as follows:

\(dsin\theta = d\theta\)

To know more about Quantum, visit: https://brainly.com/question/28034280

#SPJ4

Design a webpage on Artificial Intelligence /Augmented Reality. please help me out with these computer programming

Answers

Answer:

Using HTML, CSS, and Javascript to create the layout, style it, and program the blog's interactivity respectively. Or use Wordpress without codes.

Explanation:

Designing a blog or a website requires certain knowledge or tools. Programmers use tools like HTML, CSS, Javascript, and other front-end libraries and back-end web frameworks. HTML is used to mark-up the web layout, CSS is used to style beautify the page while Javascript is used to make the page interactive.

Other tools like Wordpress requires little or no skill, since the layout of the webpage is drag and drop and other back-end features can be programmed to it.

The physical things you can touch that make up a computer

Answers

The physical things you can touch that make up a computer are monitor, mouse, keyboard, and CPU.

What is computer?

A computer can be defined as an electronic device which accepts data, processes data and brings out information known as results.The computer is used to type and edit different forms of documents like word, PDF and Excel.

A computer can be used to perform business transactions online. It is used by both sellers and buyers to market and purchase product respectively.A computer can be used to play music, watch movies and play games.

Therefore, The physical things you can touch that make up a computer are monitor, mouse, keyboard, and CPU.

Learn more about CPU on:

https://brainly.com/question/16254036

#SPJ1

Select the correct answer.

Max has been running a general store for over 50 years. He uses his computer to maintain Inventory and a landline telephone to communicate
with his suppliers. Max's granddaughter suggests that he needs a device that is capable of doing both of these tasks. Which device does Max
need?

A radio
В.HD television
C smart phone
D. telephone

Answers

Answer:

D. smart phone

explanation;

a. what the heck is a radio going to do?

b. an HD television? is his job watching movies?

d. he already has a form of communication he uses, he needs something that can to both things at the same time

c. a smart phone can do everything he needs to do, likely faster than a landline phone or laptop.

Which page layout is most commonly used for a website with a large navigation menu?

Answers

Explanation:

The Name is called, (navigation menu..)

to direct users 2 info., they look up...

what do raichle's default mode network and corbetta's ventral attentional network have in common?

Answers

Answer: voluntary deployment of attention and the reorientation to unexpected events

Explanation:

Raichle's Default Mode Network and Corbetta's Ventral Attentional Network both have in common that they are large-scale brain networks involved in cognitive processing and attentional functions.

They are both activated in the human brain when people are at rest and not involved in any specific task. The default mode network is involved in self-reflection, introspection, and mind-wandering. On the other hand, the ventral attentional network is responsible for detecting and reacting to sensory stimuli that have significant emotional, social, or motivational implications.

Both these networks have been associated with cognitive flexibility and creativity. They work together to coordinate human behavior and maintain a balance between internal and external stimuli.

Learn more about brain networks: https://brainly.com/question/29669975

#SPJ11

what makes up data encryption standard ?

Answers

Answer:

Data Encryption Standard Use Cases. The DES was a data security standard used to encrypt and decrypt non-classified computer data generated by the United States government and any commercial organization. The Data Encryption Standard (DES) is a symmetric-key block cipher published by the National Institute of Standards and Technology (NIST). ... Note that both the right section and the key are 48-bits in length. Also note that the round key is used only in this operation. The DES is a product block cipher in which 16 iterations, or rounds, of substitution and transposition (permutation) process are cascaded.

Explanation:

If this helps can i have brainliest

When the user types into a Textbox control, the text is stored in the control's __________ property.

Answers

The property that stores the text a user types into a Textbox is called the: control's text property.

The Textbox Control

The Textbox Control is employed in display a text or accept the text as an input from a user. Also, single line of text can be accepted as input at runtime from a VB.NET Windows.

The text that displays on the Textbox can also be set. The control's text property therefore stores the text a user types into Textbox.

In conclusion, the property that stores the text a user types into a Textbox is called the: control's text property.

Learn more about Textbox Control on:

https://brainly.com/question/5677552

Although two-dimensional arrays are a novel idea, there is no known way to pass one to a function.


a. True

b. False

Answers

The statement "Although two-dimensional arrays are a novel idea, there is no known way to pass one to a function" is false.

Therefore the answer is b. False.

Two-dimensional arrays can be passed to functions in programming languages. A two-dimensional array is a data structure that stores elements in a grid, consisting of rows and columns. It is essentially an array of arrays, where each element is uniquely identified by a pair of indices - one for the row and one for the column.

In programming, two-dimensional arrays are commonly used to represent matrices, tables, or grids. The elements within the array can be of any data type, including integers, characters, strings, or even other arrays.

Learn more about Two-dimensional arrays here:

https://brainly.com/question/26104158

#SPJ11

In which way is a copper cable related to a wireless transmission

Answers

Answer: whats the answer choices

Explanation:

Shifting elements in an array

In many ordered collections that are implemented based on arrays, a major issue is the cost associated with shifting elements to the right when adding and to the left when removing.

For example, let's say that we're implementing a list that keeps its elements in natural order using an array using our familiar "left justified" strategy. If the array has capacity 10 and the list contains the first five odd integers, then the array would look like this:

[1, 3, 5, 7, 9, _, _, _, _, _]

Adding the value 4 to the list would require elements 5, 7, and 9 to be shifted to the right

[1, 3, _, 5, 7, 9, _, _, _, _]

to make room for the 4 to be added in natural order:

[1, 3, 4, 5, 7, 9, _, _, _, _]

You must complete the body of the shiftRight method to implement this behavior. Below are examples of various calls to shiftRight with the array parameter shown before and after the call.

Answers

To shift elements in an array, you will need to move each element to the right or left based on the operation you want to perform. This can be a costly operation, especially when working with large arrays.


To shift elements to the right in an array, you will need to start at the end of the array and move each element one position to the right until you reach the desired position where you want to insert a new element. This process can be achieved by using a for loop that starts from the last index of the array and iterates until the desired position is reached. Once the desired position is reached, you can insert the new element at that position.
Here is an example implementation of a shiftRight method:
```
public void shiftRight(int[] arr, int index, int value) {
   for (int i = arr.length - 1; i > index; i--) {
       arr[i] = arr[i - 1];
   }
   arr[index] = value;
}
```
This method takes three parameters: the array to shift, the index where the new element should be inserted, and the value of the new element to insert. The method then shifts all elements to the right of the index one position to the right, and inserts the new element at the index position.With this method, you can shift elements to the right in an array without having to manually shift each element yourself.

Learn more about operation about

https://brainly.com/question/29949119

#SPJ11

What is the MAIN purpose for including a foil in a story?

Answers

Answer: reveal information about characters and their motivations

Explanation: to show data about the person to know if the person is mean or happy small or tall and more stuff and to say if they want to save the turtles or trees

domain expertise and text, numeric, and visual data are all inputs to what phase of the spiral methodology for the data mining process?

Answers

Domain expertise and text, numeric, and visual data are all inputs to engineering phase of the spiral methodology for the data mining process.

What is spiral methodology?

One of the most crucial models for the Software Development Life Cycle that supports risk handling is the spiral model. It appears to be a spiral with numerous loops when represented diagrammatically. The spiral's exact number of loops is unknown and varies from project to project.

A phase of the software development process is referred to as each loop of the spiral. The project manager can alter the precise number of phases required to develop the product depending on the project risks.

The project manager plays a crucial role in the spiral model of product development because they dynamically decide how many phases there will be.

Learn more about spiral model

https://brainly.com/question/18369405

#SPJ4

Who used the term" software" first?

Answers

The answer is John W. Tukey

hope this helps ^ ^

John W. Tukey
The first published use of the term "software" in a computing context is often credited to American statistician John W. Tukey, who published the term in "The Teaching of Concrete Mathematics," American Mathematical Monthly, January 9, 1958.

What is the output of this program? age = 4 if age > 5: print("more") else: print("less") Output:

Answers

Answer:

less

Explanation:

The program is age = 4 if age > 5: print("more") else: print("less"). The age is less than 5, so the output will be less.

What is a program?

"The program can also be expressed as a binary code, but expressing it in a higher programming language makes it easier for people to grasp."

The only language that the computer understands is binary, which is just a version of 0 and 1, but the user cannot understand binary. It will translate into highly understandable language for the user.

Programming that is designed using an object-oriented approach does so in order to achieve the desired goal.

Data input is required for programs. The program uses (processes) this data, and as a result, data (or information) is output.

Therefore, the output will be less.

To learn more about the output of the program, refer to the below link:

https://brainly.com/question/18079696

#SPJ5

Other Questions
Select all the ratios that are equivalent to the ratio 12:3 Every school day, Mr. Kelley asks a randomly selected student to complete a homeworkproblem on the board. If the selected student received a "B" or higher on the last test, thestudent may use a "pass," and a different student will be selected instead. Suppose that onone particular day, the following is true of Mr. Kelley's students:18 of 32 students have completed the homework assignment8 students have a pass they can use and6 students have a pass and have completed the assignment.What is the probability that the first student Mr. Kelley selects has a pass or has completedthe homework assignment? Complete the punnet square.If we were to cross a heterozygous mouse with a homozygous recessive mouse, what would the probability of offspring genotypes be ? Fill in the PERCENTAGE of the probability for EACH GENOTYPE on your show your work worksheet . If you were to describe a translation of triangle , what information would you need to include in your description? Adelaide does not own a computer, has no idea how to work one, and claiming no interest in technology.O claimingO a claim toO claimsO claimed This is the question I need help with explaining to a young boy why officers are more likely to make arrests when they see a weapon and more likely to handle the offense as they see fit if the altercation isn't serious describes issues that fall under which factor of discretion? Collaboration between the therapist and the patient known as __________ is important to achieve in order for treatment to be successful. a. therapeutic bond b. eclectic therapy c. psychotherapy d. clinician comfort level Equilibrumof poverty A 255-inch board is cut into two pieces. One piece is four times the Length of the other. Find the length of the shorter piece What is the independent variable (IV)?either lying or not lyingthe observer's aggressiveness ratingswhether or not the students normally lie in their everyday livesthe schools that were chosenusing fourth graders variable, and a,b be constants. Use properties of integration/summation to show that: E(aX+b)=aEX+b Consider both the discrete and continuous cases. Suppose the Bank of Canada sells bonds. We can expect this transaction to:Select one:a.reduce the money supply, increase bond prices, and lower interest rates.b.increase the money supply, lower bond prices, and lower interest rates.c.increase the money supply, raise bond prices, and lower interest rates.d.reduce the money supply, reduce bond prices, and raise interest rates. The product of t decreased by 4 and 8 more than tSymbolic form:This represents a mathematical Select an answer Which number line model represents the expression -2/5 + 4/5 Calculate the third longest wavelength in the balmer series a chemist fills a reaction vessel with aluminum hydroxide solid, aluminum aqueous solution, and hydroxide aqueous solution at a temperature of . under these conditions, calculate the reaction free energy for the following chemical reaction: use the thermodynamic information in the aleks data tab. round your answer to the nearest kilojoule. What types of stories does Jackson have a reputation for writing, and what is the general theme of many of these stories? Artis Moore owns a small company that details cars. He is trying to sell his services to a company that rents cars and vans. As he talks to the rental company owner who makes all purchasing decisions, Moore is trying to convince her that his detail services will benefit the company. He is also endeavoring to show how it is more efficient to outsource the cleaning of the cars rather than do it in-house. As Moore talks about the benefits, he is trying to make sure that the job will add to the profitability of the detailing business before he commits himself to a contract. Moore is engaged in: I need help with this