why does computer uses 0s and 1s to procress data​

Answers

Answer 1

Answer:

Computers use binary - the digits 0 and 1 - to store data. The circuits in a computer's processor are made up of billions of transistors . A transistor is a tiny switch that is activated by the electronic signals it receives. The digits 1 and 0 used in binary reflect the on and off states of a transistor.

Answer 2
Computers don't understand words or numbers the way humans do. ... To make sense of complicated data, your computer has to encode it in binary. Binary is a base 2 number system. Base 2 means there are only two digits—1 and 0—which correspond to the on and off states your computer can understand.
uwu

Related Questions

7.2.8: Part 2, Replace a Letter


"Write a function called replace_at_index that takes three arguments - a string, an integer (representing an index), and a string. Return a string that is the same as the first string, except with the character at the specified index replaced by the second string.

Ask the user for some text, which index to replace, and what to replace that index with (in that order!).

Print out the result of calling your function.

If the user enters the following input:

Enter a word or phrase: dog
Enter an index value: 0
Enter the new letter: f
The following should be output:

fog"

Answers

def replace_at_index(txt, ind, let):

   new_txt = ""

   for x in range(len(txt)):

       if x == ind:

           new_txt += let

       else:

           new_txt += txt[x]

   return new_txt

print(replace_at_index(input("Enter a word or phrase: "), int(input("Enter an index value: ")), input("Enter the new letter: ")))

I wrote my code in python 3.8. I hope this helps.

What is the answer I will give brainliest

Answers

The answer is 24kQr3

The coordinates that determine the position of an element in space are expressed as:

A. Different Shapes
B. 1, 2, 3
C. X, Y, Z
D. L, T, P​

Answers

Answer:

xyz

Explanation:

think of it like a graph, you graph on the x, y, and z coordinates

one disadvantage of using a wireless network over a wired network​

Answers

Answer:

Slower than wired network​

Explanation:

This is much weaker than a wired connection. It is likely that the network is less secure. A variety of factors, including large distances or artifacts, can impede wireless transmission around wireless devices as well as other wireless devices.

Justice wrote a program and forgot to put the steps in the correct order. Which step does she need to review?

Planning
Filtering
Ordering
Sequencing

Answers

Answer: Sequencing

Explanation: I did test!

Sequencing step does she need to review.

What is Sequencing?

Sequencing is the act of placing a process's phases in order from start to finish. It is a crucial ability that is employed in math, physics, and other subject areas in addition to reading comprehension.

Look at a few sequence structures that can be used to structure instructions in a passage.

Students simply arrange a series of stages in a process or method in the proper order as part of sequencing activities. They might include topics like how to assemble equipment, set up and name a word processing file, or install an electrical switch.

Therefore, Sequencing step does she need to review.

To learn more about Sequencing, refer to the link:

https://brainly.com/question/30586864

#SPJ3

who is big brain me or you

Answers

Question:

Who is big brain me or you?

Answer:

I think is you because your the best I can be with you and I hope it helps

#CARRYONLEARNING #STUDYWELL

Imagine that you have just been given a super high-tech, life-sized robot that can communicate with you and accomplish tasks. Describe how this robot is a computer system using the five parts we discussed in the unit. Be sure to give specific examples.

Answers

Answer:

The robot has several inputs for speech recognition and sight like a microphone (as its ears) and cameras for sight. The robot has neural networks of programmed instructions in its processor which is used to process data received from the input devices and the result comes out as a response (like the robot speaking with a speaker as its mouth). This clearly defines the robot as a computer system.

Explanation:

A computer system is an electronic device that accepts input from a user or its surrounding, processes the data received and returns the output of the processed data.

The robot is able to receive data, process the data with its processor and responds or sends feedback to the user.

What are a few ways to format the text in a mail message in Outlook? Check all that apply.
Attach a file to the message to be opened separately.
Open the Font dialog box to access more detailed options.
Increase or decrease the indent.
Copy and paste text from a Word document
Use the Mini Toolbar to change the font appearance.
Click the Format Painter to paste a saved font format.

Answers

Answer:

The answers are b,c,d,e,f

Explanation:

which guidelines should be used to make formatting tasks more efficient

Answers

“Use pasted text only; this does not keep the original formatting”
which guidelines should be used to make formatting tasks more efficient

Which of the following views contains the Notes Pane?
O Normal View and Reading View
O Normal View and Notes Page View
O Reading View and Slide Sorter
0 Slide Sorter and Notes Pane View

Answers

Answer: Normal view and reading view

Explanation:

Pleasee helpppppppppppppppppppppp me!

Answers

The answer is d- Alan Turing

Imagine a machine that produces an output force that is five times larger
than an input force. What is the mechanical advantage of the machine?

Answers

Answer:

[tex]M.A = \frac{output}{input} \\ let \: input \: force \: be \: x \\ hence \: output \: force \: = 5x \\ M.A = \frac{5x}{x} \\ = 5[/tex]

Is this good enought to record and edit in 4k UHD? (Ultra High Definition)

Answers

Answer:

It should be, yes

Explanation:

It is yes in my opinion at least so b is the answer

Use the code above to write a program that when run, draws 1000 points
at random locations on a frame as it runs. For an added challenge, have
the 1000 points be in different, random colors.
Can someone actually write code for this pleaseee (IN PYTHON OR EDHESIVE)

Answers

Answer: This is what worked for me

Explanation:

The program is an illustration of frames in Python:

Frames are part of what makes up a graphic user interface program.

The missing code segment in Python, where comments are used to explain each line is as follows:

#This defines the draw handler method

def draw_handler(canvas):

   #This imports the random module  

   import random

   #This generates a random number between 0 and 1000

   randNum=random.randint(0,1000)

   #This following iteration is repeated

   for r in range (600,600):

        #This sets the rgb color code to the random number

        r = randNum; g = randNum; b = randNum

        #This gets the color code

        randRGBcolor = "RGB(" + str(r) + "," + str(b) + ")"

        #This draws the points

        canvas.draw_point([x, x],(randRGBcolor))

At the end of the program, the 1000 points are displayed on the screen

Read more about similar programs at:

https://brainly.com/question/14068778

What would be the final step to applying your customized voting butons in Outlook messages?
O Type your new choices in the Text Bar.
O Click on Voting Buttons and choose Custom.
O Open the Voting Buttons menu and choose your customized choices.
O Click Submit and your custom voting choices will appear in the message body.

Answers

Answer:

Open the Voting Buttons menu and choose your customized choices.

Explanation:

Answer:

C

Explanation:

In Python, the first character in a string has an index position of one.

A: True

B: False

Answers

False.

In python all strings start with an index of zero and end with an index of len(string)-1. This means that a 5 letter long word will start at 0 and end at 4.

please help i will give brainliest if right

Which elements are part of the Outlook interface? Check all that apply.

Ribbon
Quick Access Toolbar
Comments Box
Reading Pane
Formula Bar
Command Groups

Answers

Answer:

Ribbon, Quick Access Toolbar, Reading Pane, Command Groups

Explanation:

I did it on edge 2021

The elements which are part of the Outlook interface include ribbon, quick access toolbar, reading pane, and command groups. Therefore, the correct options are A, B, D, and F.

What is Outlook interface?

Outlook Main Interface is the folder pane. Outlook interface usually displays on the left hand side of the screen, and it helps in the Outlook users to switch to different folders and different views in the operating system such as mails, calendar, people, task, notes and all folders.

Basic features of Outlook interface include email service, email search, flagging, and color coding, along with the preview pane options. The calendar function enables scheduling, viewing, and communicating about the different appointments and meetings.

The main elements of the Outlook window include the ribbon, Quick Access Toolbar, Reading Pane, Command Groups.

Therefore, the correct options are A, B, D, and F.

Learn more about Outlook interface here:

https://brainly.com/question/19018627

#SPJ2

In one sentence, how would you sum up the internet?

Answers

Answer:

an informational system

Explanation:

A source to get information from.

pleasee help meeeeeeeeee I’m stuckk!!!!

Answers

Answer: Charles Babbage

Answer:

a

Explanation:

trust


What does an effect allow you to do in
EarSketch?

Answers

Answer:usbebdos did did I’d did d

Explanation:

Bash six ska over five. I did a sis a and

Suppose a family has had a house fire in which
they lost many photos, and they are worried about
losing more if they have another. Which of the
following is a reason this family may want to
digitize their photos? Choose all that apply.
to make it easier to e-mail photos to friends
to maximize file space on their hard drive
to minimize risk of losing photos by acking
them up in virtual space
to save space in their home
DONE

Answers

I would say all the reasons below are good reasons.

Answer:A, C, D,

Explanation: Did it

Which SmartArt feature would you use to illustrate bulleted points?

A. Circle
B. List
C. Process
D. Pyramid

Answers

Answer:

List

Example:

* Milk

* Cheese

* Bread

That is bulleted points

PLEASE HELP ME !!!!!!!!

Answers

Answer:

This is way to long

Explanation:

Danny wants to create a web page for her friends dog walking service. Which coding language should she use

Answers

Answer:

html js css

Explanation:

what is the term for the era created by the digital revolution?

Answers

Answer:

The Digital Revolution also marks the beginning of the Information Era. The Digital Revolution is sometimes also called the Third Industrial Revolution.

Explanation:

Hope this Helps.

Amy wants to make an exact replica of a specific area in an image. Which tool Amy will use?

Answers

Answer:

Explanation:

.

what is main function of processing unit?

Answers

Answer:

to control the operation of all part of the computer.

hope it helps.

Answer:

to control the operations of the computer

Explanation:

hope it's help you have a great day keep smiling be happy stay safe ☺

*need answer in the next 1 or 2 days*

Unscramble the terms and then put the numbered letters into the right order.

The words all have to do with digital footprint sorta, the only one I did was settings. It’s really late but I appreciate anyone willing to help.

1. REENSTSCOH

2. PISLYNSIEIBROT

3. MICPAT

4. INTIYTED

5. LIFSEE

6. LARTI

7. TINUARTPEO



Answers

Answer:

1. SCREENSHOT

2. RESPONSIBILITY

3. IMPACT

4. IDENTITY

5. SELFIE

6. TRIAL or TRAIL

7. REPUTATION

Explanation:

I think the secret word is FOOTPRINT

Denise found a volume of documents in the trash bin that contained individuals, names, social security numbers and years of birth. After additional inspection, she realized it was an extra report from one of their file systems that had been discarded. What should Denise do?

Answers

Answer:

All of the above

Explanation:

The report is a piece of critical information in the company's file system that should be saved and secure from adversaries. All the options should be implemented to prevent and manage data leakage.

In computer memory, _____ represents the absence of an electric signal and ____ represents the presence of an electric signal.​

Answers

Answer:

In computer memory, zero(0) represents the absence of an electric signal and 1 represents the presence of an electric signal.​

Explanation:

Computer memory is used to store data in the form of electrical signals. Electrical signal is used to represent the presence or absence of signal. The data is stored in binary form.

Hence,

In computer memory, zero(0) represents the absence of an electric signal and 1 represents the presence of an electric signal.​

Other Questions
(Fahrenheit 451) The novel was a warning to society at the time it was written. write an essay (400-500 words) about how the novel can still be used as a warning today. be sure to mention what the novel is warning us about Tenpenny Tower was built in 1985. However, the building has been constantly maintained and remodeled. In valuation terms, the building's _________ age is greater than the building's _________ age. Please help me 19 points for whoever answers number 3 Will give brainliest Which native american culture groups had the largest number of tribes?A great basin indiansB great plains IndiansC northeastern indiansD southeastern indiansAs soon as possible Look at the map !!!I NEED HELP ASAP!!!The question: What large muscle groups does cardiovascular exercise generally utilize? Remember, this is not about what is a "target" of exercise but what actual muscles help all this exercising happen.I responded with the heart and lungs, which he responded to;The heart is a muscle in construction, but not in function since it does not affect the bodily movement of the limbs or torso. It is more properly termed an "organ" of the body. Likewise, the lungs themselves are most definitely NOT muscles but organs.Anyone know what the answer is... What is the name of the image below? A boy rubs two balloons against his sweater. One balloon acquires a charge of 3.0 E -6 C. The other balloon acquires a charge of 2.5 E -7 C. If the balloons are positioned 1 cm apart, what is the electrical force between them? second lagerest ocean Jessica wants to buy a new chair that has a regular price of $75.00. This week the chair will be on sale at a 12% discount.How much money will Jessica save if she buys the chair this week? Which of the following accurately describes where glyphosate can be used and why 112%List two numbers that are equivalent to the number above Animal Kingdom - You won the lottery and decided to buy all of the cats and dogs at a shelter and let them all roam free on a farm. You forgot to ask exactly how many dogs and how many cats they were giving you, but you know that there are 152 animals altogether and there are 3 times as many dogs as there are cats. Write an equation to find out the number of dogs and cats and then solve it. At a swimming race, 3 out of 10 swimmers won a ribbon. What percent of the swimmers won a ribbon? What are the pros and cons of using social media from the candidate's perspective?Someone plz help last one for 100 Pt grade If the reserve ratio is 5 percent, then $500 of additional reserves would ultimately generate:________ In this clip, Dean says, But back on track. Where does his redirection of the conversation lead? How does this help the group reach the goal of responding to the prompt?(to kill a mockingbird) In the lunchroom there were 100 milk cartons at lunch when lunch was over 88 had been purchased Which words BEST describe the Nurse?(from Romeo and Juliet) what are sedimentary rocks