Answer:
The answer is "Option C"
Explanation:
Base heights are related to it as measurements of height or z-values as they are extracted by mathematics which serves to define the ground of that same world. Once applying a datatype, it can be any entire amount, that will become the level of the function in meters beyond the ground, and wrong choices can be described as follows:
- In option A, It is a part of extra dimensions object, that's why it is wrong.
 - In option B, It wrong because the offset tool allows the quick and easy offsetting of the lines.
 - In option D, It emphasizes the recovery charts, that's why it is incorrect.
 
 
        
             
        
        
        
<span>You can view documents across all print queues and print devices.
</span>
        
             
        
        
        
 Answer:
A  . Business strategies include long-term business plans, while business models include plans for daily business functions
 
        
             
        
        
        
B. Because conditional statements have an IF before stating the condition
        
                    
             
        
        
        
Answer:
The Update statement in the DML is used for changing existing data in a table.
Explanation: 
Their are following Sql statement in the DML.
Insert
This SQL statement is used for inserting data into the table.
select
This SQL statement is used for retrieving data from database  
update
This SQL statement is used for updating data in a table.
delete 
This SQL statement is used for delete data from database .
The "UPDATE" SQL statement in DML is used for Modify the data in the existing table .
Following are the syntax of Update SQL query
Update tablename
set column1=value1,column2=value2............column N=valueN
Where condition;
Example :Suppose we have student table and (rollno,name,age and add) are the field for that table we have to change the address of rollno 105
Then we use update query like that
UPDATE STUDENT
SET add='kalam nagar'
where rollno=105;