Answer:
y = (3/2)x + 11/2
Step-by-step explanation:
As we move from the point (-3, 1) to the point (3, -3), x increases by 6 and y decreases by 4. Thus, the slope is
m = rise / run = 6/4 = 3/2.
Subbing the knowns into the general point-slope form of the equation of a straight line, we get
y - 1 = (3/2)(x - [-3]), or y - 1 = (3/2)(x + 3).
This is equivalent to y = (3/2)x + 9/2 + 1, or y = (3/2)x + 11/2.
T = 30h + 84l
C = h + 2l
P = h + 4l
C = 18h + 36l
P = 12h + 48l
Answer:
I think the answer is 5000000
Step-by-step explanation:
1.) There are 4 floors to the apartment complex
I don’t know about the other ones though. Sorry
Table for the question is attached in the picture below :
Answer:
SELECT distinct(TRUCK_ID), WEIGHT from SHIPMENT where WEIGHT < 800 ;
Step-by-step explanation:
The Structured query language (SQL) defined above, returns only the TRUCK_ID and Weight column from the shipment table as they are the only two columns listed after the select keyword. The condition is added using the WHERE keyword on the weight table, this filters the result returned to include only rows where the weight value is less than 800. The distinct keyword used alongside the TRUCK_ID column ensures that a certian TRUCK_ID value isn't returned more than once (Hence, it is used to avoid duplicates).