Answer:
1 a. warmer
b. -8 is closer
c. -2 degrees
d.his elevation is 10 ft below sea level
2 a.0
b. -300
c. -450
3 Basically a fraction is division so divide the numerator by the denominator to get the calculation. For example 2.1 divided by 1.5 equals 1.4.
Answer:
900
Step-by-step explanation:
3-digit natural numbers are whole numbers that range from 100 to 999 (3-digit because there are three numbers)
- 999 whole numbers from 1 to 999 (counting from 1, 2, 3, 4...897, 898, 899)
- 1 to 99 are 2-digit numbers, so you do not count them
there are 900 3-digit natural numbers!
comment or message me if you are still confused!
45 degrees! The angles of a triangle always add up to 180. The other two add up to 135. 180-135 is 45.
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).