Can someone please help me I need to turn this in my 3:00pm Eastern time


What mathematical function would you use to find Money Left Over in a spreadsheet if you had a Beginning Balance of $10000.00 and a final total of $5000.00?​

Answers

Answer 1

Answer:

1000000000

Explanation:


Related Questions

What is output? Select all that apply. c = 0 while (c < 5): c = c + 1 print(c) 6 5 2 4 3 0 1

Answers

Answer:

2 4 3 0 1

Explanation:

Which function is correctly written?
=Average(C4)
=Average(C2:010)
=Average(D5-D20)

Answers

Answer:

=Average(C2:010)

Explanation:

You us the ; between the numbers, and u need two numbers for average. Sorry if wrong.

Answer:

2:010

Explanation:

7.4 code practice question 2 edhesive

Answers

Answer:

def GPAcalc(g, w):

   if g == "a" or g == "A":

       return 4 + w

   elif g == "B" or g == "b":

       return 3 + w

   elif g == "C" or g == "c":

       return 2 + w

   elif g == "D" or g == "d":

       return 1 + w

   elif g == "F" or g == "f":

       return 0 + w

   else:

       return "Invalid"

grade = input("Enter your Letter Grade: ")

weight = int(input("Is it weighted? (1 = yes, 0 = no)"))

gpa = GPAcalc(grade, weight)

print("Your GPA score is: " + str(gpa))

Explanation:

I hope this helps!

The code practice question illustrates the use of conditional statements.

The execution of a conditional statement depends on its truth value

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

#Start by initializing the dictionary

dict = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

#This gets input for grade

grade = input().lower()

#This gets input for the weighted average

weighted = int(input())

#If the weighted average is 1, and the grade is in the dictionary

if weighted == 1 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is: "+str(dict[grade] + 1))

#If the weighted average is 0, and the grade is in the dictionary

elif weighted == 0 and grade in dictionary:

   #This prints the GPA score

   print("Your GPA score is : "+str(dict[grade]))

#Otherwise

else:

   #The grade is invalid

   print("Invalid")

Read more about similar programs at:

brainly.com/question/19117781

Time shifting occurs when

a. Clocks move ahead one hour in the spring

b. Works are copied and kept for future generations

C. Individuals copy works to view at a later time

d. Copyrighted materials comes into the public domain

Please select the best answer from the choices provided

A
B
C
D

Answers

Answer: C

Time shifting is when you move from one period in time to another.

Time shifting occurs when Individuals copy works to view at a later time.

What is Time shifting?

Time shifting is known to be a term that connote a move or a shift of a signal in the aspect of time. This can be done by the use of addition or subtraction.

Conclusively, Time shifting do take place when people copy works to view at a later time as they are moving the work to future time.

Learn more about Time shifting from

https://brainly.com/question/14124969

PowerPoint SAM Capstone Project 1 can PLEASE someone do it for me I have some directions like steps and you just have to do it in a powerpoint slide please I would really appreciate it

Answers

Answer:

Sooo what's the question??

Explanation:

Answer:

kk

Explanation:

Evaluate if the following function is a good candidate to be placed in a library. Why or why not?

Answers

Answer:

It cannot be a good candidate because the creator of the library is attempting to update the global variables player1Points and player2Points. The updated scores for each player won't be retained unless someone creates the global variables player1Points and player2Points in their program.

The updateScore function is meant to update the point of player1 and player2 ; since the variables player1 and player2 are only defined in the function, then they do not have a global scope. Hence, the function isn't right to be placed in a library.

Variables defined outside a function are called global variables ; hence, they can be referenced anywhere within the program.

Since the function references a global variable, then any program which intends to use the function must have the variables player1 and player2 must be defined globally in the program.

Hence, it is not a good candidate to be placed in a library.

Learn more:https://brainly.com/question/20720413


dash+dash=100
Both dash and dashare prime numbers.
How many different solutions can you find​

Answers

Answer:

6

Explanation:

97+3 = 100

89+11 = 100

83+17 = 100

71+29 = 100

59+41 = 100

53+47 = 100

I counted them using excel, see pic.

Answer:

?

Explanation:

?

How does a passive attack differ from an active attack?

Answers

Active and Passive Attacks are security attacks. In Active attack, an attacker tries to modify the content of the messages. Whereas in Passive attack, an attacker observes the messages, copy them and may use them for malicious purposes. ... In Passive Attack, information remain unchanged. Hope this helped :)

A mind map presents project information in what type of format?
nt
O unordered
linear
serial
sequential

Answers

Answer:

Unordered

Explanation:

got in on edg

Answer:

B

Explanation:

Which of the following is used as a placeholder for future code and has no function being executed?

hold

return
pass

null

Answers

Answer:

Pass, does nothing, you can put it in a function to just skip over it without failing.

Explanation:

Hold pauses the operation, return returns a value, and null is a placeholder variable that has many uses.

Answer:

i think it is pass

Explanation:

if not srry and let me know

what steps should you take if your harassed online​

Answers

tell an adult and report the person harassing you
block them and if ur comfortable, tell ur parents

An audio recording has five minutes of silence at the beginning. Which audio-editing technique will delete this unwanted silence?

topping and tailing

normalizing

equalizing

dithering

Answers

Answer:

topping and tailing

Explanation:

Which of the following is the main cause of network failure?

A. cables that break
B. peripherals that get in the way
C. storms
D. human error

Answers

Answer:

Possibly A or C

Explanation:

Answer: human error is the right answer!!!!!

Explanation:

I took the quiz

A. Fill in the blanks:
1.
is an effective way to display data in pictorial form.
2. Data series are the bars or slices that show the
3. Barchart displays data in the form of long
rods.
4.
is the vertical axis that is used to plot the values.
5.
is a key that is used to identify the colours, patterns, or symbol assigned to a data series.

Answers

Answer:

1. Charts.

2. Data series.

3. Rectangular.

4. Y-axis.

5. Legend.

Explanation:

1. Charts: is an effective way to display data in pictorial form. It includes the use of pie charts, bar charts, venn diagram, etc.

2. Data series: are the bars or slices that show the data values. It comprises of related data sets.

3. Barchart displays data in the form of long rectangular rods. Generally, bar charts are used for the comparison of informations obtained from a data collection by representing each value (information) with rectangular bars respectively. A bar chart has a x-axis and a y-axis used to represent the various categories of data collected.

4. Y-axis: is the vertical axis that is used to plot the values. The other axis for plotting values is known as X-axis.

5. Legend: is a key that is used to identify the colours, patterns, or symbol assigned to a data series.

PLS HELP
Which of these situations describes a computer network?


(Choice A)

A programmer runs a program using parallel computing on their multi-CPU computer. Each CPU processes a different part of the program and stores the final results in shared memory.

(Choice B)

A plant biologist inserts a moisture sensor into a the soil of a potted plant. The moisture sensor records the moisture every minute and saves it onto an SD card for storage.

(Choice C)

A smartphone store displays 20 different smartphones for shoppers to try out. All the smartphones are on a long table and plugged into a single power strip.

(Choice D)

A company gives every employee a desktop computer and connects each of the computers to each other using wires, so that they can quickly transfer files and messages.

Answers

Answer: A

Explanation:

The answer is A

Using the concept of computer network, it is found that the correct option is given by:

D. A company gives every employee a desktop computer and connects each of the computers to each other using wires, so that they can quickly transfer files and messages.

-----------------------

A computer network is when multiple electronic devices are connected with each other using wires, for transfer of files and messages. There are various protocols for this, such as TCP-IP, public and private key cryptography, and the scope of these topics is studied in computer networks.The option that represents the multiple electronic devices connected by wires is given by option D, and thus it is the correct option.

A similar problem is given at https://brainly.com/question/14200752

Need help ASAP
Thanks+ BRAINLIST only for correct answer

What is the importance of protecting other’s personal information and privacy?

Answers

It is important to protect yours and others personal informations because some people might try to take advantage of them and use them for no good such as fraud, charging your card, taking your passwords, and so on

Hey,

So there are so many reasons to protect yours and others personal info online but  here are just a few.

1. Help stop credit card fraud. this is one of the biggest types of fraud in the internet.

2 stop identity theft.

3  prevent your social media accounts getting compromised .

Some fine advise.

change your login in info  more then not. it is more likely that someone will find your login info  online or thought a software then just guessing it.

-scav

Which of the following returns to the beginning of the while loop?
the continue statement

the break statement

the return statement

the end statement

Answers

Explanation:

z decreased by 3 as an algebraic expression is *

Answer:

The Continue Statement

Explanation:

Edge

The ___ function can be entered by clicking the cell where you want to add the funtion such as cell J6. Then click the arrow next to the autosum button and choose averange

Answers

Answer:

The name of the function that can be added to a cell below a column of numbers or to the right of a row of numbers to find the average by clicking on the AutoSum button on the HOME tab is;

Average

Explanation:

The average function is the function used to quickly find the arithmetic mean, 'μ', or average of a number group, x₁, x₂, x₃, ...xₙ, which is given by dividing the sum of the numbers by the count, 'n', of the numbers, as follows;

μ = ∑x/n

The AutoSum can be used to find the average in Microsoft Excel by clicking on the next cell to row of cells to the right or immediately below the column of cells, then clicking on the down arrow on the right of the AutoSum button on the HOME tab and selecting Average from among the options, the average of the numbers in the column or row of cells will be displayed in the selected cell.

Therefore, we have;

The Average function can be entered by clicking the cell where you want to add the function such as cell J6. Then click the arrow next to the AutoSum button and choose average

1. You are about to start a new photography program at your graduate school. While you already have a professional DSLR
camera, you want to purchase some additional tools and equipment so that you are prepared for any photography
situation. What are some helpful tools and/or equipment that you might purchase? Identify, describe, and explain
several items including how they are used and why.

Answers

Answer:

I should bring extra batteries, a UV filter, Cleaning kit, a camera case, external hard drive, the 'Nifty Fifty' lens, and a tripod. Most photographers use a UV lens filter to protect their cameras, especially if they have an expensive lens. UV lens filters prevent dust and dirt from coming into contact with the lens. ... If rain or water droplets get on your lens filter, it's easier to wipe these off your filter than your lens. The best lens cleaning kits will keep your lenses clean to avoid photos of your fingerprints. A good lens cleaning kit is a photographer's best friend. It might not be as fun or flashy as the latest camera gear, but it's just as important as your DSLR when it comes to capturing great images.  Photos are often backed up to different devices and a remote cloud. External hard drives are perfect for local backup. Requirements: The requirements for external hard drives used for backup are large volume and affordability. Speed and size are not critical here.  Tripods are used for both still and motion photography to prevent camera movement. They are necessary when slow-speed exposures are being made, or when lenses of extreme focal length are used, as any camera movement while the shutter is open will produce a blurred image.

Explanation: I just did this and this was my answer. Im getting an A in this class (pls mark me brainlyist)

To buy some helpful tools and/or equipment that you might purchase are the greater batteries, a UV clear out, a Cleaning package, a digital digicam case, an outside difficult drive, the 'Nifty Fifty' lens, and a tripod.

What is the other equipment that helps in camera protection?

The excellent lens cleansing kits will hold your lenses easy to keep away from pics of your fingerprints. An excellent lens cleansing package is a photographer's excellent friend. It won't be as amusing or flashy because of the brand new digital digicam gear, however, it is simply as essential as your DSLR in terms of shooting superb images.

Most photographers use a UV lens clear to defend their cameras, in particular in the event that they have a steeply-priced lens. UV lens filters save you dirt and dust from getting into touch with the lens. If rain or water droplets get to your lens clear out, it is less complicated to wipe those off your clear out than your lens.

Read more about the lens:

https://brainly.com/question/9757866

#SPJ2

When is it appropriate to delete an entire row or column as opposed to deleting the data in the row or column

Answers

Answer:

huh wdym

Explanation:

Identify the causes of installation problems. (Choose all that apply)

Answers

Answer:

the last one

Explanation:

please mark brainliest

Answer: The answers are: A,B,D

edg.

Which are malicious codes?
Select all that apply.
Spyware
Serum
Key loggers
Worms
JavaScript​

Answers

Answer:

Spyware

Key Loggers

Worms

Issue: I don't know what Serum is.

write a python program to convert a number entered by the user
the input is 985
the output is Nine Eight Five

Answers

Answer:

# Function to convert decimal number

# to binary using recursion

def DecimalToBinary(num):

if num >= 1:

DecimalToBinary(num // 2)

print(num % 2, end = '')

# Driver Code

if __name__ == '__main__':

# decimal value

dec_val = 24

# Calling function

DecimalToBinary(dec_val)

Explanation:

What stops the current loop and resumes execution at the next statement?
the break statement

the final statement

the pass statement

the infinite-loop statement

Answers

Answer:

break statement:))

Explanation:

The statement that stops the current loop and resumes execution at the next statement is known as the break statement. Thus, the correct option for this question is A.

What is the break statement?

The break statement may be defined as a type statement that effectively terminates the execution of the nearest enclosing do, for, switch, or while statement in which it considerably appears.

While performing the break statement control passes to this statement and follows the termination of the break statement very efficiently. The purpose of the break statement is to break or terminate a loop function as early as possible.  

Therefore, the break statement is the statement that stops the current loop and resumes execution at the next statement. Thus, the correct option for this question is A.

To learn more about Break statements, refer to the link:

https://brainly.com/question/14548592

#SPJ2

sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses i am a failure sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses

Answers

Answer:

SUNGLASSES!!!!! Also, side note, you're not a failure!

EISDHUOSHSD ITS WORLD WIDE HANDSOME

The unique identifier for each record in a database table is called the

A. Record Id
B. Id number
C. Primary key
D. Row number

Answers

The answer is C. Primary Key. I hope this helps

Answer:

C

Explanation:

Thank the other person

I need to change the subject before they get onto me. I am only revealing info today if you are a friend.

Let's change the subject to the Tillinghan Mystery (Totally not related to the Dad Mystery)

Who is Tillinghan, and what is his website?

Answers

Answer:

uuuuummmm i have no idea what your doing but tillingan is a doctor and his website is to sell children over internet

Explanation:

im scared of myself ik

B. Write your thoughts about the following in your notebook.
1. How will you safely use the computer when you are online?
2. How can one use the computer or mobile devices for business?
3. What would you do if you encounter unsafe and questionable content
or messages?​

Answers

1. stay with adult supervision

2. check on the web and create a site for it

3. quickly remove it and try not to read it

Explanation:

I really hope this helps

please mark as brainliest

CAN SOMEONE PLEASE EXPLAIN HOW TO FIND BINARY CODE TO ME LIKE IS IT EASY LIKE I NEED THE WHOLE BREAKDOWN PLS

Answers

Answer:

In binary code, each decimal number (0–9) is represented by a set of four binary digits, or bits. The four fundamental arithmetic operations (addition, subtraction, multiplication, and division) can all be reduced to combinations of fundamental Boolean algebraic operations on binary numbers.

Explanation:

Binary Numbers Explained – Beginners Guide ... Before we learn about the binary number system we will look in more detail ... and they are easier to learn using a system that you are more familiar with. Firstly our decimal system uses 10 as a base and the numbers range from 0 to 9 ... See Wiki for details.

Will give 5 star and the mark brainleist

Answers

I think it’s “head”????
it would be
because it has to start and end with the same thing
and since it says student grades it has to end in
Other Questions
Can somebody help me? How has the Sahara Desert contributed to nomadic herding in northern Africa? Homologous Structures Relate to...O Different People Studying EvolutionO Different Building Where Evolution is StudiedO Different Animals with Similar StructuresSimilar Animals with Different Structures Why is the Consumer Federation of America important? Find the surface area of the rectangle:8 cm5 cm12 cm which is a base unit used in the metric system?A:quartsB:litersC:pintsD:degrees Fahrenheit pls what's the answer I need help can you? Paula loved her English class. Today, she learned that in some works of literature, every element in the story has both a literal and a symbolic meaning. Which literary device did Paula learn about? A.hyperboleB.allegoryC.irony What do you think Frederick Douglass would say about Juneteenth and it's celebration ? A los ninos y ninas les gusta __JugarDormirPoderCantar please help me if you know the answer You want to find out what students in a co-educational high school think about the new headteacher. Youinterview five boys chosen at random from Year 11. Is this a biased sample? Help me I will award the person thats correct 6. Devon draws one marble froma bag containing 5 red, 3 green,and 4 yellow marbles. What is theprobability that Devon draws agreen marble? The perimeter of a regular nonagon is 324 cm. Find the length of each side. A 37B 27C 46.3D 29.5 chase is comparing music subscription price . a 12 month with all ears cost $91.80 and a subscription with press play cost $19.35 which service cost less per month ? Help. Its like 10 points. x/a = y/b solve for b i need help, can someone please help! A triangle has an area of 64 cm and a base of 10 cm.What is the height of the triangle?plsssssssssssss helpWill give 5/5 if 2 ppl answer I can give brainlest