Nice you do not know the price of the child's ticket, you represent it as X. Then you add the 2.75 to the variable. You take the unknown number and add the known. so the answer would be x+2.75
Answer:
Round of 969.991
970
Rules of round off
1) If the digit is odd no. the no. will increase to 1
2) if it is even the no. will be same.
Answer:
2
Step-by-step explanation:
2 is the constant of proportionality in the equation y = 2x . When two variables are directly proportional to each others . Where k is called the constant of proportionality . Thus in the question x and y are proportional variables
Answer: 44 degrees=========================================================
Since the given angle -404 is not between 0 and 360, we add 360 to it to get:
-404 + 360 = -44
We add another 360 to that result
-44 + 360 = 316
now we have a value between 0 and 360
Rules:
* If the angle is between 0 and 90, we stop here and simply write down that value
* If the angle x is between 90 and 180, then we compute 180-x
* If the angle x is between 180 and 270, then we compute x-180
* If the angle x is between 270 and 360, then we compute 360-x
* Note in the three rules above, the order of subtraction is always (larger angle)-(smaller angle) = reference angle
* The reference angle has one segment on the x axis (aka the reference angle is adjacent to the x axis)
Based on that, we see that 316 is between 270 and 360, so we use the rule that
360-x
In this case, x = 316
So,
360-x = 360-316 =
44The reference angle is
44 degrees and looks like what you see in the attached image.
Answer:
The program in Python is as follows:
age = int(input("Age: "))
if age>=13 and age <=19:
print("Teenager")
else:
print("Not a teenager")
Step-by-step explanation:
This gets input for age
age = int(input("Age: "))
This checks if age is between 13 and 19 (inclusive)
if age>=13 and age <=19:
If yes, the age is teenage
print("Teenager")
If otherwise, the age is not teenage
else:
print("Not a teenager")