Answer:
IN MY PROFILE
Explanation:
I HAVE AWNSERED THIS QUESTION THROUGHOUT MY BEING HERE PLEASE DO NOT BE AFRAID TO CLICK ON MY PROFILE AND FIND THE ANSWER
Anti-virus software that just scans your computer is the least effective.
<span>I agree with one small part, but disagree with the rest. A computer as hardware is a machine that can do what software tells it to. If the software is stored directly on the hardware and relatively immutable, they cal it firmware. If it is easily changed and updated they just call it software. If you remove that completely, yes, the hardware is difficult to use for more than door stops and paper weights. However, you do not need hardware to use software. Software is a concept. Software development can be abstracted from the hardware. Algorithmic thinking can be used for theory or applied to other topics that do not use computers. </span>
Answer:
a = float(input("Enter Side A: "))
b = float(input("Enter Side B: "))
c = float(input("Enter Side C: "))
d = float(input("Enter Side D: "))
e = float(input("Enter Side E: "))
area1 = 1.0* a * b
area2 = (a - c) * (d - e -b)
area3 = 0.5 * (a - c) * e
print ("Room Area: " + str(area1 + area2 + area3))
Explanation:
happy to help ^3^
Answer:
In Python:
#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function
import math
num1 = int(input("Input 1: "))
num2 = int(input("Input 2: "))
print(math.fmod(num1, num2))
Explanation:
This program begins with a comment which describes the program function
#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function
This imports the math module
import math
The next lines get input for num1 and num2
<em>num1 = int(input("Input 1: "))</em>
<em>num2 = int(input("Input 2: "))</em>
This calculates and prints the remainder when num1 is divided by num2
print(math.fmod(num1, num2))