Was the first documented use of the word computer referring to a machine or a person?.

Answers

Answer 1

calculations, or computations Was the first documented use of the word computer referring to a machine or a person.

What is computations?

In the early days when computer was first brought to light, the term computation was used to describe the use of computers.

However, the word continued to be used in that sense until the middle of the 20th century and it is used to referred to "a computer" as a "person".

Learn more about computation at;

https://brainly.com/question/17493537


Related Questions

Protocol 2 - Check for Errors
Create a protocol that will solve the problems you saw with Protocol 1 by doing some error-checking. The sender
should be able to construct a single multi-packet message that is sent at once. Afterwards they can keep
communicating to fix any errors in the transmission. Things to consider:
How will the receiver know the order of the packets or if any are missing?
How will the receiver request missing packets and what will the sender do in response?
How will both sender and receiver know the full message arrived successfully?

Answers

Please note that the Problem to be solved from Protocol 1 is not provided hence the general answers. To construct and send, open a network environment a single multi-packet message, simply click "Add Packet" and then click "Send at Once".

How will the receiver know the order of the packets or if any are missing?

If the text or message sent does not make any reading sense, or if certain words are jumbled and out of place, then it is clear that something is wrong.

If the messages arrive in a coherent fashion, then the packet was fully received.

How will the receiver request missed packets and what will the sender do in response?

Where the users are familiar with the Transmission Control Protocol, lost packets can be detected when there is a timeout. Lost packets are referred to as Dropped packets.

Learn more about Packets at:
https://brainly.com/question/17777733

How to make recvfrom only work in a certain thread python udp.

Answers

Answer:

just put the in and out Intil it

Explanation:

explain the role of computers in accounting

Answers

Answer:

A computer helps accountants store and access financial records, make changes and alleviate the need to keep paper files. If paper work is needed, computer files can easily be accessed and printed along with any changes the accountant makes at any given time.

you are using an approved third party tool in your client project and find a bug in it. thi is causing severe delays. can you decompile the third party code to remedy the bug

Answers

No, you can't decompile the code because it's a violation of the third party's intellectual property (IP) rights.

What is an intellectual property?

An intellectual property (IP) can be defined as an intangible and innovative creation of the mind that solely depends on human intellect.

This ultimately implies that, it is an intangible creation of the human mind, ideas, thoughts or intelligence which are generally protected by copyright laws.

The examples of an intellectual property.

Intellectual property (IP) include intellectual and artistic creations such as:

NameSymbolLiterary workSongsGraphic designInventionsComputer codes (Third party)

In this context, you can't decompile the code because it's a violation of the third party's intellectual property (IP) rights.

Read more on intellectual property here: https://brainly.com/question/397668

What does it mean when a class has an argument python?.

Answers

Answer:

Objects of a class can optionally accept arguments. These arguments are used to set values within an object. Consider the following code: class Employee: def __init__(self, name) self.name = name The __init__method lets us assign a value for the “self.name” variable in our class. We can reference this variable in any method in our class.

Explanation:

How to turn off parental controls without a password?.

Answers

Answer:

Explanation:

depends on what device you are using. if you are using a computer, you would have to reinstall the operating system. if you are using some gaming console, you would have to reset the system settings.

Lukae has two children. Each of lukes children has two children. Each child after that has two children. If lukes children represent the first generation of the family which type of function would best model the number of children in the nth generation of the family

Answers

Answer:

C

Explanation:

________ is a term that refers to a system in which everyday objects are able to communicate information throughout an interconnected system.
a) Big Data
b) The Internet of Things
c) Data Science
d) Data warehousing
e) Data mining

Answers

Internet of Things (IoT) is a system of interrelated computing devices, mechanical and digital machines, objects, animals or people that are provided with unique identifiers and the ability to transfer data over a network without requiring human-to-human or human-to-computer interaction.

There are two main types of hard drive available to a computer. State what they are and describe their use.
(best answer gets to be the brainliest!)​

Answers

Answer:

Hard disk drives (HDD), which use one or more rotating discs and rely on magnetic storage, and solid-state drives (SSD), which have no moving mechanical parts, but use flash memory like the kind found in USB flash drives.

Explanation:

Christina created a digital artifact in Microsoft Word Online. A
word she typed in her document has a red line under it. What kind
of error is that?
O Spelling error
O Citation error
Line spacing error
O Grammar error

Answers

it would be a spelling error

Answer: spelling error

Explanation:

what message will be printed when inputting the binary code 00110000

Answers

Answer:

0

Explanation:

what is number system in computer language ​

Answers

Answer:

binary code  

Explanation:


QUESTION :-

what is Python??​

Answers

Answer:

python and Java developer at the end of the

It is a coding language

To collaborate on a project using Pinterest, students can___​

Answers

Pinterest is a side where the students can create pinsThey can create multiple boards also.There tags or profile may be used.They can also use the Direct message feature for collaboration in project creation

Addressing data privacy is a portion of which part of your internal processes?.

Answers

The portion of a part of internal processes that addresses data privacy is: data hygiene.

What is Data Hygiene?

Data hygiene, which is also referred to as data cleaning, is an internal process that is run to detect and correct records that are inaccurate or corrupt and also identify incomplete or irrelevant parts of a data.

It also goes further in replacing, deleting, or modifying the coarse data. All these internal processes are data hygiene that addresses data privacy.

Therefore, the portion of a part of internal processes that addresses data privacy is: data hygiene.

Learn more about data hygiene on:

https://brainly.com/question/25099213

Piston pin is used to connect connecting rod with

Answers

The piston pin is used to connect the connecting rod and the piston

your prefabs subfolder, like all other game assets, is located in
A. Model Viewer
B. Project View
C. Hierarchy
D. Transform

Answers

Answer:

B.

project view

Explanation: Just took the test

Using guarded equations, implement a function myInsert that behaves the same way as the insert function defined in Data. List package. The Data. List. Insert function takes an element and a list and inserts the element into the list at the first position where it is less than or equal to the next element. In particular, if the list is sorted before the call, the result will also be sorted.


myInsert : : Ord a â a â [a]â a[a]


a. Explain your nylnsert function definition.

b. Using nylnsert and foldr, implement insertion sort (named mySort).

nySort : : Ord a â a â [a]â a[a]

c. Explain how your nySort works when it is applied as below. Your explanation should be closely related to how foldr works.

nySort [3,1,4,2,5]

Answers

Sorting involves arranging a set of elements in a particular order (ascending or descending)

The insert function

The insertion sort function written in Python, where comments are used to explain each line is as follows:

#This defines the function

def mySort(myList):

   #This iterates through the list

   for i in range(1, len(myList)):

       #This gets the current element

       currElem = myList[i]

       #This gets the index of the previous element

       j = i - 1

       # This compares the adjacent elements, and rearrange them (if needed)

       while j >= 0 and currElem < myList[j]:

           myList[j + 1] = myList[j]

           j = j - 1

       # This places the current element after a smaller element

       myList[j + 1] = currElem

Read more about sorting techniques at:

https://brainly.com/question/15263760

Which of the following is opened when the Find command is clicked? Question 9 options: Navigation Pane Insert Hyperlink dialog box Bookmark dialog box Search Pane.

Answers

The element, from the following options, which is opened when the find command is clicked is the search pane.

What is find command?

Find command is the command which is used to find the list of files and their location.

Find command can be used in different manners-

To find the different files in a system.Find command can find the files by their name, size, date or other information related to the required document.This command can be modified with the requirement of the search.

The options for the given problem are-

Navigation Pane Insert- It is used to show the navigation pane in word or similar space. Hyperlink dialog box-This open, when the insert hyperlink command is clicked.Bookmark dialog box-This opens, when the bookmark command is clicked.Search Pane- Search pane is opens, when the find commond is clicked.Thus, the element, from the following options, which is opened when the find command is clicked is the search pane.

Learn more about the find command here:

https://brainly.com/question/25243683

How to view average for an assignment in gradebook in canvas.

Answers

Answer:

From you Canvas Dashboard click the View Grades button on the right side of the screen. This will bring up a list of the courses that you enrolled in as both a Teacher and Student. The percentage shown here (1) is the course average and it is the Current Grade that is being displayed.

Explanation:

~Kandy~

Hope this helped!

Brainliest Please!

Put these numbers in order from smallest to largest:
1. 00101112
2. 011110
3. 011110112

Answers

the answer to this question is 3,2,1

Answer:

00101112 = 50

011110 = 30

011110112 = 248

So,

011110, 00101112, 011110112

Choose the equation that correctly shows the Commutative Property of Multiplication.

Answers

Answer:

It should be B

Explanation:

Not 100% sure should be right though ;)

___________________ has made the education process more effective and productive.

Answers

I'm thinking technology maybe?

technology hope this helped

What are the objectives of learning History of Computer
Lets see what you guys have got

Answers

Answer:

Learning Objectives

Upon completion of this lesson, students will be able to: summarize key events in the history of computers. discuss the different forms and types of computers that emerged throughout history. list key players in the history of computers.

A scatter plot shows what type of relationship?

Answers

Answer:

According to Goog|e, "A scatterplot shows the relationship between two quantitative variables measured for the same individuals. The values of one variable appear on the horizontal axis, and the values of the other variable appear on the vertical axis. Each individual in the data appears as a point on the graph. There are three types of correlation: positive, negative, and none (no correlation)."

Explanation:

I hope this helps!

A scatterplot shows the relationship that exist between two quantitative variables that ae known to be measured for similar or the same individuals.

What is scatterplot relationship about?

A scatterplot shows the relationship that exist between two quantitative variables that ae known to be measured for similar or the same individuals.

Note that  the values of one variable is known to show on the horizontal axis, and the values of the other variable is said to show on the vertical axis and as such, each of the individual in the data is shown as a point as seen on the graph.

Learn more about scatterplot from

https://brainly.com/question/6592115

#SPJ2

You have made a backup of system data using a removable hard disk. What is the best way to keep your
data safe?

Answers

Answer:

well you already made a backup so maybe put the backup and the normal thing in a safe so nobody steals your data :)

Why does my messenger say this person is unavailable on messenger.

Answers

Answer:

The person left

Explanation:

The person could of been banned or deleted their account

If 3ten is 00000011 two, what is −3ten in an 8-bit two's complement representation?

Answers

Yes rhenebdid eusbeyebridcr due rjeve

Shanice has a younger sister, Leandra, who just got a computer for her birthday. Leandra wants to know how she can use the internet to interact with her friends. She also wants to know how she can stay safe on social media and avoid cyberbullies. What should Shanice tell her? can someone please answer this question.

Answers

Leandra should make whatever social media accounts she has or would make private. If they are private she can limit who she wants on her feeds.

anyone become my sister forever please​

Answers

Ask your parents lolz

Answer:

Your parents need to fill out a legal adoption form for you to legally have a non-blood related sister. Otherwise, according to the legal system, they are not family.

Other Questions
Select ALL the correct answers.Which three statements describe the success of the campaign to boycott grapes?It contributed to legislation that improved pay and working conditions on farms.It led to the creation of the United Farmworkers Organizing Committee.It benefited from the participation of millions of American citizens between 1962 and 1972.It motivated California legislators to pass the Agricultural Labor Relations Act in 1975. I am stuck on this question it was can you add 4+2x to get 6x 50 POINTS only answer if u know 100% Evaluate the expression 3.14(a^2 + ab) when a = 3 and b = 4. PLS ANSWER ASAP!!!A lawn fertiliser is rated as 6.00 % nitrogen, meaning 6.00 g of nitrogen (N) in 100 g of fertiliser. The nitrogen is present in the form of urea, (NH2)2CO. What mass (in grams) of urea is present in 100 g of the fertiliser to supply the rated amount of nitrogen. Irelands name is derived from "riu," an old irish name for who?. Please help !!What is the effect of the poetic structure used in each stanza of "The Raven"?The absence of rhyme at the end of the first and third lines creates a disorganized tone.The ending rhyme scheme in the last three lines gives the poem a monotonous tone.The use of an internal rhyme scheme creates an inviting and almost playful tone.An ending rhyme scheme that repeats in the refrain gives the poem a relentless tone. Who developed the social readjustment rating scale?. Bonds issued by Animite Energy are selling at a rate of 95. 230. Which of the following statements is true for a bond of par value $1,000? a. The market value includes a premium of $5. 23. B. The market value includes a premium of $10. 50. C. The market value includes a discount of $47. 70. D. The market value includes a discount of $95. 23. any anime reccomendations? An urn contains 4 purple marbles and 3 pink marbles. Two marbles are drawn at random. What is the probability that both marbles are purpleif drawn with replacement? 50 points helppppppppppppppppppppppppppppppppppppppppppppppp i need it fast Reading Strategies 6: Question 3Which of the following is most likely a summarized statement about thebuilding of Mt. Rushmore?Select one:OMt. Rushmore should not be seen as a great monument to American leadersbut as a representation of how humans trample on the pristine beauty of nature.The mountain should have been left in its natural state.Mt. Rushmore is an impressive monument; however, it seems unfinished. Thesculptor originally planned to portray the presidents from the waist up but ranout of funding to complete that section. The monument would have lookedbetter with its original design.OMt. Rushmore in South Dakota features the faces of four notable AmericanPresidents. It took 14 years and the help of 400 workers for sculptor GutzonBorglum to complete the monument, which was purposed as a "Shrine ofDemocracy."O Mt. Rushmore required the work of 400 laborers to remove 450,000 tons ofrock. That means each laborer had to remove 1,125 tons of rock before thecarving could begin How did the ideas of liberalism influence political revolutions?. Imagine its the summer before you start high school. Youre trying to figure out what to wear for that important first day of school. What should you do with your hair? What shoes should you wear? Write a 100-word letter to a friendreal or imaginarywhos already in high school and explain your problem. Ask your friend if he or she has any advice for you.Imagine its the summer before you start high school. Youre trying to figure out what to wear for that important first day of school. What should you do with your hair? What shoes should you wear? Write a 100-word letter to a friendreal or imaginarywhos already in high school and explain your problem. Ask your friend if he or she has any advice for you. Given that there are 3 feet or 36 inches in 1 yard, which of the following amounts is greater than 4 yards? Select all that apply.A) 15 feetB) 150 inchesC) 3 yards, 4 feetD) 3 feet, 15 inchesE) 10 feet, 11 inches A cylindrical metal pipe has external diameter of 6cm and internal diameter of 4cm. Calculate the volume of metal in a pipe of length 1 meter. If 1cm^3 of the metal has a mass of 8 grams, find the mass of the pipe. The partial melting of a mafic magma would produce what composition of igneous rocks?. What are the possible causes of sudden food poisoning?. One of the most serious oversights that someone could commit is. A) Driving under the influence of alcohol or other drugs OB) drive while chewing gum. OC) activate the turn signal. OD) driving down a one-way street. Helpppp .