Answer: For #1 I'm going to go with A because that has to do with biology
For #2 I'm going to go with B oceans because that has to do with plant life (and life in general).
For #3 I'll say marine/maritime engineer (you can just say marine)
Hope it helps!
Let “w” and “L” be the width and length of the rectangle. “p” and “a” are perimeter and area
For python,
w=int(input(“width”))
l=int(input(“length”))
a= w*l
p=2*w+2*l
print(str(a), str(p)