Erstellt von Sneha Supriya
vor mehr als 5 Jahre
|
||
Function Definition
Perks of using functions
Types of functions
What are built in functions?
Name six type conversion built in functions
what does input() built in function do?
What does eval() built in function do?
What does min and max function do?
What does abs() do?
What does type(), len(), round() built-in functions do?
What does range() do?
What are python modules?
What does following functions of math module do?
Ceil(x)
floor(x)
pow(x,n)
sqrt(x)
log10(x)
cos(x)
sin(x)
tan(x)
how are a module's details called?
What does the following functions of string module do?
– String.capitalize()
– String.find()
– String.index()
– String.isalnum()
– String.isalpha()
– String.isdigit()
– String.islower()
– String.isupper()
– String.join()
– String.lower()
– String.upper()
– len()
– ord()
– reversed()
– slice()
what does randrange() do?
random ()
What does randint () do?
What does uniform() do?
What does random.choice(lst) do?
What does random.shuffle(lst) do?
What are user defined functions?
What are parameters in a user defined function?
What are arguments in user defined functions?
What four arguments python supports?
What are positional arguments?
What are Default arguments?
What are Keyword arguments?
What are Variable Length Arguments?
What are global variables?
What are local variables?
What's Recursion?
Point out some drawbacks of recursion.
What is indirect recursion?
Perks of recursions?
What's a 'correct' and 'sensible' recursive code?
How a Recursive Function works?
3 differences b/w iteration and recursion
Define Base Case