Answer:
B
Hope this helps!
explanation:
we solve the inequality and to do that we must first subtract 12 from both sides, which gets us -x<-4, then we divide both sides by -1, which gives us x>4, since we have to flip the sign when we divide by a negative. when we graph this, there will be a circle around 4 and the arrow pointing to the right, since it's greater than.
Answer:
5.2
Step-by-step explanation:
add back 0.8 from 7 am temp which is 4.4 degrees.
Answer:
the savings is 6000
Step-by-step explanation:
We are told that the ratio of savings to expenditure is 2: 8, that is, that person saves 2 when he spends 8.
They tell us to find the savings when the cost is 24,000, so we are left with:
24000 * 2/8 = 6000
which means that when 24000 are spent the savings is 6000
Answer:
y=-4x-6
Step-by-step explanation:
y=mx+b, where m is the slope and b is the y-intercept
Slope is given as -4, so:
y=-4x+b
To find b, sub in the point we were given (-2,2):
2=-4(-2)+b
2=8+b
b=2-8=-6
So we have: y=-4x-6
Step-by-step explanation:
Hi, your question isn't totally complete. Here's the likely full question:
Random walk. A Java programmer begins walking aimlessly. At each time step, she takes one step in a random direction (either north, east, south, or west), each with probability 25%. She stops once she is at Manhattan distance r from the starting point. How many steps will the random walker take? This process is known as a two-dimensional random walk.
Write a program RandomWalker.java that takes an integer command-line argument r and simulates the motion of a random walk until the random walker is at Manhattan distance r from the starting point. Print the coordinates at each step of the walk (including the starting and ending points), treating the starting point as (0, 0). Also, print the total number of steps taken.