Static void PrintTriangle(int n){ for(;n>0;n--) { Console.WriteLine(new String('*', n)); }}
I'm sure you have heard of social media, But have you heard it start's to get out of hands because kids get addicted?
1)Causes kids to be addicted
Answer:
1,3,4
Explanation:
They all make sense except for 2. They cannot advertise or state something that is not to guaranteed to happen.
Answer:
actual_value = float(input("Enter the actual value of a piece of property: "))
tax_rate = float(input("Enter the current tax rate for each $100.00 of assessed value: "))
assessed_value = actual_value * 0.6
tax = (assessed_value * tax_rate) / 100
print("The annual property tax is $" + str(tax))
Explanation:
*The code is in Python.
Ask the user to enter the actual value and the tax rate
Calculate the assessed value, multiply the actual value by 0.6
Calculate the tax, multiply the assessed value by the tax rate and divide result by 100
Print the tax