Answer:
4x² / 4x² = 1
Step-by-step explanation:
Anything divided by itself is always 1
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).
Answer:
Perimeter of rectangle = 14x - 2
Area of rectangle = 10x² + x - 2
Step-by-step explanation:
<u>Finding the perimeter of the rectangle:</u>
⇒ Perimeter of rectangle = 2(L) + 2(B)
⇒ Perimeter of rectangle = 2(2x + 1) + 2(5x - 2)
⇒ Perimeter of rectangle = 4x + 2 + 10x - 4
⇒ Perimeter of rectangle = 14x - 2
<u>Finding the area of the rectangle:</u>
Area of rectangle = LB
⇒ Area of rectangle = (2x + 1)(5x - 2)
⇒ Area of rectangle = 10x² - 4x + 5x - 2
⇒ Area of rectangle = 10x² + x - 2
Well how many 12's are in 24 (forget the negative sing for a moment). Two right? Well that means multiply 4 by 2 and get 8, but where does that negative sign go? Just add it! It makes it so much easier taking it away and then putting it back. That is a trick for this problem. y=-8 while x=-24 Hoped I helped!