Identify the reasons that numeric data representation is important to computer programmers. Check all that apply.

The computer reads data in binary form.

Using a number system that makes sense to a programmer makes it easier to track the data.

Number systems are used all around the world for important work.

The ability to represent data in 0s and 1s is essential to computing.

Answers

Answer 1

Answer:

A, B and D

Explanation:

Answer 2

Answer:

everything except the 3rd

Explanation:

edge 2021


Related Questions

Employees at Morning Buzz Coff ee Shop have been told they’ll get a bonus if they bring in enough pounds of recyclable newspapers. Th ey want a program to calculate the amount they need to bring in each day to make this total, based on the total number of pounds to be collected and the number of days they’ll be bringing in newspapers. Th e program should ask for these amounts and calculate how many pounds they need to bring in each day to make the total in that number of days. Th ey plan to run the program several times until they can find a number of pounds per day that seems reasonable. Using pseudocode, develop an algorithm to solve this problem. Include standard documentation and comments, and save your algorithm in a file named recyclingCalculator.txt in Notepad.

write this well, and add comments

Answers

223 AR 15's carbon 9's they all on me

There are different ways too write a code. Check more about this code below?

What is this code about?

The fires thing to do is to Start with:

Declare Numeric totalAmountOfNewspapers

Declare Numeric daysUntilDeadline

Declare numeric newspaperRequired

//calculate amount needed per day

Display "How many days are left until the deadline?"

Input daysUntilDeadline

Display "Enter the amount of newspaper you need."

Input totalAmountOfNewspapers

newspaperRequired = totalAmountOfNewspapers / daysUntilDeadline

Display "You have" + newspaperRequired + "until you reach the goal."

Learn more are programming from

https://brainly.com/question/22654163

#SPJ2

what are worms ? this question is from computer from chapter virus;​

Answers

a computer worm is a stand-alone malicious program which can spread itself to other parts of any device. However, one similarity is that both virus and worms are a subcategory of malware.

Answer:

A computer worm is a type of malware that spreads copies of itself from computer to computer. A worm can replicate itself without any human interaction, and it does not need to attach itself to a software program in order to cause damage.

Explanation:

The options on the Ribbon will____:

Answers

replace both the traditional menu bar and toolbars.

Hopefully, It's Correct... (ノ◕ヮ◕)ノ

Jasmine took many pictures at a photo shoot. She wants to transfer these pictures from her camera to her laptop for image enhancements. What mode is best to transfer the images? A. USB Cable B. Bluetooth C. the cloud D. thumb drive​

Answers

The answer would more likely be A
If it’s not correct I’m very sorry

Answer:

USB cable is correct

Explanation:

edmentum/plato

A program uses 4 bits to store numbers. When it adds 10 and 7, the result is 1. Which of the following best explains why?
1) the program is reporting the number of bits required to compute the sum
2) an overflow error led the program to reset to O at the number 16
3) 1" is an error code that indicates a rounding error
4) 4 bits is not enough to represent the number 10, so the computer reported only the tens value

Answers

Answer:

2

Explanation:

overflow

A data type overflow issue typically occurs when the data type used to store the data was unable to accommodate the data. In addition, some data types are limited in the size of the numbers they can hold. If a data type is a single byte and the amount of data to be saved is larger than 256, an overflow error will be generated. Thus, option B is correct.

What an overflow error led the program to reset?

Using exception handling, these mistakes can be addressed. We will examine this exception handling in the section that follows.

We observed the Overflow error in the aforementioned programs, which happens when the current value exceeds the limit value. Furthermore, we must raise the overflow Error exception in order to manage this.

Therefore, When software encounters an overflow error, it means that it tried to write data outside the memory's capacity. Every program has memory set aside for a stack.

Learn more about overflow error here:

https://brainly.com/question/27493058

#SPJ2

For questions 2-4, consider the following code:

if (month ==9):
if (day > 15):
print ("Second half of the month")
else:
print ("First half of the month")
else:
print ("Not in September")
What is the output if month = 9 and day = 14?

Answers

Answer:

First half of the month

Explanation:

Given

The above lines of code

Required

Determine the output if month = 9 and day = 14

The first if statement: if (month ==9):  checks if month equals 9.

This statement is true, so the next statement is executed.

The next executable statement:

if (day > 15):

checks if day is greater than 15.

This statement is false, so the else statement is executed

else:

print ("First half of the month")

The above statement is executed and the string "First half of the month" is printed

Answer:

e

Explanation:

Calculate the formula unit mass if Al(NO3)3.(Al=27,N=14,O=16)​

Answers

Answer:

Explanation:

EMAIL query ? comment or request a type of GCSE calculation not covered? ... atomic masses are Al = 27 and O = 16; so the relative formula mass RFM or Mr = (2 x 27) + (3 x 16) = 102

Write a program that accepts three decimal numbers as input and outputs their sum.

Answers

Answer:

void sum(float a, float b, float c){

printf("%0.3f", (a + b + c));

}

Explanation:

The answer given is written in C, but the same function can be reimplemented easily in whatever language this is required in.

What are software applications?

Answers

Answer:

files that are stored on the computer

Explanation:

there is an actual definition, but it isnt listed here. Application software is commonly defined as any program or number of programs designed for end-users. That's it, in a nutshell.

Answer:

Lines of code that were written by developers.

Explanation:

Just took the test

Selective colleges choose to have in-person meetings to learn more about the applicants. These meetings are called:

A. college recruiting meetings.
B. personal meetings.
C. student orientations.
D. college interviews

Answers

The meeting is called collage interviews

Selective colleges choose to have in-person meetings to learn more about the applicants. These meetings are called college interviews. Thus, option D is correct.

What is a College?

A college has been either an educational institution or itself or one of its component parts. A college would be the secondary school, a part of the a collegiate or the federal university, a postsecondary institution offering the degrees, or the facility providing the vocational training.

A college could be the high school or the secondary school, a college of the further education, a training facility that would grants trade qualifications,as well as a higher-education provider without university status, or the component part of a university.

In the United States, a college may provide undergraduate programs as an independent institution, as the undergraduate division of a university, as a residential college of a university, as a community college, or as the undergraduate division of a non-profit organization.

To learn more about College, visit:

brainly.com/question/4217955

#SPJ2

The volume of a sphere is 4/3πr3, where π has the value of "pi". Write a function called print_volume (r) that takes an argument for the radius of the sphere, and prints the volume of the sphere.

Call your print_volume function three times with different values for radius.

Answers

Answer:

In Python:

def print_volume (r):

   volume = 4/3 * 3.142*r**3

   print(volume)

print_volume(7)

print_volume(14)

print_volume(22)

Explanation:

This defines the function and takes radius r as the parameter

def print_volume (r):

This calculates the volume

   volume = 4/3 * 3.142*r**3

This prints the volume

   print(volume)

The next three lines call the function with different values

print_volume(7)

print_volume(14)

print_volume(22)

If a Magnet is Positive what will happen?
A. Metal will be Attracted
B. Metal will not be Attracted

Answers

Answer:

Your answer is A :)

Explanation:

You see, if a magnet is positive it means it will attract metal.

Hope this helps!

Have a good day, Pots ❤

Answer:

a

Explanation:

What are the steps for viewing changes by different viewers?

Answers

Answer:

Click the Review tab, click Show Markup, click Reviewers, then click the names to select or deselect them.

Explanation:

just did edge 2020 brainiest plz

Which of the following best describes the existence of undecidable problems? *

Answers

Answer:

An undecidable problem is a problem for which there is no algorithm that can be constructed that would correctly guess the answer every time.

Explanation:

I found the answer choices, and that is literally the definition of an undecidable problem.

Select the word or phrase from the drop-down menu to complete each sentence. File names consist of a ______ and a file extension. A file extension indicates the _______. A .bmp file extension indicates a ________ file.

Answers

Answer:

base file name, file format, bitmap image

Explanation:

File names consist of a base file name and a file extension.  A file extension indicates the file format.  A .bmp file extension indicates a bitmap image file.

What is a file?

The region where the information is collect is known as file.

The file may contain text, image, Gif, animation, audio, or video, etc.

The format of the file shows the quality of the file.

File names consist of a base file name and a file extension.

A file extension indicates the file format .

A .bmp file extension indicates a bitmap image file.

More about the file link is given below.

https://brainly.com/question/4461652

#SPJ2

I show you what the computer has processed and you have to look at my screen to see what I have for you. What am I?

Answers

Hey,

The answer to this is the monitor. This is the screen or screens that hook up to your pc most of them use the modern HDMI but there are other connecters like DVI,DisplayPort  and the old VGA.

Hope this helps have a great day

-scav

To add your own unique ideas to completed 3D models, you do not need to understand the design process of the 3D model's creator.

Answers

Answer:

It depends

Explanation:

If the model is a spliced model, and has many different rigged parts (maybe like a movable T-rex or something), then you need to understand how it all works, and how it was made, but if its a solid object (lets say a rubber duck model) that you want to add stuff to, or change the color of, then you don't really need background info.

Identifying an Editing Tool or Option
Which tool or option can you use to copy and apply the color of an existing text to another text within a presentation?
format painter
font dialog box
font color option
replace fonts option

Answers

Format painter I hope it’s right

Answer:

Format Painter

Explanation:

correct in Edge

(d) What other services beside cloud-based software may be provided by Internet hosts?[1]

Answers

Answer:

Internet

(Some have Cable TV)

Which part of the email address signifies the domain name?

A. (Patrick)
B. (at sign)
C. (company_abc_.com)
D. (.com)

Answers

The part of the email address signifies the domain name is (company_abc_.com). Hence option C is correct.

What is email?

Email is defined as the internet-based transmission of computer-stored messages from one user to one or more receivers. People can exchange emails fast thanks to a global email network. The electronic equivalent of a letter is e-mail, which offers benefits in flexibility and immediacy. Email is a crucial medium for business communication since it is accessible, quick, inexpensive, and easy to replicate.

The email domain is the part of an email address that comes after the sign. The portion that comes before the x sign indicates the name of a mailbox and is frequently the recipient's username. The domain name is the text that follows the sign.

Thus, the part of the email address signifies the domain name is (company_abc_.com). Hence option C is correct.

To learn more about email, refer to the link below:

https://brainly.com/question/14666241

#SPJ2

Which are options available for formatting tables? Check all that apply.

merging cells
including quotes
splitting cells
including shading
including borders

Answers

Hey,

so the sort answer is all but B "including quotes"

the long answer is that all of them but b are for formatting aka style.

Hope this helps

-scav

Answer:

A,C,D,E

Explanation:

The best way to get clarification from someone is by

Answers

Answer:

Admit that you are unsure about what the speaker means.

Ask for repetition.

Answer: can you simplify that for me I don’t understand.

A for-loop statement can iterate over many items in

a function.

a variable.
a list.

a pass statement.

Answers

A list ..............

Answer: a list. This is the correct answer I checked it out and got it right.

Explanation:

A for-loop statement can iterate over many items in a list. This is the correct answer I checked it out and got it right.

PLEASE DO ME THIS SOLID .... IM TRYING MY HARDEST IN THIS CLASS........Select the TWO correct statements about the features of presentation programs.

Slide transitions are visual effects that signal the shift from one slide to another. Speaker Notes allow you to add notes to help you remember what you need to say. Speaker Notes also allow you to show different pieces of information to different audiences. The Hide Slide option allows you to hide and unhide Speaker Notes

Answers

Slide transitions are visual effects that signal the shift from one slide to another.Speaker Notes also allow you to show different pieces of information to different audiences.

Hopefully, it's correct... ( ˙ ˘ ˙)

Which task would most likely be completed by a physician’s assistant?
A.
Diagnose and treat medical conditions of patients
B.
Clean and maintain the hospital machinery and equipment.
C.
Conduct research studies to determine medication dosages.
D.
Review the budget and determine ways to save money.
E.
Prepare reports to be presented in medical conferences.

Answers

Answer:

A

Explanation:

My mom is a PA

Answer:

A

Explanation:

what are boot sector virus ?

Answers

Answer:

A normal virus

Explanation:

Answer: Any Virus that loads during boot

-DoggyMan5

When creating and modifying templates, which keys are used to add placeholders?
Alt+F9
Shift+F8
O Delete+F8
Ctrl+F9

Answers

Answer:

On the Slide Master tab, click Insert Placeholder, and then click the type of placeholder that you want to add. Click a location on the slide layout, and then drag to draw the placeholder. You can add as many placeholders as you like. (For Power point) But not sure about a short cut for it. Hope this helps!

Answer:

Insert Placeholder

Explanation:

I'm skeptical about (b) , is this accurate or the ranges should be listed differently ?​

Answers

Answer:

My guess would be C2-C11, But I may be wrong

Imagine a graph

Hope this helps....

Different computer applications and their uses.

Answers

Answer:

Application Software Type Examples

Word processing software MS Word, WordPad and Notepad

Database software Oracle, MS Access etc

Spreadsheet software Apple Numbers, Microsoft Excel

Multimedia software Real Player, Media Player

Presentation Software Microsoft Power Point, Keynotes

Explanation:

I store data that the CPU needs. What am I?

Answers

Answer:

Memory

Explanation:

Memory send commands to the CPU . Alternative modes of memory exist, and each one of them plays an essential role in operating a software machine.Memory is commonly called storage. Either the storage is unstable or non-volatile.

Answer:

I store data that the CPU needs . I am Memory unit .

hope it is helpful to you

Other Questions
this is kirtys recipe for breakfast cereal 50 grams of oats 30 grams of raisins 40 grams of nuts if she uses 125 grams of oats, how many grams of raisins does she need please help me with this question please help me Complete this by writing a one paragraph conclusion which addresses the following questions: 1.Do you believe most people try to live a moral and ethical life? Why? SOMEONE PLS HELP ILL GIVE BRAINLIST Immigration Population in the United States by Age and World Region of Birth: 2003Age Total Foreign Born, Number Total Foreign Born, Percent European Immigrants, Number European Immigrants, Percent Asian Immigrants, Number Asian Immigrants, Percent Latin American Immigrants, Number Latin American Immigrants, Percent Immigrants from Other Areas, Number Immigrants from Other Areas, Percent0 to 4 329,510 1.0 34,800 0.7 105,310 1.2 161,120 0.9 28,280 1.45 to 9 730,665 2.2 88,205 1.8 164,140 1.8 426,790 2.4 51,530 2.510 to 14 1,055,350 3.1 113,240 2.4 240,660 2.6 625,035 3.6 76,410 3.715 to 19 1,535,180 4.6 141,095 3.0 354,845 3.9 950,495 5.4 88,745 4.320 to 24 2,610,395 7.8 184,300 3.9 556,655 6.1 1,749,305 10.0 120,135 5.825 to 29 3,579,890 10.7 268,865 5.6 883,570 9.7 2,256,020 12.9 171,435 8.330 to 34 4,007,920 12.0 341,525 7.2 1,142,705 12.5 2,309,850 13.2 213,840 10.335 to 44 7,404,150 22.1 818,755 17.1 2,060,050 22.5 4,055,225 23.1 470,120 22.645 to 54 5,400,560 16.1 791,225 16.6 1,719,825 18.8 2,517,960 14.4 371,550 17.955 to 64 3,322,520 9.9 777,095 16.3 1,014,420 11.1 1,317,840 7.5 213,170 10.365 to 74 2,020,995 6.0 597,610 12.5 573,140 6.3 712,970 4.1 137,275 6.675 to 84 1,193,755 3.6 476,850 10.0 269,985 3.0 347,035 2.0 99,885 4.885 years+ 343,050 1.0 142,025 3.0 61,650 0.7 104,070 0.6 35,305 1.7Total 33,533,945 100 4,775,585 100 9,146,960 100 17,533,710 100 2,077,690 100The chart above shows data related to the immigrant population in the United States by age and world region of birth in 2003.Explain Ravenstein's laws of migration.Identify ONE way in which the data supports Ravenstein's laws.Ravenstein used a term called friction of distance to explain a specific pattern related to migration. Define friction of distance.Describe ONE example of the phenomenon of friction of distance.Explain whether the data in the table supports or refutes the idea of friction of distance.Based on the data in the table, identify the origin of the greatest number of immigrants arriving in the United States.Choose ONE immigrant group from the data table and explain how that group has affected the United States.JUST ANSWER THE BOTTOM (2-3 sentences) Suppose that f(x) = 3 (8x - x^2)/256 for 0 < x < 8 Determine the following probabilities. Round all of your answers to 3 decimal places (e.g. 98.765). a. P(X < 5) b. P(X< 9) c. P(5 < X < 7) d. P(X > 3) e. Determine x such that P(X < x) = 0.95 Is 3/7 bigger then 3/5 Can you help me with these two? Sorry- can you lease help me An item is regularly priced at $27. It is now priced at a discount of 45% off the regular price. Find the price now A student draws a scientifically accuratemodel of the solar system. Which is NOT apiece of information that the studentneeds to make their model?O A) the size of MarsO B) the shape of the Milky WaygalaxyO C) the distance between the Sunand each planetO D) the shape of Earth's orbit pls help im stucki will give brainiest Earth has seasons because _____.it rotates on its axis as it moves around the sunthe temperature of the sun changesits axis is tiltedthe distance between Earth and the sun changes What is a good question to ask yourself when you see a word you don't know?A. Do I know any other words that look like this?B. Why did the author use this word?C. Why did I read this book?D. Am I sure I don't know this word? y/3= -4 i hate mathss A certain green light bulb emits at a single wavelength of 550 nm. It consumes 55 W of electrical power and is 75% efficient in converting electrical energy into light. (a) How many photons does the bulb emit in one hour? (b) Assuming the emitted photons to be distributed uniformly in space, how many photons per second strike a 10 cm by 10 cm paper held facing the bulb at a distance of 1.0 m? One number is 8 timesa first number.A third number is 100 more than thefirst. If the sum of the three numbersIS 630 find the numbers. An encryption key is used to help decrypt messages. True or False. Explain why Tyler bought 2 tickets to a basketball game on the website Game Finder. Each ticket cost $65, and the website charged a convenience fee that was a small percent of the ticket cost. If Tylers total bill came to $132.60, what percent was the convenience fee? What is the momentum of a 1, 500 kg car traveling at 3m/s? 67,500 kgm/s 67.5 kgm/s 4.5 kgm/s 4,500 kgm/s Write an integer for the basement floor is 12 feet below the ground? 30 + 18 = 6(5 + ___)