the answer to the question is a Embedded ( I just learned this like a month ago so im pretty sure it right :))
Answer:
1. True 2. False 3. True 4. True 5. True 6. False 7. True
Explanation:
1. A hacker/cracker finds and exploits weakness in order to gain access with a criminal intent, just as an intruder.
2. Activists are people who campaign to bring about a positive political or social change.
3. It is illegal to use a device as a packet sniffer to steal people's usernames and passwords.
4. This quite true, as there is a huge community of hackers where people are highly recognized for hacking.
5. Yes, intruders have a common attack methodology.
6. IDS monitors networks or systems to identify suspicious activities while a user interface is the means the computer and the user interacts. So it's false.
7. instrusion detection involves monitoring networks or systems to identify suspicious activities, so an intruder is detected if their behavior is suspicious when compared to a legitimate user.
Answer:
<h3><u>Component Team</u></h3>
- Leads to 'invented' work and a Forever-Growing Organization
- Dependencies between teams leads to additional planning
<h3><u>Feature Team</u></h3>
- Leads to customer focus,visibility and smaller organization
- Minimizes dependencies between teams and increase flexibility
Answer:
A=input("Enter Number of Marks:")
b=[]
sum=0
i=0
for i in range(0,int(A)):
b.append(input("Enter Marks"))
sum+=int(b[i])
percentage1= (sum/int(A))*100
if percentage1>=20:
print("Grade A")
elif percentage1<=30 & percentage1>=20:
print("Grade B")
else:
print("Grade C")
Explanation:
The above program is in Python. And we are using here a dynamic list. And we are storing A marks in it. And then we are finding its average, and finally assigning the Grade as mentioned.
thank you for the free points.