Answer:
A, B and D
Explanation:
Answer:
everything except the 3rd
Explanation:
edge 2021
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
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;
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____:
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
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
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?
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)
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.
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?
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
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.
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
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?
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? *
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.
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?
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.
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
Answer:
Format Painter
Explanation:
correct in Edge
(d) What other services beside cloud-based software may be provided by Internet hosts?[1]
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)
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
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
Answer:
Admit that you are unsure about what the speaker means.
Ask for repetition.
A for-loop statement can iterate over many items in
a function.
a variable.
a list.
a pass statement.
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
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.
Answer:
A
Explanation:
My mom is a PA
Answer:
A
Explanation:
what are boot sector virus ?
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
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 ?
Answer:
My guess would be C2-C11, But I may be wrong
Imagine a graph
Hope this helps....
Different computer applications and their uses.
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?
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