Answer:
Option A i.e., SME for further investigation.
Explanation:
Following the reports of such a security incident into an SOC, an incident respondent examines the incident but could not determine the cause of that same incident as well as establish an appropriate response protocol. The ticket for an incident must be applied to SME for even more inquiry. So, the following answer is correct.
Answer:
c, understand what a computer does
Answer: Transaction processing system
Explanation:
A transaction processing system basically records all the data in the system. It is the set of data that basically monitor all the transaction process in the system. It basically perform various transaction oriented applications in the system.
It also allow time delay in the system when the item is supposed to being sold to the actually selling of the item. There are basically various types of transaction processing system arr payroll, account payable and the inventory control.
Answer:
# Get input and strip any leading/trailing spaces
inputList = input('Enter list: ').strip()
def issorted(lst):
if len(lst) < 2:
return True
current = 1
prev = 0
while current < len(lst):
# Compare if current value is less than the previous one
if int(lst[current]) < int(lst[prev]):
return False
prev = current
current += 1
return True
# Convert input to list
inputList = inputList.split(' ')
# Print output
if issorted(inputList):
print("The list is already sorted")
else:
print("The list is not sorted")