Which of these problems is correct if the numbers are binary numbers?
Group of answer choices

1 + 1 = 2

1 + 1 = 10

0 + 0 = 1

1 + 0 = 10

Answers

Answer 1

Answer:

1 + 1 = 10

Explanation:

2 does not occur in the binary "alphabet"

0 + 0 = 0 in any base, so also in binary

1 + 0 = 1 in any base, so also in binary

Answer 2
The answer is 1 + 1 = 10
1 = 1 in binary numbers, so 1 + 1 = 2 but 2 in binary numbers is 10, 2 doesn’t exist in binary numbers, it is only 1s and 0s so therefore it would be 10.

Related Questions

The deliberate misuse of computers and networks, _____ use malicious code to modify the normal operations of a computer or network.

Answers

Answer:

Virusus

Explanation:

-

Hope that helps

Write a function float Average(int, int) that finds the mean, and then write a main program that inputs two numbers from the user repeatedly until the user enter “0”. You need to call the function and display the mean of two numbers in the main. C++ language only.

Answers

The program illustrates the use of functions.

Functions are used to group related code segments that act as one, when called.

The program in C++ where comments are used to explain each line is as follows:

#include <iostream>

using namespace std;

//This defines the Average function

float Average(int num1, int num2){

   //This returns the average of the numbers

   return (num1+num2)/2.0;

}

//The main method begins here

int main(){

   //This declares the numbers as integer

   int num1, num2;

   //This gets input for both numbers

   cin>>num1; cin>>num2;

   //This is repeated until the user enters 0

   while(num1!=0 || num2 !=0){

       //This calls the average function, and prints the average

       cout<<Average(num1,num2)<<'\n';

       //This gets input for both numbers, again

       cin>>num1; cin>>num2;

   }

   return 0;

}

Read more about similar programs at:

https://brainly.com/question/17378192

What software type is software that is distributed free of charge, but the source code is not available

Answers

Answer:

Closed Source software programs

when demonstrating 2022 altima’s parking assistance, what steering feature should you mention when pointing out how easy the vehicle is to steer at low speeds?

Answers

Based on automobile technology, when demonstrating 2022 Altima's parking assistance, the steering feature one should mention when pointing how easy the vehicle is to steer at speed is "the Cruise Control w/Steering Wheel Controls."

What is Cruise Control w/Steering Wheel Controls?

The Cruise Control w/Steering Wheel Controls allow the driver or the user to adjust the car's speed to the present rate, either lower or higher.

The Cruise Control feature assists in providing additional time and distance between the car and another one in front when parking or highway.

Hence, in this case, it is concluded that the correct is "the Cruise Control w/Steering Wheel Controls."

Learn more about the same parking assistance in an automobile here: https://brainly.com/question/4447914

How does Python recognize a tuple? You use tuple when you create it, as in "myTuple = tuple(3, 5)". You use brackets around the data values. You use parentheses around the data values. You declare myTuple to be a tuple, as in "myTuple = new tuple"

Answers

Answer:

Python recognizes a tuple when you have parenthesis and a comma. You use brackets when you're creating a list.

You cannot declare a tuple in that format. It has to be:

myTuple = (__, __) or something of the like. There are many ways you can do it, just not the way that you have it.

Explanation:

Python class.

Answer: parantheses AND COMMAS

Explanation:

Fill in the blank to complete the sentence.
Binary Digit 1 0 0 0 0 0 1 1
Decimal Equivalent of Place Value 128 ? 32 16 8 4 2 1
The missing place value is
.

Answers

Answer:

ANSWER:62

Explanation:i dont know just trust me

The base of every positional numeral system is ten, which is expressed as 10 in the decimal numeral system (also known as base-ten). It is the numeral system that modern cultures utilize the most frequently.

What Binary Digit Decimal Equivalent of Place Value?

In binary numbers, place values rise by a factor of 2, as opposed to decimal numbers, where place values rise by factors of ten. The symbol for a binary number is X2. Think about the binary number, 10112 as an example. The place value of the rightmost digit is 120, while the place value of the leftmost digit is 123.

Digits are used to fill in the spaces on the place value chart in the decimal system. Binary, on the other hand, is restricted to 0 and 1, therefore we can only utilize 0 or 1 with each location. In a binary place value chart, the binary number 1001 is positioned to the right.

Therefore, Decimal Equivalent of Place Value 128 64 32 16 8 4 2 1.

Learn more about Binary Digit here:

https://brainly.com/question/20849670

#SPJ2

to find detailed information about the origin of an email message, look at the ________________.

Answers

Answer: header

Explanation:

Explain how analog computers are used to process data generated by ongoing physical process​

Answers

Hi hi :)

Analog computers store data in a continuous form of physical quantities and perform calculations with the help of measures.

Okay bye :)

URGENTT 2 SIMPLE EASY QUESTIONS PLZZ HELP ION UNDERSTAND COMPUTERR ILL GIVE U BRAINLEST

Answers

Answer:

I'll happy to help

Explanation:

Please make your clear. I couldn't understand!

Please clear your question I can’t understand

Which type of relationship is responsible for teaching you values and how to communicate?
a.
online
b.
friend
c.
colleague
d.
family


Please select the best answer from the choices provided

A
B
C
D

Answers

answer:

its either b or d

explanation:

Which of the following is an example of an incremented sequence?

A.
1, 2, 3, 4

B.
4, 3, 2, 1

C.
North, South, East, West

D.
A, B, C, D

Answers

Answer:

A

Explanation:

When a sequence number is genrated, the sequence is incremented independent of the transaction committing or rolling back.

Lenovo Diagnostics - UEFI Version is preloaded into the BIOS on all Lenovo products except for ____________________.

Answers

Based on the information given, it can be noted that Lenovo Diagnostics - UEFI Version is preloaded into the BIOS of their products except the Ideapad models.

It should be noted that Lenovo diagnostic tools are used primarily to diagnose any hardware problems that a computer may have.

Lenovo diagnostic tools are available as a Bootable or a downloadable package. Lenovo Diagnostics - UEFI Version is preloaded into the BIOS of their products except for the Ideapad models.

Learn more about Lenovo on:

https://brainly.com/question/25397058

If you know that a file for which you are searching starts with the letters MSP, you can type ____ as the search term.

Answers

Map I think it is the answer

susan wrote the recursive formula for the sequence represented by the exploit formula An=3+2n. put an C net to any correct statements are correct her error

Answers

The recursive formula of the explicit formula [tex]A_n = 3 + 2n[/tex] is [tex]A_n = A_{n-1} + 2[/tex]

The explicit formula is given as:

[tex]A_n = 3 + 2n[/tex]

When n = 1, we have:

[tex]A_1 = 3 + 2(1)[/tex]

[tex]A_1 = 5[/tex]

When n = 2, we have:

[tex]A_2 = 3 + 2(2)[/tex]

[tex]A_2 = 7[/tex]

When n = 3, we have:

[tex]A_3 = 3 + 2(3)[/tex]

[tex]A_3 = 9[/tex]

So, we have:

[tex]A_1 = 5[/tex]

[tex]A_2 = 7[/tex]

[tex]A_3 = 9[/tex]

Rewrite the functions as follows:

[tex]A_1 = 5[/tex]

[tex]A_2 = 5 + 2[/tex]

[tex]A_3 = 7 + 2[/tex]

So, we have:

[tex]A_1 = 5[/tex]

[tex]A_2 = A_1 + 2[/tex]

[tex]A_3 = A_2 + 2[/tex]

Express 2 as 3 - 1

[tex]A_3 = A_{3-1} + 2\\[/tex]

Substitute n for 3

[tex]A_n = A_{n-1} + 2[/tex]

Hence, the recursive formula is [tex]A_n = A_{n-1} + 2[/tex]

Read more about recursive and explicit formulas at:

https://brainly.com/question/11235928

Using PowerPoint or Impress guarantees that your presentation will do which of the following? stay on schedule and end on time be clear and understood keep your audience engaged and excited none of the above.

Answers

Answer: it will be none of the above

Explanation: i just took this test. the key word is "guarantees" so yeah.

Using PowerPoint or Impress guarantees that your presentation will: D. none of the above.

A presentation can be defined as an act of speaking formally to an audience, in order to explain an idea, piece of work, project, or product, especially with the aid of multimedia resources or samples.

Generally, a speaker can use either PowerPoint or Impress during the process of a presentation to share vital information with his or her audience.

However, none of the aforementioned software applications can guarantee that your presentation will:

Stay on schedule and end on time.Be clear and understood.Keep your audience engaged and excited.

Read more: https://brainly.com/question/10657795

16. A/An __________ is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.

Answers

Answer:

Hospices

Explanation:

A/An Hospices is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.

Answer:

a / an hospice is operated on the principle that the dying have special needs and wants that hospital personel are too busy to handle..

Explanation:

answer:: HOSPICE

A(n) ________ is the portion of virus code that is unique to a particular computer virus. A) virus signature B) encryptio

Answers

Answer:

A) virus signature

Explanation:

Antivirus databases contain what are called signatures, a virus signature is a continuous sequence of bytes that is common for a certain malware sample.

--

Encryption is a way of scrambling data so that only authorized parties can understand the information.

pa help please I need help
10 points :'(
nonsense report:
1 heart​

Answers

Answer:

√ 1. Cellphone

Product Description:

A cellphone is any portable telephone that uses cellular network technology to make and receive calls.

_____ is the dynamic storage allocation algorithm that results in the largest leftover hole in memory.

Answers

Answer: Worst fit

Explanation:

Katie is writing a print statement but nothing is printing. Which of the following should she check for?

A.
Make sure the print statement is surrounded by parentheses.

B.
Make sure the word print is in all capital letters.

C.
Make sure there is a colon after the print statement.

D.
Make sure the next line after the print statement is indented.

Answers

Answer:

A.

Explanation:

Parenthesis are required to be around the data in a print function. All the letters in a  print statement should be lowercase. A colon isn't required after a print statement. Indentation is not needed for a print statement because there are no colons after the statement instead. Here's an example where you would need to indent the line:

def randNum( x, y ):

    x = input("Enter number: ")

    y = input("Enter number: ")

    return x * y

Here's an example of a print statement:

print("My name is Sullen.")

a network consisting of nodes covering a small geographic area is a

Answers

Answer:

that is a Local Area Network (LAN)

If two nearby wireless devices (for example, a cordless phone or a wireless client) transmit using overlapping frequencies, those devices can interfere with one another. What is the term given to this type of interference

Answers

Answer:

wireless interference

Wireless interference is the term given to this type of interference.

What is wireless devices?

Any gadget that has the ability to communicate with an ICS net via microwave or infrared light, often to gather or maintain the data but occasionally to managing different set - point. Mobile nodes are any gadgets that communicate via RF signals. These gadgets include phone, baby monitors, and mechanical door openers, to name a few.

An intervention in communications occurs when a signal is altered in a disruptive way while it passes along one transmission medium in between the source and recipient. The phrase is frequently employed to refer to the addition of undesirable information to a signal that is otherwise good. Common illustrations include: electric sabotage (EMI).

Learn more about wireless devices, Here:

https://brainly.com/question/9979629

#SPJ5

I need some questions and answers in spreadsheet​

Answers

Answer:

you need to show what you need help with

Explanation:

When you empty the trash on your computer what happens?

Answers

It goes to your recently deleted after deleting from your recently deleted a file is saved from that image or png for legal use only

It is saved from that image or png for lawful usage only after being erased from your recently deleted folder.

What is recently deleted folder?

Content that users delete from their accounts now automatically goes to Recently Deleted. The content may then be permanently erased. Or, if users change their minds, they can recover the information from the Recently Deleted folder and add it back to their profile.

The Recently Deleted folder is where files go after you delete them from iCloud Drive or On My [device]. Your files are deleted from Recently Deleted after 30 days. You have 30 days to get a file back if you decide against it or unintentionally erase it.

Photos and movies that you've moved to your Recently Deleted album can be permanently deleted files remain there for 30 days. View here for more information on removing photos.

Thus, It is saved from that image or png for lawful usage

For more information about recently deleted folder, click here:

https://brainly.com/question/1445705

#SPJ5

Aurelia is designing a user interface for a new game app. Which of the following should she taken into consideration for the user interface?

A.
how many variables will need to be used

B.
what inputs the game will need to take in from the user

C.
what type of loops will be used

D.
whether an array will need to be used

Answers

Answer:

C

Explanation:

what types of loop will be used.

You are in charge of setting up a network for a small office and ensuring its security. Describe how you will set up a small network.

Answers

hi there!

Answer:

setting up a small office network can be done with a LAN connection using a router, switch and some cables then we can connect all devices to the router through the switch using cables and it's done.

hope this helps.

What happened to China and India after they modernized their workforces by providing more training and education?

A.
Their economies collapsed as they were unable to pay for their public services.

B.
They experienced civil wars between the haves and have-nots.

C.
People refused to take advantage of these programs due to anti-Western biases.

D.
Millions of people were lifted out of poverty.

Answers

The correct answer is D.

The condition for China and India after they modernized their workforces by providing more training and education is;

''Millions of people were lifted out of poverty.'' So, option D is true.

Given that;

China and India modernized their workforces by providing more training and education.

After modernizing their workforces by providing more training and education, both China and India experienced a significant improvement in their economies.

As a result, millions of people were lifted out of poverty.

This positive change was driven by increased job opportunities, higher productivity, and improved skills among the workforce.

Therefore, Option D is true.

To learn more about education visit:

https://brainly.com/question/19959157

#SPJ3

In 1956, the unit byte was coined by American statistician and computer scientist John Tukey
True or False (Give Explanation)​

Answers

Answer:

False

Explanation:

John Wilder Tukey was an American mathematician and statistician, best known for the development of the Fast Fourier Transform (FFT) algorithm and box plot. The Tukey range test, the Tukey lambda distribution, the Tukey test of additivity, and the Teichmüller–Tukey lemma all bear his name. He is also credited with coining the term 'bit' and the first published use of the word software.

12. In Justify the text is aligned both to the right and to the left margins, adding extra space between words as necessary *
Maybe
False
True

Answers

[tex]\blue{<><><><><><><><><><><><><}[/tex]

[tex]\green{<><><><><><><><><><><><><}[/tex]

Answer:

False

Explanation:

Because, aligment the tex are aligned in the centre of the page.

[tex]\pink{<><><><><><><><><><><><><}[/tex]

[tex]\red{<><><><><><><><><><><><><}[/tex]

False
:)))))))))))))))))

can’t be opened because apple cannot check it for malicious software.

Answers

Answer:

try to reset  your computer.

Explanation:

Other Questions
a car can complete journey of 300 km with the average speed of 60 km per hour how long does it take to complete the journey what is the speed of the car if it covers only 200 km in the same interval of the timeplease I need help urgent Assume there are two variables, k and m, each already assigned a positive integer value and further assume that k's value is smaller than m's. Write the code necessary to compute the number of pertect squares between k and m. (A perfect square is an integer like 9, 16, 25, 36 that is equal to the square ot another integer (in this case 393, 4*4, 5*5, 6*6 respectively). Assign the number you compute to the variable q. For example, if k and m nad the values 10 and 40 respectively, you would assign 3 to q because between 10 and 40 there are these perfect squares: 16, 25, and 36. Fellow-citizens, above your national, tumultuous joy, I hear the mournful wail of millions! whose chains, heavy and grievous yesterday, are, to-day, rendered more intolerable by the jubilee shouts that reach them. If I do forget, if I do not faithfully remember those bleeding children of sorrow this day, "may my right hand forget her cunning, and may my tongue cleave to the roof of my mouth!" To forget them, to pass lightly over their wrongs, and to chime in with the popular theme, would be treason most scandalous and shocking, and would make me a reproach before God and the world. My subject, then, fellow-citizens, is American slavery. I shall see this day and its popular characteristics from the slaves point of view. Which best describes why this is an example of inductive reasoning? It starts with details and uses them to support a more sweeping statement. It makes an assertion, then counters arguments against that assertion. It defends an argument with carefully researched facts and excerpts. It uses an anecdote to support a broad claim about the injustices of slavery. Having just turned 16 years old, your friend has their mind set on buying a new car by the time they turn 20 years old. They can afford to save $440 per month. They place the money into an annuity that pays 5.5% per year, compounded monthly. How much will they have to spend on a car after 4 years? hey can u help me in my hw Human activities also cause the earth quake explain and plz don't write the thing not related 2 the question. Biotic resources are........................................... Derived from living things Derived from non-living things Made by human beings None of The above Consider the monopolistically competitive market structure, which has some features of a competitive market and some features of a monopoly.Complete the following table by indicating if each attribute characterizes a competitive market, a monopolistically competitive market, both, or neither. Check all that apply.AttributesCompetitive MarketMonopolistically Competitive MarketFew sellers Free entry Price is equal to marginal cost Price equals average total cost in the long run In an episode of the old school version of the game show Family Feud, 43 out of a random sample of 100 people said they pick their noses at red lights. Find a 95% confidence interval of the proportion of all people who pick their noses at red lights. Be sure to interpret your answer Hello! I am taking physics H on edge 2021 and if someone could give me the completed Electromagnetic Fields Plan an Investigation student guide/lab report I would be eternally grateful!!! Write a number in which the value of the 3 is ten times as great as the value of 3 in 135,864 Which topic would best suited for a document using cause and effect organization If a car drives 10 mph South, this is an example of a:A. DisplacementB. VelocityC. SpeedD. Distance What is the are of the polygon below!help please! Please helpppppp i need help///..ASAP!!!!!!!,,!!!!!! To wash a window that is 4 meters off the ground, Rafi leans a 5-meter ladder against the side of the building. To reach the window, how far away from the building should Rafi place the base of the ladder? In the graphic, 195 represents the _______.195 Pt 78 A. Atomic MassB. Atomic NumberC. Neutron Number name any five of the project that are conducted in Nepal mention their donors and also when they were started exept rural water supply and sanitation project in western nepal ,School sector reform plan, dhulikhel sindhuli bardibas road project,nepalese women skill development project. Look up Selling Manager Pro on eBays site. Compare the free and paid versions. O BuryingRecyclingQ5 ) Match the column *4 pointsNon- Liquid Forrecyclable waste shoppingChemicalOOwasteDirtywaterOOChocolateOOwrapperCloth bagoo what police did King Cyrus ll establish in the Persian Empire??