Saraswat World
Difference between method overloading and method overriding in java ?
Method Overloading VS Method Overriding Sr. Method Overloading Method Overriding 1 Method Overloading occurs within the same class Method Overriding occurs between two classes superclass and subclass 2 Since it involves with only one class inheritance is not involved. Since method overriding occurs between superclass and subclass inheritance is involved. 3 In overloading return type…
What is super keyword in java ?
Variables and methods of super class can be overridden in subclass . In case of overriding , a subclass object call its own variables and methods. Subclass cannot access the variables and methods of superclass because the overridden variables or methods hides the methods and variables of super class. But still java provides a way…
What is method overriding in java ?
If we have methods with same signature (same name, same signature, same return type) in super class and subclass then we say subclass method is overridden by superclass. When to use overriding in java If we want same method with different behavior in superclass and subclass then we go for overriding. When we call overridden…
How to call one constructor from the other constructor ?
With in the same class if we want to call one constructor from other we use this() method. Based on the number of parameters we pass appropriate this() method is called. Restrictions for using this method : 1)this must be the first statement in the constructor 2)we cannot use two this() methods in the constructor
What are static blocks and static initializers in Java?
Static blocks or static initializers are used to initialize static fields in java. We declare static blocks when we want to initialize static fields in our class. Static blocks gets executed exactly once when the class is loaded. Static blocks are executed even before the constructors are executed
JAVA INTERVIEW QUESTIONS
JAVA INTERVIEW QUESTIONS
HOW TO CREATE A DATABASE IN SQL?
If you have data with name of customers and their location, which data type will you use to store it in Python?
In Python, we can use dict data type to store key value pairs. In this example, customer name can be the key and their location can be the value in a dict data type. Dictionary is an efficient way to store data that can be looked up based on a key.
What is the output of calling a list variable with a index range in Python?
Python code output Even though the list has only 2 elements, the call to thelist with index 3 does not give any index error.
What are the popular Python libraries used in Data analysis?
Some of the popular libraries of Python used for Data analysis are: I. Pandas: Powerful Python Data Analysis Toolkit II. SciKit: This is a machine learning library in Python. III. Seaborn: This is a statistical data visualization library in Python. IV. SciPy: This is an open source system for science, mathematics and engineering implemented in…
How will you execute a Python script in Unix?
To execute a Python script in Unix, we need to have Python executor in Unix environment. In addition to that we have to add following line as the first line in a Python script file. #!/usr/local/bin/python This will tell Unix to use Python interpreter to execute the script.
What is the improvement in enumerate() function of Python?
In Python, enumerate() function is an improvement over regular iteration. The enumerate() function returns an iterator that gives (0, item[0]). E.g. >>> thelist=[‘a’,’b’] >>> for i,j in enumerate(thelist): print i,j 0 a 1 b
How can we do Functional programming in Python?
In Functional Programming, we decompose a program into functions. These functions take input and after processing give an output. The function does not maintain any state. Python provides built-in functions that can be used for Functional programming. Some of these functions are: I. Map() II. reduce() III. filter() Event iterators and generators can be used…
How will you share variables across modules in Python?
We can create a common module with variables that we want to share. This common module can be imported in all the modules in which we want to share the variables. In this way, all the shared variables will be in one module and available for sharing with any new module as well.
What is the difference between ‘is’ and ‘==’ in Python?
We use ‘is’ to check an object against its identity. We use ‘==’ to check equality of two objects. E.g. >>> lst = [10,20, 20] >>> lst == lst[:] True >>> lst is lst[:] False
How do you profile a Python script?
Python provides a profiler called cProfile that can be used for profiling Python code. We can call it from our code as well as from the interpreter. It gives use the number of function calls as well as the total time taken to run the script. We can even write the profile results to a…
How will you debug a piece of code in Python?
In Python, we can use the debugger pdb for debugging the code. To start debugging we have to enter following lines on the top of a Python script. import pdb pdb.set_trace() After adding these lines, our code runs in debug mode. Now we can use commands like breakpoint, step through, step into etc for debugging.
How will you check in Python, if a class is subclass of another class?
Python provides a useful method issubclass(a,b) to check whether class a is a subclass of b. E.g. int is not a subclass of long >>> issubclass(int,long) False bool is a subclass of int >>> issubclass(bool,int) True
What is the difference between split() and slicing in Python?
Both split() function and slicing work on a String object. By using split() function, we can get the list of words from a String. E.g. ‘a b c ‘.split() returns [‘a’, ‘b’, ‘c’] Slicing is a way of getting substring from a String. It returns another String. E.g. ‘a b c'[2:3] returns b
How will you handle an error condition in Python code?
We can implement exception handling to handle error conditions in Python code. If we are expecting an error condition that we cannot handle, we can raise an error with appropriate message. E.g. >>> if student_score < 0: raise ValueError(“Score can not be negative”) If we do not want to stop the program, we can just…