Skip to content

Commit fec84a3

Browse files
authored
HCL interview questons added
1 parent 5a3e457 commit fec84a3

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

README.md

+32-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ with open("log.txt") as infile:
199199

200200
## 9. Explain Generators and use case of it.
201201
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
203203
#### Use Case
204204
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.
205205

@@ -469,7 +469,7 @@ A statement is a complete line of code that performs some action, while an expre
469469
## 30. Explain threading in Python
470470
## 31. Can set have lists as elements?
471471
## 32. Is method overloading possible in Python?
472-
## 33. Explain multiple inheritance in Python.
472+
## 33. Explain inheritance in Python.
473473
## 34. Explain method resolution order for multiple inheritance
474474
## 35. What can be used as keys in dictionary?
475475
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)
478478

479479
## 36. Explain shallow and deep copy in Python
480480
## 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+
481483
## 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+
class XSpecial:
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 |
508+
| Iterator uses iter() and next() functions | Generator uses yield keyword |
509+
| Every iterator is not a generator | Every generator is an iterator |
510+
| Saves the states of local variables every time ‘yield’ pauses execution | An iterator does not make use of local variables |
511+
| Memory efficient | More memory allocated than iterator |
482512

483513
## Coding Question
484514
```python

0 commit comments

Comments
 (0)