Answer:
8 Standard Computer Components and What They Do
Explanation:
Motherboard. The motherboard is an important computer component because it’s what everything else connects to!
Power Supply. True to its name, the power supply powers all other components of the machine.
Central Processing Unit (CPU)
Random-access Memory (RAM)
Hard Disk Drive / Solid State Drive.
Video Card.
Optical Drives.
 
        
             
        
        
        
Answer:
Spyware
Explanation:
Internet is a type of computer network that allow device communicate with each other world wide. So, it is not the correct option.
Worm: this is a standalone malware computer program that replicates itself in order to spread to other computers. It spreads copies of itself from computer to computer. A worm can replicate itself without any human interaction, and it does not need to attach itself to a software program in order to cause damage. The major feature of a worm is ability to replicate on it own. So, it is not the correct option.
Bot: this is a software application that runs automated tasks. So, it is not the correct option.
Middleware: this is software that lies between an operating system and the applications running on it, enabling communication and data management. It provides services to software applications beyond those available from the operating system. So, it is not the correct option.
Spyware: this is the correct answer. Spyware is similar to trojan horse because it hides itself in a system and a user may not know that it exist on the system. Spyware is a form of malware that hides on your device, monitors your activity, and steals sensitive information without knowledge of the user.
 
        
                    
             
        
        
        
Answer:
CompTIA A+ there ya go!!!
 
        
                    
             
        
        
        
This is calculated by raising 2 to the power of the number of bits.
2^12 = 4096
        
             
        
        
        
Answer:
Answered below
Explanation:
//Python code
numberOfCasts = 3
j = 0
fishingPoints = 0
sum = 0
while j < numberOfCasts:
 dieNum = randint(1 , 6)
 if dieNum ==1:
 fishingPoints = 2
 elif dieNum == 2:
 fishingPoints = 4
 elif dieNum == 3:
 fishingPoints = 6
 elif dieNum == 4:
 fishingPoints = 8
 elif dieNum == 5:
 fishingPoints = 10
 elif dieNum ==6:
 fishingPoints = 12
 
 sum += fishingPoints
 j++
if sum > 30:
print ("Great catch")
elif sum > 10 and sum <= 30:
 print("Good catch")
else:
print ("Bad day")