Answer:
2 : 5
Step-by-step explanation:
700 g : 1.75 kg
Since ratio should be between same units, so we'll convert either g into kg or kg into g. For convenience, kg will be converted to g
700 g : 1.75 kg × 1000
700 g : 1750 g
÷ 50 ÷50
14 : 35
÷7 ÷7
2 : 5
Answer:
Written in Python
def sums(n):
total = 0
for i in range(1,n+1):
if i%2 == 0:
total = total + i*2
else:
total = total + i
return(total)
Step-by-step explanation:
The function is written in Python
def sums(n):
This initializes total to 0
total = 0
This iterates through the integers that makes up n i.e. 1,2,3.....n
for i in range(1,n+1):
This checks if current digit is even
if i%2 == 0:
If yes, it adds the double of the digit
total = total + i*2
else:
If otherwise, it adds the digit
total = total + i
This prints the calculated sum or total
return(total)
To call the function from main, use the following:
print(sums(n))
Where n is a positive integer. i.e. 
The correct answer is shown in attached figure
To find the correct graph, we should study the continuity of the function
Check the continuity at x = -2
from the left ⇒⇒ f(-2) = 1/2 * -2 + 3 = 2
from the right ⇒⇒ f(-2) = 2
∴ The function is continuous at x = -2
Check the continuity at x = 3
from the left ⇒⇒ f(3) = 2
from the right ⇒⇒ f(3) = 2*3 - 3 = 3
∴ The function is jump discontinuous at x = 3
From the previous results the correct graph is the last as shown in attached graph.
2(x+3)= 3x-1
2x+6=3x-1
X=7
Therefore
YM = 7+3= 10
And by definition of midpoint YM=MZ so MZ=10
Answer:
-1 is your answer for this mate