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:
HTML Tags: <input/>, <canvas></canvas>, <div></div>
CSS Attributes: padding, font-family, margin
Explanation:
community provider
Provide online meeting place where people with similar interest can communicate and find useful information
People can transact, share interests, photos and videos
Answer:
Mobile devices
.
Explanation:
For several industry professionals, mobile phones take over as the main communication channel because mobile devices are portable and easy for the purpose of communication or handle. With the help of mobile devices, they can easily interact with their employees, seniors, clients and other persons from which they want to interact or communicate.
- Option A is not true about the scenario because it is not portable and it is not easy to handle as compared to the mobile devices. So, it's not the primary mode of communication.
- Option B is not true about the scenario because it is portable but as compare to the mobile device, mobiles are more flexible, portable for primary communication.
- Option c is not completely true because the professionals give primary preference to the calls than emails.