Answer:
no not my prize possessions it took me years to get them
 
        
                    
             
        
        
        
Answer:
An interpreter is quite different from a complier due to the following statement below:
O. An interpreter translates and executes code line by line, while a compiler translates all code at once so that it is ready to be executed at any time.
Explanation:
For an interpreter, it works in translating and execution of the codes line after another line. In a situation where there is a mistake in the code, the next line would not be able to be executed, but rather display error message. On the other hand, compiler translate all codes at once and execute them as a single work. 
<em>During its translation of the codes in compiler, should there be any error, it would not be able to execute despite the fact that, the error might be in the last line of the code.</em>
 
        
                    
             
        
        
        
def dx(fn, x, delta=0.001):
    return (fn(x+delta) - fn(x))/delta
def solve(fn, value, x=0.5, maxtries=1000, maxerr=0.00001):
    for tries in xrange(maxtries):
        err = fn(x) - value
        if abs(err) < maxerr:
            return x
        slope = dx(fn, x)
        x -= err/slope
    raise ValueError('no solution found')
 
        
             
        
        
        
Answer:
11x12x12x14x15x16=5,322,240
Explanation:
11*12=132
12*14=168
15*16=240
132*168=22,176
240*22,176=5,322,240
Have a nice day! :)