UrbanPro
true
/>

Atul R

B.Tech (EE)

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Atul R

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

More than 10 years experience in Java based applications development.

Extensive experience in the software industry working in India and in overseas companies.

Presently offering a course on Java programming. Batch size will be 3-5 students. Course proposed to be conducted over 50 hours (approx. 2 hours per day over 25 days).

Course cut out specifically to promote students' abilities to start working with Java based application development - to perform well with related job interviews, initial job assignments.

Other courses offered:
MySQL application development
Building Web applications (using CodeIgniter, MySQL, JavaScript, HTML, CSS)

Languages Spoken

English

Education

iit mumbai 1900

Bachelor of Technology (B.Tech.)

Address

Wanowrie, Pune, null - 411040

Verified Info

Teaches

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Reviews

No Reviews yet!

Answers by Atul R (5)

Answered on 23/12/2014 Learn IT Courses/Java

Animal a = new Cat(); String s = a.getScientificName(); In the above code, the call to getScientificName() can be used regardless of whether the variable 'a' references a Cat object or a Dog object. So, Base obj = new Chlld(); obj.commonMethod(); // allows using common source code regardless... ...more
Animal a = new Cat(); String s = a.getScientificName(); In the above code, the call to getScientificName() can be used regardless of whether the variable 'a' references a Cat object or a Dog object. So, Base obj = new Chlld(); obj.commonMethod(); // allows using common source code regardless of the Child object being referenced by obj.
Answers 26 Comments
Dislike Bookmark

Answered on 23/12/2014 Learn IT Courses/Java

broadly speaking, the "package" facility helps organize a large codebase into multiple packages which can be maintained in separate directories. Java compiler determines the directory name where source code of a package is kept, based on the package name. Also used by Java to determine the classes,... ...more
broadly speaking, the "package" facility helps organize a large codebase into multiple packages which can be maintained in separate directories. Java compiler determines the directory name where source code of a package is kept, based on the package name. Also used by Java to determine the classes, variables, methods that can be accessed by a class. Classes, etc. in a package are accessible to other classes in same package (by default). See details of "Java access modifiers" for more info on these restrictions or allowances.
Answers 39 Comments
Dislike Bookmark

Answered on 23/12/2014 Learn IT Courses/Java

allows a different implementation of a method without requiring parent class to be abstract. Example: Parent class provides default implementation for a category of devices without knowledge of specific manufacturer, etc. details. And child class methods override some/all methods to model specific... ...more
allows a different implementation of a method without requiring parent class to be abstract. Example: Parent class provides default implementation for a category of devices without knowledge of specific manufacturer, etc. details. And child class methods override some/all methods to model specific behavior for devices from specific manufacturer. Note that, the parent class here is not required to be abstract -- it models a "general" device with default behavior.
Answers 41 Comments
Dislike Bookmark

Answered on 22/12/2014 Learn IT Courses/Java

And the source code that follows can be common regardless of whether 'a' is Cat or Dog
Answers 26 Comments
Dislike Bookmark

Answered on 22/12/2014 Learn IT Courses/Java

You will see the 'this' reference inside a method source code. It refers to the object in whose context the method is called.. So, when there is a call like objectA.methodM(), then, a 'this' reference inside methodM() refers to the objectA. Example: a 'this' reference inside the method getArea()... ...more
You will see the 'this' reference inside a method source code. It refers to the object in whose context the method is called.. So, when there is a call like objectA.methodM(), then, a 'this' reference inside methodM() refers to the objectA. Example: a 'this' reference inside the method getArea() of a Circle class refers to the particular Circle object for which the getArea() is called. You will realize that 'this' can be called only inside an instance method not a class method when you understand 'instance method' and 'class method'
Answers 81 Comments
Dislike Bookmark

Teaches

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

No Reviews yet!

Answers by Atul R (5)

Answered on 23/12/2014 Learn IT Courses/Java

Animal a = new Cat(); String s = a.getScientificName(); In the above code, the call to getScientificName() can be used regardless of whether the variable 'a' references a Cat object or a Dog object. So, Base obj = new Chlld(); obj.commonMethod(); // allows using common source code regardless... ...more
Animal a = new Cat(); String s = a.getScientificName(); In the above code, the call to getScientificName() can be used regardless of whether the variable 'a' references a Cat object or a Dog object. So, Base obj = new Chlld(); obj.commonMethod(); // allows using common source code regardless of the Child object being referenced by obj.
Answers 26 Comments
Dislike Bookmark

Answered on 23/12/2014 Learn IT Courses/Java

broadly speaking, the "package" facility helps organize a large codebase into multiple packages which can be maintained in separate directories. Java compiler determines the directory name where source code of a package is kept, based on the package name. Also used by Java to determine the classes,... ...more
broadly speaking, the "package" facility helps organize a large codebase into multiple packages which can be maintained in separate directories. Java compiler determines the directory name where source code of a package is kept, based on the package name. Also used by Java to determine the classes, variables, methods that can be accessed by a class. Classes, etc. in a package are accessible to other classes in same package (by default). See details of "Java access modifiers" for more info on these restrictions or allowances.
Answers 39 Comments
Dislike Bookmark

Answered on 23/12/2014 Learn IT Courses/Java

allows a different implementation of a method without requiring parent class to be abstract. Example: Parent class provides default implementation for a category of devices without knowledge of specific manufacturer, etc. details. And child class methods override some/all methods to model specific... ...more
allows a different implementation of a method without requiring parent class to be abstract. Example: Parent class provides default implementation for a category of devices without knowledge of specific manufacturer, etc. details. And child class methods override some/all methods to model specific behavior for devices from specific manufacturer. Note that, the parent class here is not required to be abstract -- it models a "general" device with default behavior.
Answers 41 Comments
Dislike Bookmark

Answered on 22/12/2014 Learn IT Courses/Java

And the source code that follows can be common regardless of whether 'a' is Cat or Dog
Answers 26 Comments
Dislike Bookmark

Answered on 22/12/2014 Learn IT Courses/Java

You will see the 'this' reference inside a method source code. It refers to the object in whose context the method is called.. So, when there is a call like objectA.methodM(), then, a 'this' reference inside methodM() refers to the objectA. Example: a 'this' reference inside the method getArea()... ...more
You will see the 'this' reference inside a method source code. It refers to the object in whose context the method is called.. So, when there is a call like objectA.methodM(), then, a 'this' reference inside methodM() refers to the objectA. Example: a 'this' reference inside the method getArea() of a Circle class refers to the particular Circle object for which the getArea() is called. You will realize that 'this' can be called only inside an instance method not a class method when you understand 'instance method' and 'class method'
Answers 81 Comments
Dislike Bookmark

Atul R conducts classes in Java Training. Atul is located in Wanowrie, Pune. Atul takes Regular Classes- at his Home and Online Classes- via online medium. He has 1 years of teaching experience . Atul has completed Bachelor of Technology (B.Tech.) from iit mumbai in 1900. HeĀ is well versed in English.

Share this Profile

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All