who is the founder of computer??​

Answers

Answer 1

Answer:

there is no organization or buisness labeled " computer"

Explanation:

So nobody founded "computer"

Charles Babbage did invent computers though.

Charles Babbage, an English mechanical engineer and polymath, originated the concept of a programmable computer. Considered the "father of the computer", he conceptualized and invented the first mechanical computer in the early 19th century.

Brainlist pls


Related Questions

Write 200 words about Japan? ​

Answers

Japan, island country lying off the east coast of Asia. It consists of a great string of islands in a northeast-southwest arc that stretches for approximately 1,500 miles (2,400 km) through the western North Pacific Ocean. Nearly the entire land area is taken up by the country’s four main islands; from north to south these are Hokkaido (Hokkaidō), Honshu (Honshū), Shikoku, and Kyushu (Kyūshū). Honshu is the largest of the four, followed in size by Hokkaido, Kyushu, and Shikoku. In addition, there are numerous smaller islands, the major groups of which are the Ryukyu (Nansei) Islands (including the island of Okinawa) to the south and west of Kyushu and the Izu, Bonin (Ogasawara), and Volcano (Kazan) islands to the south and east of central Honshu. The national capital, Tokyo (Tōkyō), in east-central Honshu, is one of the world’s most populous cities.

explain with example how does delay marriage help for population management​

Answers

Answer:

Explanation:

The population in western richer countries is decreasing but the population in some poorer developing countries is increasing and normally in the poorer communities where education is minimal or not encouraged then men and women tend to get married young and have many children. Population management is not necessary because when men and women are educated and have good standard of living with a good social system of caring for the old then married couples will tend to have one or two kids or none at all. Population control was practised by PrC and it managed to alleviate 60% of the people out if poverty and reduced the population by implementing one child policy. Now China has more male than female creating social problems of finding a wife. In the West with good social system to care for the elderly more couples are not having children. In the west where living conditions and educational level are better the Caucasian race is not having that many children as the other races in developing countries. Education and financial independence of women will encourage married women to have one or two kids so that they can still pursue their career after marriage. With modern contraception you can delay having children until you are ready for them. The concept of delaying marriage to reduce population does not hold true. However the whites’ population is decreasing every year as compared to the other non white races. The reason is that in the poorer non white countries the population is higher because of subservient position of the women who have no say in birth control

Which term refers to a secure systems ability to protect against the unauthorized modification or destruction of information?.

Answers

Answer:

Integrity

Explanation:

Select the correct technical term for each definition by using the drop-down menus.
A keyboard, mouse, and microphone are examples of
А
Mis an input device used to display video for video conferencing,
A
is an input device that responds to finger touch.
DONEN

Answers

The answer response are:

A keyboard, mouse, and microphone are examples of input devices.A display device is an output device used to display video for video conferencing.A touchpad is an input device that responds to finger touch.

What are the input devices?

Input devices are devices that allow users to input information into a computer, such as a keyboard, mouse, or microphone.

A display device is an output device that is used to present information in visual form, such as a computer screen or television screen. Display devices are used for video conferencing to show visual information to participants.

In all, a keyboard, mouse, and microphone are examples of input devices, a display device is used for output and video conferencing, and a touchpad is a type of input device that responds to finger touch.

Learn more about input devices from

https://brainly.com/question/12081537

#SPJ1

WILL GIVE BRAINLIEST!!!!!!
People do look at transportation options when considering neighborhoods to which to move.

True

False

Answers

True is the answer youre looking for

The answer would be true

The option to send a publication in an e-mail is available in the _____ tab.

File
Home
View
Review

Answers

Answer:

File

Explanation:

Which of the following shows the assignment of a string to a variable ? Select 3 options.
A. answer = 23
B. answer = '23'
C. answer = input (" How old are you ? ") D. answer = (23)
E. answer = " 23 "​

Answers

The answer is going to be D
the answer is D answer = (23)

Who makes "white box" computers?
O non-major companies
O Microsoft
Asus
Apple

Answers

Answer:

O NON- MAJOR COMPANIES.

Please post detailed answers to the following questions. Please use complete sentences.

Pick a piece of art, music, or architecture and explain how it reflects our era. What will historians in the future learn about us by studying the elements of our culture?

Answers

Answer:

Music

Detailed Paragraph:

            I believe that those who really love and care about music are the ones who grew up listening to songs that touched them and spoke to them in a profound way. I remember being in middle school when the music I listened to defined so much of my identity. Thus, in return, it's almost our unspoken job to create a sound that will be amplified to the next generation, impacting them and impacting our society in return. If we can gain a more comprehensive awareness of how our art form is making a difference around us, we will undoubtedly become better musicians – musicians with a purpose.

explain why a holiday on a cruise liner will be an ideal holiday​

Answers

Answer:

The great thing about a cruise holiday is that everyone in your party can please themselves yet still have a real holiday together. The kids can make new friends and take part in fun and educational activities during the day, while the adults unwind by the pool, learn a new skill or hit the casino.

Can anyone tell me what wrong with this code the instructions are "Currently, this program will add 6 and 3 together, output the math problem and output the answer. Edit this code so that a random number is generated from 1 - 10 (inclusive) for the variables a and b. Also, instead of adding the two numbers together, the edited program should multiply them, and output the proper math problem and answer. Be sure to update every line of code to reflect the changes needed." My code runs but it hasa EOF. My code is

import random
random.seed(1,10)
a = random.randint (1,10)
b = random.randint (1,10)
print ("What is: " + str(a) + " X " + str(b) + "?")

ans = int(input("Your answer: "))

if (a * b == ans):
print ("Correct!")
else:
print ("Incorrect!")

Answers

Answer:

import random

a = random.randint(1,10)

b = random.randint(1,10)

answer = a * b

print(str(b)+" * "+str(a)+" = "+str(answer))

Explanation: So I am guessing you are on Edhesive Module 2.5 Intro to cs. Sorry it took so long but hopefully this works.

Can someone come and see if I have answered this question correctly? Please ...
if i have a mistake or somewhere i can go deeper can you correct me? Thank you

Answers

Answer:

presentation or visualization

Presentation or visualization

True or False? A list can be linear (items are arranged one after the other) or linked (each item has a pointer to the next item in the list).

Answers

Answer:

True

Explanation:

True

Reasoning it’s true because a list can be linear items arranged one after the other one

Write a code segment that uses a while loop and the random.randint and print functions to generate and print random integers between or including 1 and 6 until a 6 is rolled. The code segment must also count the number of times the number 3 was generated and display that value once at the very end of its execution.

Answers

In python:

import random

i = 0

while True:

   w = random.randint(1,6)

   if w == 6:

       break

   elif w == 3:

       i += 1

   print(w)

print(f"3 was generated {i} times")

I don't exactly know how you want the output but you should be able to modify my code according to your needs. I hope this helps!

   

[Python] Spot the errors in the code
x = int(input()
if x == 5
print(x is equal to 5)
else:
print("x is not equal to 5")

Answers

Answer:

There's no string double quotes in the print statement on line 3.The input statement on line 1 is wrong. It should actually be the following ⇒ print(input(Hello World))

All print statements must contain double quotes around a string. Otherwise, it will be interpreted as a number, and will lead to an error.

Which keyboard shortcut can you use to access the go to feature, which will allow you to move quickly to another location in the document without having to search for it manually?.

Answers

The keyboard shortcut can you use to access the go to feature, which will allow you to move quickly to another location in the document  is  Ctrl+G or F5.

What is a keyboard shortcut?

Keyboard shortcuts are known to be keys or a set of combination of keys that a person can press on one's keyboard to carry out a specified tasks.

By using keyboard shortcuts , one is often often faster than using a mouse  and  to see the option you are looking for, you have to press Ctrl+G or F5.

Learn more about keyboard shortcut  from

https://brainly.com/question/12531147

One of the hardest threats that security professionals will have to address is that of the insider. True

Answers

Answer:

True

Explanation:

It is true because an insider can share information and distribute that information to outside agencies or groups.

The statement "one of the hardest threats that security professionals will have to address is that of the insider" is definitely true.

Why security check has been required?

The security check has been required by the companies because it allows individual access to classified national security information. It is also required in order to find out the character and fitness of an individual along with the verification of the information that is provided by the candidate.

The above statement reveals that the security of the employees is one of the hardest threats to the company. This is because any one of the insiders collects all sorts of information that are confidential to the organization and can share this information with an outsider in order to breach the privacy of the company.  

Therefore, the statement "one of the hardest threats that security professionals will have to address is that of the insider" is definitely true.

To learn more about Security professionals, refer to the link:

https://brainly.com/question/26260220

#SPJ5

After the Afton family dies what animatronics do their souls posses. Michael Afton dose not posses an animatronic but what dose Michael become and what is his animatronic "friend". UwU

Answers

Answer:

Michael becomes Golden Freddy.

Explanation:

I hate I know this and I know it's a joke but here we go

In theory, they all become -

Mrs. Afton - Ballora

Elizabeth - Circus Baby

William Afton - Doesn't really become anyone but he is inside Springtrap

The Crying Child - Theorised to be Golden Freddy

Michael Afton - Doesn't become anyone at all, but does have robot spaghetti of all the Sister Location animatronics// his friend is Eggs Benedict but no one knows for sure.

In access, what are the different parts of a database application called?.

Answers

Answer:

An application part can be as simple as a single table, or it can include several database objects, including tables, forms, reports, and even relationships. In Access, you can open up the Application Parts gallery to view the built-in parts.

Explanation:

Assume that sum is called with a parameter that satisfies the precondition and that it executes without error. How many times is the test expression i < bound in the for loop header evaluated

Answers

The number of times which the test expression i < bound in the for loop header can be evaluated assuming that a sum is called with a parameter that satisfies the precondition and that it executes without error is:

As many times as needed until the condition is met but which must be at least 1 time.

What is a Loop?

This refers to the repetition of an iteration until a preset condition is met and then it stops.

Hence, when a sum is called with a parameter in a line of code and a for loop is used with the test expression i< so that a certain condition can be met, then there would be multiple iterations until that condition is met, until it stops, which is the code execution without an error.

Read more about for loops here:

https://brainly.com/question/19344465

can someone give me an window blur code in javascript like i mean full coding

Answers

Answer:

uh wha- what?!?!

Explanation:

no

find it urself

:P

jekqfjewil bored anyways

Which word describes an important characteristic of good computer
algorithms?
O A. Numerical
B. Complex
C. Lengthy
D. Literal

Answers

I personally would pick Numerical but lengthy would work as well tbh both would work

The word that describes an important characteristic of good computer algorithms is Numerical. Thus, option A is correct.

What is computer algorithms?

The term computer algorithms has been defined as the a set of the instructions that would describes a step-by-step process for solving a specific problem. It has been often used in computer programming to automate repetitive tasks and streamline complex operations.

When an algorithm has integrated into a computer program, the process becomes automated, allowing the computer to perform the task repeatedly with minimal input from the user.

Therefore, the algorithm lacks the instructions for handling unexpected or the unanticipated results, the computer program may halt or encounter errors, potentially causing significant disruptions to the process.

Learn more about Algorithm on::

brainly.com/question/20533936

#SPJ7

1. P_OP_EW_RE
2.H_R_W_R_
3._ON_E_TI_IT_
4.P_OC_D_RE
5._O_TW_R_​

Answers

Answer:

poopaewr4vh23rbu2rfbu2rfu

Explanation:

This motherboard already has 1GB of RAM installed in the DIMM1 slot. The customerwould like to upgrade to 4GB total memory, use the existing module if possible, and usedual-channel. What memory modules are needed? What capacities and how many ofeach capacity are required?

Answers

Answer:

The two phases to the context of this discussion are listed follows.

Explanation:

Solution 1: Delete 1 GB of current RAM as well as install another DIMM0 Chan A slot through one 2 GB of double-channel RAM. (thinkable unless the 2 GB RAM is provided by the motherboard in what seems like a DIMM0 Chan A slot)  Solution 2: whether there's an unused or blank slot, perhaps one 1 GB dual-channel Ram could be mounted in some other slot at around the same speed or frequency.  

It's quite safer to mount memory with appropriate frequencies across both situations.

The two phases are as follows:

Delete 1 GB of current RAM and install another DIMM0 Chan A slot through one 2 GB of double-channel RAM. (thinkable unless the 2 GB RAM is given by the motherboard in what seems like a DIMM0 Chan A slot)  .In the case when there's an unused or blank slot, so one 1 GB dual-channel Ram could be mounted in some other slot at around the similar speed or frequency.  

It's quite safe to mount memory having appropriate frequencies across both situations.

Learn more: brainly.com/question/17429689

Wanda is taking photos using a lens that sees and records a very narrow view with a focal length longer than 60mm. When her friend asks what type of lens she is using for their photography outing,

Answers

Answer:

a telephoto lensExplanation: It's on Quizlet lol

And I got it correct on the test...

It provides an instant 2x optical zoom and has a focal length that is twice that of the primary lens. Additionally, it has a limited field of view, which causes distant things to resemble those that are nearby.

What role of telephoto lens in taking photos?

Simply put, a telephoto lens deceives the eye into thinking a topic is closer than it actually is. This may be the best option for photographers who are physically unable to go close to their subjects or who are concerned for their safety.

With a telephoto lens, the background elements appear larger and nearer to the foreground elements. The converse is true with wide-angle lenses, which make background elements appear smaller and farther away from the camera.

Therefore, a telephoto lens Wanda uses a lens longer than 60 mm in focal length to capture images with a very small field of view. When her friend inquires about the lens she will be using on their photographic excursion.

Learn more about telephoto lens here:

https://brainly.com/question/15599633

#SPJ2

In Fantasy Football, participants compete against one another by choosing certain players from different NFL teams that they think will do the best on any particular week. Top Fantasy Football players spend hours every day looking at statistics of the players and the teams. Spreadsheets and software tools are used to choose the best players. This process would be considered __________.
a. Data persistence
b. Data divide
c. Data collection
d. Data mining

Answers

This process that would be considered in the above scenario is Data mining.

What is data mining?

Data mining is known to be the act or method of knowing more about data via;

Leaning raw data.Finding patterns.Forming models.Testing those models.

Note that  It is a method that uses statistics, machine learning, and database systems and it will be good tool to be used in the scenario above.

Learn more about Data mining from

https://brainly.com/question/14776357

Write Python code for the following flowcharts

Answers

print("Enter a number")

number = input()

if number >= 1000: print("Bigger or equal to 1000")

else: print("Smaller than 1000")

In a function template, the programmer substitutes __________ for __________. Group of answer choices arguments, parameters angle brackets, parentheses parameters, data types None of these parameters, arguments

Answers

Answer: parameters, data types

Digital citizenship focuses on _____. Select 3 options.

Answers

Respect, Education, and Protect.

Digital citizenship focuses on the following:

B. helping and leading others

C. targeting potential cyber criminals.

D. creating positive online experiences

What is digital citizenship?

The capacity to operate a keyboard, mouse, and other components of the digital system, as well as to interact with others online, is known as digital citizenship.

It also refers to learning how to behave with respect and decency on digital platforms, as well as how to communicate effectively online and build relationships.

The major goal of digital citizenship is to foster a pleasant environment by teaching others about cybercrime and bullying and raising their awareness of these issues.

Thus, the correct options are B. helping and leading others

C. targeting potential cyber criminals.

D. creating positive online experiences

To learn more about digital citizenship, refer to the link:

brainly.com/question/11542933

#SPJ5

The question is incomplete. You most probably the complete question is given below:

enforcing your rights on others

helping and leading others

targeting potential cybercriminals

creating positive online experiences

promoting the common good

how do u type please help

Answers

Answer:

use your keyboard

Explanation:

listen your 2 years old i know you can type daughter

Answer:

maybe try doing the same thing that you did a few minutes ago to type the exact same thing?

Explanation:

I am not about to explain every move that has to be taken to type a sentence -_-

Other Questions
True or False? Buyer personas can help you identify your target audience's preferred content distribution channels. Higher Order Thinking Three classeshave the same number of students. Theteachers compared attendance on oneFriday. Mr. Lopez had 92.5% of hisstudents in class. Mrs. Foster had 20 ofher students in class. In Ms. Kelly's class,0.9 of the students were present. Whichteacher had the most students in classthat Friday? Unlike the Middle colonies, the New England colonies:O A. were settled mostly by English Puritans.B. had governments based on religious ideas.C. did not usually rely on slaves for labor.D. let settlers freely practice their own religions. Is this a direct variation?y = 2x Can we determine what causes change and what are the effects on living and non-living systems? Maxine used 2 potatoes to make gallon of stew. How many potatoes should she use if she is going to make a gallon of stew? A small boat leaves the dock at Camp DuNuthin and heads across the Nessie River at 17 miles per hour, relative to the water, at a bearing of S60 W. The river is flowing due east at 6 miles per hour. What is the boat's true speed and heading? Round the speed to the nearest mile per hour and express the heading as as a bearing with the angle rounded to the nearest tenth of a degree A fish is 15 meters below the surface of the ocean. What is its elevation: Answer,plss?7(x+8)=49 (Ignore income taxes in this problem.) Alesi Corporation is considering purchasing a machine that would cost $283,850 and have a useful life of 5 years. The machine would reduce cash operating costs by $81,100 per year. The machine would have a salvage value of $107,100 at the end of the project. (Assume the company uses straight-line depreciation.) Required: a. Compute the payback period for the machine. (Round your answer to 2 decimal places.) b. Compute the simple rate of return for the machine. (Round your intermediate answers to nearest whole dollar and your final answer to 2 decimal places.) - Williar's age is w and Jamie's age j are related by the equation w=2j-12. When William is 36.5years old, how old is Jamie? *a. 24.25 yearb. 20 yearc. 36.5 yearc. 28 year Aubrey went to the movies with two friends. They bought 2 boxes of candy to share. Each box costs $2.75. How much did thcandy costs Please answer correctly.Will give the brainliest!Urgent!!! write a rule to describe each transformation Evaluate x - 3y when x = -2 and y= -4 A. -10 B. -4C. 4D. 14 Complete the sentences to see what Roberto and his classmates usually do during theweek. Select the more logical verb and write it in the correct form of the present tense.Andrs y yo (practicar / tocar)ftbol (soccer) los mircoles por la noche. tre (DR. MRS. VANDERTRAMPP) StoryGuidelines You must create story using all DR. MRS. VANDERTRAMPP verbs in the pass compos by choosing a specific theme. For example..o Circuso Shoppingo Camping/countrysideo At the movieso In town etc You must have a main character and give him/her a name You must include a minimum of :o Three questions in the pasto Three sentences using a direct object pronoun in thepasto Three negatives in the past: nepas, nepas encoreo On sentence using dj in the past Your story must be illustrated. You must include an illustration for all tre verbs and include a caption (full sentence) in the past tense for each DR. MRS. VANDERTRAMPP verb. Story must be neat and in color. Must use correct grammar and spelling Must be read with correct pronunciation and intonation- record your project at home and upload it in Flipgrid named Histoire au passe compose Suppose you are visiting the equator. It is noon. The Sun is at its highest point in the sky for the day, which is directly over your head. You call a friend on the phone, and she says it is also noon where she is but the Sun is not directly overhead at that location and time. It is a little lower in the sky for her. Compare the longitude and latitude where you are with the longitude and latitude where your friend is. Are they alike or different? How do you know? i need help with few more questions can u guys help me What is the correct interpretation of the probability of getting an 11 when a pair of dice is rolled? Interpret an event as significant if its probability is less than or equal to 0.05.