In what year was the earliest documented use of the word computer?.

Answers

Answer 1

Answer:

1613

Explanation:

referring to a person who carried out calculations, or computations, and the word continued to be used in that sense until the middle of the 20th century. This means that at first, "a computer" was a "person".


Related Questions

In an array, the element is ______________________________. group of answer choices all of the data stored in the array the location of an individual piece of data in the array an individual piece of data stored in the array the dimensions of the array

Answers

Answer:

An individual piece of data stored in the array

Explanation:

what would be the effect of an addition or a deletion of one of the bases in a codon?

Answers

Answer: When a nucleotide is wrongly inserted or deleted from a codon, the affects can be drastic. Called a frameshift mutation, an insertion or deletion can affect every codon in a particular genetic sequence by throwing the entire three by three codon structure out of whack.

Explanation:

You will participate in a Discussion Board with your peers to express your ideas on the unit topics. In this Discussion Board, prepare a post based on the following.

After reviewing your work for Unique Physique, the owner would like your input regarding the future of the company. In two or more paragraphs, provide your thoughts on the trends and forecasts possibilities for the gym. Also, discuss the benefits of producing the flyer for the business, what affects the presentation will have on the business, and which products can be expanded to increase profits.

Respond thoughtfully, then comment on some of the entries of your classmates. Be respectful to others. Refer to the Discussion Rubric for guidance.

Answers

The current trends and forecasts possibilities for the gym are:

Home exercise gym. .Strength training that is made up of free weights.Personal Training, etc.

What is the future of fitness?

Exercise, health and wellness  is one that is often been transformed and as such, gyms providers of fitness need to upgrade themselves both inside and outside their walls and thus make a change that can reach new customers.

Note therefore,  The current trends and forecasts possibilities for the gym are:

Home exercise gym. .Strength training that is made up of free weights.Personal Training, etc.

Learn more about gym from

https://brainly.com/question/1365564

#SPJ1

A company organizes all of its client database in order of the amount of money that the account is worth. When a new account is added, it is placed in the correct order in the database based on the worth of the account. Which classic algorithm would be best suited to perform this function

Answers

Answer:

The addition and count algorithm

Explanation:

The classic algorithm that would be best suited to perform this function is the insertion sort algorithm. The correct option is 2.

What is insertion sort algorithm?

Insertion sort is a simple sorting algorithm that is useful for sorting small databases because it is efficient for small datasets.

Iterating through an array or list and inserting each element into its proper position in the sorted sequence is how it works.

The database is sorted in this scenario based on the amount of money the account is worth. When a new account is added, it must be placed in the appropriate position in the sorted sequence.

Insertion sort can insert a new account into its correct position in the database while keeping the sorted order.

Thus, the correct option is 2.

For more details regarding insertion sort algorithm, visit:

https://brainly.com/question/13326461

#SPJ2

Your question seems incomplete, the probable complete question is:

A company organizes all of its client database in order of the amount of money that the account is worth. When a new account is added, it is placed in the correct order in the database based on the worth of the account. Which classic algorithm would be best suited to perform this function

Linear/Sequential Search Insertion Sort Selection Sort None of these

How could you share the original text to a co-worker and provide the hash for them to verify that nothing has been altered in the original text

Answers

The original text can be shared to a co-worker through the use of sender's private key.

What is sender's private key?

Digital signatures is one that make use of the sender's private key to encrypt any kind of given hash.

Note that Hashing can tell that data that has not changed in  the act of transmission and the original text can be shared to a co-worker through the use of sender's private key.

Learn more about private key from

https://brainly.com/question/15346474

#SPJ4

The logo for Ask search engine​
and pls no links

Answers

Answer:

Explanation:

hope it helps

After selecting the entire document what is the quickest way.

Answers

Answer:

The Quickest way to what I will re-answer the question once you clarify this

Explanation:

???????????????

Discuss the variety of shapes and sizes in which cases come for desktops, laptops, tablets, smartphones, portable media devices, and game consoles.

Answers

Modern computers are comes in a multitude of designs, sizes, and designs. There is a computer form to suit each use, whether it's a massive tower under a desk or a small brick the size of, well, a brick.

How is a laptop different from a desktop?

A desktop uses an external monitor, keyboard, and mouse to be used at work or at home, whereas a laptop has all of these components integrated in and can be easily transferred as a single device that can be used in a number of locations.

Thus, Modern computers are comes in a multitude of designs, sizes, and designs.

For more information about laptop different from a desktop, click here:

https://brainly.com/question/19340665

#SPJ1

A____
interprets an audio or video signal and compresses it.
Codec
Frequency
Bit rate
RGB

Answers

Answer:

Codec

Explanation:

A codec (encoder/decoder) is a piece of hardware or software that interprets an audio or video signal and compresses it.

HOPE THIS HELPS AND HAVE A NICE DAY <3

Given a sorted list of integers, output the middle integer. a negative number indicates the end of the input (the negative number is not a part of the sorted list). assume the number of integers is always odd.
ex: if the input is: 2 3 4 8 11 -1
the output is:
middle item: 4
the maximum number of inputs for any test case should not exceed 9. if exceeded, output "too many numbers". hint: first read the data into a vector. then, based on the number of items, find the middle item. 276452.1593070
(must include vector library to use vectors)

Answers

inputs=[]

num_inputs=int(input())

if(num_inputs>9):

   print("Too many inputs")

else:

   print(num_inputs)

   for i in range(num_inputs):

       inputs.append(input())

   print(inputs)

   middle_position=int(num_inputs/2)

   print(inputs[middle_position])

What's the best way to handle batteries when they become waste


Answer- Recycle them

Answers

Answer:

hi

what is the question in this?

you have already answered it yourself

True or false. The send e-mail feature, listed under tools, will allow you to send an e-mail to your instructor and to fellow students directly from your online course in blackboard.

Answers

Answer:

TRUE

Explanation: please mark me brainliest

When you are framing the questions you will use data analytics to answer, what is the key to how you frame your questions?

Answers

When you are framing the questions you will use data analytics to answer, the key to frame the question is make it more specific to get a specific reply.

What are analytics questions?

Analytical questions are the questions that are asked about the person, the questions can be asked in an interview.

Analytical questions are where you have worked?, what you think about yourself, etc.

Thus, the key to frame the question is to make it more specific to get a specific reply.

Learn more about analytics questions

https://brainly.com/question/3988337

#SPJ1

You are creating a function that will test whether a number is greater than 10 using these lines of code:
if a < 10:
print(a "is greater than 10")

can you identify one syntax error and one logic error in these lines? why do you think a programmer might have made the logic error?

Answers

Answer:

There is no indentation on the second line -  Python needs indentation for if statements to work

The if statement is incorrect - We want the if statement to check if a is greater than 10 not less than 10

A programmer might have made this error by confusing the less than and greater than signs

(I'm assuming this is python)


Elaine wants to create a program based on the following algorithm. What data types will she use for the variables?
1. Start.
2. Read number x from the user.
3. Read list of ages age from the user.
4. Display the age at the x position in the list age].
5. Stop.
to store variable x (for example 1, 4, 7), and she can use
She can use a[n)
example 24, 53, 21).
to store list age] (for

Answers

The data types that she  will use for the variables are:

Numeric Data TypeStrings

What are Data Types?

In Programming, there is the use of a lot of numbers that is made up of different data types.

Note that A data type helps one to know what type of value an object can have and the operations that needs to be performed and as such, The data types that she  will use for the variables are:

Numeric Data TypeStrings

Learn more about  data types from

https://brainly.com/question/179886

#SPJ1

CODEHS: WHY is it important to know the difference between div and span?

Answers

Span and div are both generic HTML elements that group together related parts of a web page. However, they serve different functions. A div element is used for block-level organization and styling of page elements, whereas a span element is used for inline organization and styling.

Which email protocol allows an email client to download email messages to the local computer?.

Answers

Answer:

The protocol is called Post Office Protocol version 3(POP3)

Explanation:

Hope this helps!

Of the five classic components of every computer system, two of these constitute the CPU or microprocessor. Select the correct answers. Group of answer choices Input Devices Datapath Storage RAM Output Devices Control

Answers

The option on the five classic components of every computer system that is made up of the CPU or microprocessor is Control.

What is the control unit?

The control unit (CU) is known to be a part of a computer's central processing unit (CPU) that helps to show the way for the operation of the system to work.

Therefore, The option on the five classic components of every computer system that is made up of the CPU or microprocessor is Control.

Learn more about Control unit from

https://brainly.com/question/12974626

SPJ4

when you start a new, blank document, you usually end up changing the font to arial 11.5 point. how can you make these settings the default for this and all future new documents?

Answers

The fonts setting can be change to default by following the mentioned steps.

1)opening the format menu,

2)after that, click Font,

3)then click the Font tab.

4)Make the needed changes that you want, and then click Default.

What is font?

A font is a set of printable or displayable text character s in a specific style and size.

These are the complete set of character like numbers, letters, and symbols/icon within a typeface, which is the design of the characters.

Hence, we can easily change the fonts setting to default.

Learn more about fonts here,

brainly.com/question/14934409

#SPJ1

can I have some help?

Answers

I believe its A as the image provided says plain message

What are the real-life applications of coding? any smart person who can give this ans

Answers

Answer:

Coding is used for a ton of different things. It can be used to create websites, video games, and apps. It is also an essential part of artificial intelligence and machine learning. Coding is a way to create computer programs that have a sequence of instructions for the computer to execute.

Explanation:

Fern has set up a computer network for the entire building. Unfortunately, the signal strength diminishes as it reaches toward the computers away from the network source. Which devices should Fern employ to strengthen the signal? A. hubs B. switches C. repeaters D. gateways

Answers

Answer:

Repeaters

Explanation:

As the question points out, the signal strength diminishes (attenuates) as it travels farther from the source.  Deploying a repeater at critical points throughout the building would boost the signal strength as it continues on its way.

the ________ is part of the processor that manages the movement of data through the cpu.

Answers

Answer:

The control unit is part of the processor that manages the movement of data through the cpu.

Explanation:

When using outer and inner methods for recursion, typically, the outer method should check for a valid _____ and then call the inner method.

Answers

The statement that completes the blank is input value

How to complete the statement?

From the question, we have the following concepts:

MethodsRecursion

There are two methods in recursions, and they are:

Inner methodOuter method

The role of the inner method is to check for valid input value

When the input value is valid, this value is sent to the outer method

Hence, the complete statement is "The outer method should check for a valid input value and then call the inner method."

Read more about recursion at:

https://brainly.com/question/14208577

#SPJ4




what is a microphone ​

Answers

Answer: It is a piece of tech that's used for recording audio

Explanation:

something you use that is a piece of tech to sound louder

Advantages of using Unicode to represent data

Answers

Global source and binary.
Support for mixed-script computing environments.
Improved cross-platform data interoperability through a common codeset.
Space-efficient encoding scheme for data storage.
Reduced time-to-market for localized products.
Expanded market access.

Please create a new java package and class file for each problem. 1. Given the current array of numbers - [0,2,85,71,44,6,8,54,5,21], find the largest and smallest value in the unsorted array. 2. Given the current array of integers - [235,21,5,6,21,22,5,6,1,2,3], check if the array contains either 3 or 6. 3. Create an array which contains 20 integer values. Assign a ramdom value for each array element using a for loop . Find all duplicate interger values in an array

Answers

Answer:

¿Cómo se crear un objeto de una determinada clase en Java?

Para crear un objeto de una clase se usa la palabra reservada new. Por ejemplo, Rectangulo rect1=new Rectangulo(10, 20, 40, 80); new reserva espacio en memoria para los miembros dato y devuelve una referencia que se guarda en la variable rect1 del tipo Rectangulo que denominamos ahora objeto.

Explanation:

¿Cómo pasar un objeto de una clase a otra en Java?

Para clasificar un método de otra clase, necesitamos tener el objeto de esa clase. Aquí, tenemos una clase “Student” que tiene un método getName() . Accedemos a este método desde la segunda clase SimpleTesting usando el objeto de la clase Student

Registration on a site can: a.All of these are correct. b.provide information the customer wants. c.furnish data for personalization of communications. d.provide an email address for CRM contacts.

Answers

Answer:

A

Explanation:

i would say A, there are of course sites that dont include all of that but if you want to make a very good registration site than do all of that above

list the parts of different engine.​

Answers

Answer:

here is the answer

Explanation:

The different parts that make up your car's engine consist of: the engine block (cylinder block), the combustion chamber, the cylinder head, pistons, the crankshaft, the camshaft, the timing chain, the valve train, valves, rocker arms, pushrods/lifters, fuel injectors, and spark plugs

If you were referencing an e-book what would be the proper citation format?.

Answers

Answer:

Use the standard in-text citation format of author's surname and year of publication to cite an ebook in your work. Include the author's last name and first initial, the year of publication, the italics title of the book, as well as the retrieval information or DOI number in an APA reference list entry.

Hope this helped you! I would appreciate a Brainliest if you wouldn't mind.

Other Questions
Dna polymerase is most active during which phase of the cell cycle?. 5 points11 cmI literally dont know what to do The Crusades had which effect on the Christians in Europe?A. Christians were able to buy new foreign goods.B. Christians were killed in pogroms across EuropeC. Christians became Muslims in huge numbers. D. Christians were forced to give up power to Jewish kings. part of a line having two end points helppppppppppppppppppppp 5 cm 3 cm 5 cm 8 cm 2 cm 7 cm what is the volume of the prism? show your thinking. organize it so it can be followed by others. step by step explanations get brainliest. i dont understand how to do it and i need an explanation. Generally, the most important category on the statement of cash flows is cash flows from:. Select the correct expressions.Which expressions are equivalent to 3x + 2(x 1) 4? What is the range of the function represented by this graph? The drawings account receives a __________ entry when the owner withdraws money for personal use.A. DebitB. Credit the volume of a cone is 2307.9 mm^3. The height is 5 mm. What is the radius? 20. Which formula would you use to calculate the floor space of Firm 3's structure? Explain your choice. (Refer to the Formula table on page 3.) (2 points: 1 point for the formula, 1 point for the explanation) conduct a reasearch and determine if Pepsi and coca cola are a duopoly (1) the fear of genetically modified foods is not based in facts. (2) the food and drug administration holds genetically modified foods to the same standard as traditional foods, which means that these new products are equally as safe as products that are already on grocery shelves. (3) in addition, common fruits, including nectarines and seedless grapes, are a result of genetic breeding. what would be the best way of revising the second sentence for a presentation? Laticia randomly selected 25% of the seventh grade students in her school and asked them what their favorite season was. Of the students surveyed, 51 chose summer as their favorite season. Based on this data, approximately how many seventh grade students in the whole school? According to the frequency table, what is the mean of the score? Round your answer to the nearest tenth. A) 6.0 B) 6.1 C) 6.2 D) 6.3 the functional relationship between nucleus ribosome and rough endoplasmic reticulum. URGENTPLease hElP!!!!!Determine which characteristics describe Moses, Abraham, or both of these leaders in the Hebrew Bible. Help me pleaseeeeeee