C. database administrators are responsible for organizing a company's data making sure all the data is accurate' available' and secure
        
             
        
        
        
Answer:
this is the method of processing wood
 
        
                    
             
        
        
        
Answer:
The correct answer to the following question will be Option B (Policy).
Explanation:
- The Policy is a systematic set of rules for driving policies and obtaining rational results. It is a declaration of intent and is applied as a process or protocol.
- Policies are usually implemented by the governing body throughout the corporation.
- It was the feature of Information assurance management, which sought to dictate those activities throughout the organization via a collection of institutional requirements.
Therefore, Option B is the right answer.
 
        
             
        
        
        
Technology is what we use today to access internet and social media!!!
        
             
        
        
        
Answer:
count_land = count_air = count_water = 0
while True:
    s = input("Enter a string: ")
    if s == "xxxxx":
        break
    else:
        if s == "land":
            count_land += 1
        elif s == "air":
            count_air += 1
        elif s == "water":
            count_water += 1
print("land: " + str(count_land))
print("air: " + str(count_air))
print("water: " + str(count_water))
Explanation:
*The code is in Python
Initialize the variables
Create a while loop that iterates until a specific condition is met. Inside the loop, ask the user to enter the string. If it is "xxxxx", stop the loop. Otherwise, check if it is "land", "air", or "water". If it is one of the given strings, increment its counter by 1
When the loop is done, print the number of strings entered in the required format