You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+32-2
Original file line number
Diff line number
Diff line change
@@ -199,7 +199,7 @@ with open("log.txt") as infile:
199
199
200
200
## 9. Explain Generators and use case of it.
201
201
A function or method which uses the yield statement is called a generator function. Such a function, when called, always returns an iterator object which can be used to execute the body of the function: calling the iterator’s iterator.\__next__()method will cause the function to execute until it provides a value using the yield statement. <br>
202
-
When the function executes a return statement or falls off the end, a StopIteration exception is raised and the iterator will have reached the end of the set of values to be returned.
202
+
When the function executes a return statement or falls off the end, a StopIteration exception is raised and the iterator will have reached the end of the set of values to be returned. Note that a generator can have n numbers of yield statements
203
203
#### Use Case
204
204
Generators are good for calculating large sets of results where you don't know if you are going to need all results, or where you don't want to allocate the memory for all results at the same time.
205
205
@@ -469,7 +469,7 @@ A statement is a complete line of code that performs some action, while an expre
469
469
## 30. Explain threading in Python
470
470
## 31. Can set have lists as elements?
471
471
## 32. Is method overloading possible in Python?
472
-
## 33. Explain multiple inheritance in Python.
472
+
## 33. Explain inheritance in Python.
473
473
## 34. Explain method resolution order for multiple inheritance
474
474
## 35. What can be used as keys in dictionary?
475
475
Any immutable object type can be used as dictionary key even functions and classes can also be used as dictionary keys.
@@ -478,7 +478,37 @@ Dict implementation reduces the average complexity of dictionary lookups to O(1)
478
478
479
479
## 36. Explain shallow and deep copy in Python
480
480
## 37. Why Python generates a .pyc file even when it is an interpreted language?
481
+
Python follows a pattern of compiling the original source to byte codes, then interpreting the byte codes on a virtual machine. The .pyc file generated contains byte code.
482
+
481
483
## 38. How private varibles are declared in Python?
484
+
Python does not have anything called private member however by convention two underscore before a variable or function makes it private.
485
+
```python
486
+
classXSpecial:
487
+
normal_var =10
488
+
__private_var =17
489
+
490
+
>>> special_obj = XSpecial()
491
+
>>> special_obj.normal_var
492
+
>>> special_obj.__private_var # AttributeError
493
+
```
494
+
## 39. Difference between an array and list
495
+
| List | Array |
496
+
| :-------------:|:-------------:|
497
+
| Can contain elements of different data types | Contains homogeneous elements only i.e. same data type |
498
+
| No need to import | Need to import via numpy or array |
499
+
| Preferred for short sequence of data items | Preferred for large sequence of data items i.e., data analysis |
500
+
| Can't perform airthmetic operations on whole list | Great for airthmetic operations |
501
+
502
+
## 40. What is an iterator? How is iterator is different from a generator?
503
+
An iterator is an object that implements /__next__, which is expected to return the next element of the iterable object, and raise a StopIteration exception when no more elements are available.
504
+
### Differnce between iterator and generator
505
+
| Iterator | Generator |
506
+
| :-------------:|:-------------:|
507
+
| Class is used to implement an iterator | Function is used to implement a generator |
0 commit comments