Answer:
Syntax error
Explanation:
This is a type of error that occurs when there is a problem with the code that makes it unable to compile and execute.
For example, making a conditional statement without using the correct parameters will result in a syntax error.
When creating an Excel budget and performing what-if analysis, it is generally easiest to create the budget with a budgeting assumption tab
- Assumptions in a budget brings about projections by adding one's assumptions to the current data.
- It is very important to create a budgeting assumptions tab when creating a master budget in microsoft excel because it will simplifies the process of getting how changes to a master budget's main assumptions influences all cornered schedules and the projected financial statements of said firm.
Conclusively we can say that Excel budget and performing what-if analysis produces the budget with a budgeting assumption tab
Learn more from
brainly.com/question/17198039
Answer:
Answered below
Explanation:
#Program is written in Python programming language
#Get the weight and price and store them in #variables.
parcel_weight = float(input('Enter weight of parcel in pounds: "))
rate_per_pound = float(input ('Enter shipping price per pound: "))
# Calculate the total price per pound
total_price = parcel_weight * rate_per_pound
#print invoice
print ("Your parcel weighs $parcel_weight pounds')
print ("The rate per pound is $rate_per_pound")
print("Total shipping cost is; ")
print ("%.2f" % total_price)
I know It's late but the answer is Macro Virus
Answer:
def main():
# input
num1 = int(input("Type in a number: "))
num2 = int(input("Type in another number: "))
num3 = int(input("Type in another number: "))
list1 = [num1, num2, num3]
# sorts the array
list1.sort()
# list1[-1] prints the first element in the array
print("The largest number is: " + str(list1[-1]))
# -len(list1) takes the length of the list, in this case 3, and makes it a negative number.
# That negative number is then used as an index for the list1 array in order to print the lowest number.
print("The smallest number is: " + str(list1[-len(list1)]))
main()
Explanation:
Hope this helped :) I left some comments so you know what's going on. You can also use max(list1) and min(list1) but I chose indexing because indexing is the better way of doing stuff like this.
Have a good day!