Viruses, worms, ransomware, spyware and trojan horses. These are some answers
Answer:
WYSIWYG, HTML, Source, and Preview in Browser
Explanation:
First, open the html file you are editing from the File : Open dialog, or from the Open File icon on the toolbar. Click on the toggle Browser Preview on the toolbar or from the View menu. This will give you a quick browser preview. Click on the button again and it will return to the code view
Answer:
def odd_even(N):
for number in range(0, N+1):
if number % 2 == 0:
print(str(number) + " is even")
elif number % 2 == 1:
print(str(number) +" is odd")
odd_even(5)
Explanation:
- Create a method called odd_even that takes one parameter, N
- Initialize a for loop that iterates through 0 to N
Inside the loop, check if module of the number with respect to 2 is equal to 0. If yes, print it as even number. If module of the number with respect to 2 is equal to 1, print it as odd number
Call the method
Answer: True
Explanation:Exception error ,which is also known as the fatal error that arises when there is the program execution going-on and the error occurs suddenly to stop the processing, resulting in the abortion of the execution.This erruptional error is responsible for disturbing the execution flow as well as there are chances of the data getting lost or deleted automatically.