Answer:
64 K bytes = 65536 bytes
32 M bytes = 33554432 bytes
Explanation:
The question expect the number of bytes in binary instead of decimal. So this is important to understand that:
- 1K bytes = 1024 bytes (in binary)
Therefore,
- 64 Kb = 64 x 1024 =  65536 bytes
Using the similar calculation logic, we know
- 1M bytes = 1024 x 1024 = 1048576 bytes (in binary)
Therefore, 
- 32 M bytes = 32 x 1048576 =  33554432 bytes
 
        
             
        
        
        
Three Primary Components of an Inbox:( 8 Components of an effective Email.).
Answer: 
1: From Label
2: Subject Line
3: Pre- Header
4: Content
5: Call to action
6: Images'
7: Social Media Buttons
8. Unsubscribe Option
        
             
        
        
        
Hardware
Answer. physical parts of computer which can be seen and touched are called Hardware.
        
             
        
        
        
Answer: I believe the answer is 6
Explanation: taking 35 and 65 out leaves the rest of the numbers; 15,25,45,55, and 75.
 
        
             
        
        
        
Answer:
The code to calculate the area of a circle is:
from math import pi
def circleArea(radius):
  if radius > 0:
    return pi * (radius ** 2)
  else:
    return None
if __name__ == '__main__':
  radius = 5
  print("Radius: {} Area: {}".format(radius,circleArea(radius)))
Explanation:
A detailed explanation of each line of code is given below.
#Define the number pi used to calculate the area
from math import pi
#We define a function that calculates the area of a circle
def circleArea(radius):
#Check if the radius is valid ( radius > 0) since there aren´t negative radius
  if radius > 0:
#Compute the area formula for a circle 
    return pi * (radius ** 2)
  else:
#Return None if the radius is invalid
    return None
#Run the function we´ve defined
if __name__ == '__main__':
#Define a radius 
  radius = 5
#Call the function and parse the radius through it, then print the result
  print("Radius: {} Area: {}".format(radius,circleArea(radius)))