Answer:
dang how long did i take for you to wright all this and that lecture was cool
Explanation:
The answer is : True. An audit trail is a record of how a transaction was handled from input through processing and output. An audit trail is the evidence, such as purchase orders and invoices, that a financial transaction actually occurred.
Magnetic north is the north a compass points in the direction of. True north, on the other hand, is north based on the earth's axis.
```
#!/usr/local/bin/python3
foo = float( input( "Enter a number: " ) )
if( foo < 0.0 ):
print( "negative" )
elif( foo > 0.0 ):
print( "positive" )
else
print( "zero" )
exit( 0 )
```