Domain is all real, yep
vertex of y values is from2 to infinity, so 2nd is false
y int is where x=0, that is at y=2, nope so 3rd is false
2 up and 1 to left, so no for 4th
x intercept? there are none
answer is only first option
Answer:
Step-by-step explanation:
We can get this done by using the code
def digits(n):
count = 0
if n == 0:
return 1
while (n > 0):
count += 1
n= n//10
return count
Also, another way of putting it is by saying
def digits(n):
return len(str(n))
------------------------------------------
print(digits(25)) # Should print 2
print(digits(144)) # Should print 3
print(digits(1000)) # Should print 4
print(digits(0)) # Should print 1
Doing this way, we've told the system to count the number of figures that exist in the number. If it's 1000 to 9999, then it records it as 4 digits. If it's 100 - 999, then it records it as 3 digits. If it's 10 - 99, it records as 2 digits. If it's 0 - 9, then it has to record it as a single digit.
Thanks
The triangles are ACD and XYZ
Congruent segments means that they have the same length.
Then CD = XY, AC = ZX and AD = ZY
This is the option B. from the list.
Answer :<span>B.CD=XY,DA=YZ,AC=ZX</span>
Answer:Jewels, WOOL, SILK
Step-by-step explanation:
sorry for the caps