I applied through an employee referral. The process took 2 days. I interviewed at Calsoft (Pune) in June 2017
Interview
I was referred by a connection on LinkedIn. I got a call from the HR executive within 3-4 days, who asked me about my current company, location, role, CTC. He asked why I was willing to relocate to Pune, and my expected CTC. This was followed by a telephonic technical interview the next day.
Interview questions [4]
Question 1
1. Data types in python
-Performance Difference between list and tuple. Which one shall i use for system level coding?
2. Is python an interpreted or a compiled language? What can you tell me about the .pyc file?
3. What is a Python package, python module? What makes a directory containing .py files. a python package?
4. If I have 4 .py files in a python package, can I import one of them in the other 3?
5. If i have a block of code in __init__.py of the package, when will this code be executed when i execute a .py file in that package?
6. OOPS concepts
7. What is the meaning of "private" variable/method? How can i make a variable/method private in python?
8. Basics of Exception handling in
9. Use of the finally block.
10. If I have a code block within "catch" and "finally" block, whether and when this code will execute if:
- no exception is thrown by the try block
- exception thrown is caught in the catch block
- exception thrown is not caught in the catch block (or the catch block is absent, the code block in question is after the end of "try" block, and before the start of "finally" block.