The standardized framework developed by NIST to be used as a guidance document is;
NIST Special Publication (SP) 800-37 Risk Management Framework for Federal Information Systems and Organizations:
<h3>Computer Frameworks</h3>
The standardized framework by NIST from the FISMA guideline is the NIST Special Publication (SP) 800-37 Risk Management Framework for Federal Information Systems and Organizations.
Now, this standardized framework is simply a Life Cycle Approach used for Security and Privacy, and also it details the Risk Management Framework (RMF).
Read more about Computer Framework at; brainly.com/question/25236672
Answer:
1. Policies
2. HVAC (Heating, Ventilation and Air Conditioning)
Explanation:
1. Policies are high-level statements made by management that lay out the organization’s position on some issue.
2. The collective term used to refer to the systems that are used to maintain the comfort of an office environment and that are often controlled by computer systems is HVAC (Heating, Ventilation and Air Conditioning)
The function is an illustration of loops.
Loop instructions are used to repeat operations
The function in Python, where comments are used to explain each line is as follows:
#This defines the function
def exclamation(myStr):
#This iterates through the string
for i in range(len(myStr)):
#This checks if the current character of the string is "i"
if myStr[i] == "i":
#If yes, this converts the string to a list
s = list(myStr)
#This replaces i with !
s[i] = '!'
#This gets the updated string
myStr = "".join(s)
#This returns the new string
return myStr
Read more about similar programs at:
brainly.com/question/22444309