Answer:
True
Explanation:
Computer security is basically divided into three main areas:
- Vulnerability/threat assessment and risk management refers to a process that requires the identification, quantification and ranking of a system's possible vulnerabilities.
- network intrusion detection and incident response refers to software that detects malicious activity or policy violations, and blocks them
- digital forensic investigation refers to the process of identifying, recovering and interpreting (or validating) electronic data.
Generally a single individual may specialize in one of these areas, that is why he/she may need help with the others.
1. To not put your real name in a username
2. Don't give people your personal information
3. Tell your parents if someone messages you something and you don't know them
4. make your social media accounts private
5. Ask for a adult for help if you see something that confuses you
Answer:
Explanation:
When I think about computers, I can understand about the software and the hardware, we can touch the hardware, but the software don't because is only data stored in the hardware, we can interact with the stored data using the hardware, we can complete a system with data, software, hardware, and people, people try to learn about software because it is better paid than fix a hardware.
The answer is "operating systems" brcause you need that that to use the rest
'
Answer:
Answered below
Explanation:
//Program is written in Python programming language
def charCnt( fileName, char){
if not fileName.exists( ):
return sys.exit(1)
else:
openFile = open("$fileName.txt", "r")
readFile = openFile.read( )
fileLength = len (readFile)
count = 0
for character in range(fileLength):
if readFile[character] == char:
count++
openFile.close( )
return count
}