Answer:
Explanation:
Below is the complete MATLAB code that performs the given operations.
a = 10:10:99 % Generating first vector
b = 2:2:18  % Generating 2nd vector
c = rdivide(a,b) % Dividing vector a by b and storing in c
d = times(c,c) -19 % Subtracting 19 from each element of vector c
c % Displaying value of c
d % Displaying value of d
Output screenshot
C =
  5 5 5 5 5 5 5 5 5
d =
6 6 6 6 6 6 6 6 6
 
        
             
        
        
        
Not too sure what the answer the question would expect, or rather what terminology,
But I’d say key-value pairs
For example in CSS
key: value;
color: green;
        
             
        
        
        
Answer:
Length of char array: sizeof(arr)
Length of a string object: myString.length()
Explanation:
The sizeof approach is generally not recommended, since this information is lost as soon as you pass the array to a function, because then it becomes a pointer to the first element.
 
        
             
        
        
        
Answer:
 Risk management is the technique that is used for managing the risky situation so that security of the system or organization can be maintained. The risk can be reduced by parameters like monitoring the system,alertness, preventive measures etc. There are terms related with the risk management for prevention of the risk such as risk control ,risk identification and risk assessment .
- Risk control is the method that is used for calculating the loss or damage experience and then taking the correct measures to reduce the loss and thus, controlling the risk.
 - Risk assessment is the analyzation of the threats and source of damage/loss that is caused or can be caused by assessing the whole process and functioning.
 - Risk identification is the technique through which the threat is listed over a document and sorted in accordance with the category of risk, risk response etc.