Thursday, March 16, 2017

Exception Handling Using Try Catch Java

Tags
The statements which can throw exception are placed in try block and after the......

UnCaught Exception

Tags
Exception is a run time error which is caused due to Programmer error,Input error......

Friday, March 10, 2017

Classes and Objects Python

Tags
Following are Some Examples to illustrate the concept: Code:: 1. class rectangle:  ......

Thursday, March 9, 2017

Inheritance Python

Tags
Inheritance is the process of reusing the existing code . Define new classes from......

Wednesday, March 8, 2017

Final Keyword

Tags
Final Keyword is used to make any value immutable(not changable),avoid inheritance,or......

Abstract Class

Tags
Abstract Class is used to make some methods compulsory for subclasses to redefine......

Dynamic Method Dispatch

Tags
Dynamic Method Dispatch is an important feature of java in which the call to a......

Tuesday, March 7, 2017

Electrical Resistance of Wire

Tags
The electrical resistance R of a cylindrical wire with length l (in......

Metropolis City or Not

Tags
Question::  We define a Metropolis to be a city, that is either......

Sunday, March 5, 2017

Method Overloading In Inheritance Java

Tags
If there is a method in subclass having same name as that of method in superclass......

Method Overriding In Java

Tags
When Superclass and subclass have method having same signature and name then a......

Order of Execution of Constructors Java

Tags
Constructors follow the order of derivation in case of Inheritance i.e- Superclass......

super.member in JAVA

Tags
Keyword Super is also used to use the members of superclass which are same as the......

Saturday, March 4, 2017

Super() in Java

Tags
Keyword Super is used to refer to the immediate Superclass in case of Inheritance......

Reference To Subclass Object (Object Slicing)

Tags
A Superclass reference variable can refer to a Subclass Object .By doing this the......

Multilevel Inheritance Java

Tags
In Multilevel Inheritance the Subclass of one superclass is acting as a Superclass......

Single Inheritance Java

Tags
Inheritance is  a feature of reusing the code.Without starting from scratch......