Answer:
(4, 4)
Step-by-step explanation:
Coordinates of a point (x, y) after dilation with a scale factor k,
Rule to be followed,
(x, y) → k(x, y)
→ (kx, ky)
Coordinates of point T are (8, 8).
Dilation of the point T after dilation with a scale factor of
will be,
(8, 8) → 
→ (4, 4)
Therefore, coordinates of the image point B' will be (4, 4).
Translate story problems into equations. Solve equations. Translate story problems into inequalities.
NAMASTE :)
0.00000000005
= 5 ×

Count the Digits after decimal.
We use minus (-) in power as the digit is in left side of decimal
If they are in right side then we use (+) plus sign in power.
Answer:
third one should be about f
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).