Answer:
im trying to find the answer my self :(
Explanation:
.
Answer
Spelling and Grammar checkers
Explanation
A word processor is a software program for editing, storing, manipulating, and formatting text entered from a keyboard for the purpose providing the intended output. t allows users to create, edit, and print documents. It enables you to write text, store it electronically, display it on a screen,
Spelling and Grammar checkers are the inbuilt components of word processors programs for personal computers. They have Salient features that helps in identifying grammatical errors and misspellings.
Answer:
A spreadsheet program included in Microsoft Office suit of application. Spreadsheets present tables of value arranged in rows and columns that can be manipulated mathematically using both basic and advanced functions.
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')