UrbanPro
true
Jitendra Yadav Java trainer in Pune

Jitendra Yadav

Java Trainer

Manjri Farm, Pune, India - 412307.

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

Details verified of Jitendra Yadav

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

I have around 7 year of experience on java related technology and working with a multinational company as of now and available on weekends as Java Trainer.

Languages Spoken

English

Hindi

Education

Dr APJ ABDUL KAMAL TECHNICAL UNIVERSITY 2010

Master of Computer Applications (M.C.A.)

Address

Manjri Farm, Pune, India - 412307

Verified Info

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

7

Teaches

Spring, Hibernate, Core Java, J2EE, Servlet, JSP (Java Server Pages)

Certification training offered

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

7

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Java Programming, Advanced Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

7

Field tutored for

Computer Science

BA Computer Science Subjects

Programming in JAVA

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

7

BTech Computer Science subjects

Java Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

7

BCA Subject

Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

Reviews

No Reviews yet! Be the first one to Review

FAQs

1. What type of Java programming do you teach?

Spring, Hibernate, Core Java and others

2. Which classes do you teach?

I teach BA Tuition, BCA Tuition, BTech Tuition, Engineering Diploma Tuition and Java Training Classes.

3. Do you provide a demo class?

Yes, I provide a free demo class.

4. How many years of experience do you have?

I have been teaching for 7 years.

Answers by Jitendra Yadav (2)

Answered on 09/12/2017 Learn Tuition/BCA Tuition

Selection/control statements allow you to control the flow of program execution on the basis of the outcome of an expression or state of a variable known during runtime. Selection statements can be divided into the following categories: The if and if-else statements The if-else statements The... ...more
Selection/control statements allow you to control the flow of program execution on the basis of the outcome of an expression or state of a variable known during runtime. Selection statements can be divided into the following categories: The if and if-else statements The if-else statements The if-else-if statements The switch statements
Answers 17 Comments
Dislike Bookmark

Answered on 09/12/2017 Learn Tuition/BTech Tuition

If any method call himself, this is called recursion. You can refer below Java example public class RecursionExample { static int count=0; static void p(){ count++; if(count<=5){ System.out.println("hello "+count); p(); } } public static void main(String args) { p();... ...more
If any method call himself, this is called recursion. You can refer below Java example public class RecursionExample { static int count=0; static void p(){ count++; if(count<=5){ System.out.println("hello "+count); p(); } } public static void main(String[] args) { p(); } } Output: hello 1 hello 2 hello 3 hello 4 hello 5
Answers 19 Comments
Dislike Bookmark

Teaches

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

7

Teaches

Spring, Hibernate, Core Java, J2EE, Servlet, JSP (Java Server Pages)

Certification training offered

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

7

Engineering Diploma Branch

Computer Engineering Diploma

Computer Engineering Diploma Subject

Java Programming, Advanced Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

7

Field tutored for

Computer Science

BA Computer Science Subjects

Programming in JAVA

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

7

BTech Computer Science subjects

Java Programming

BTech Branch

BTech Computer Science Engineering

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

7

BCA Subject

Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes

Taught in School or College

No

No Reviews yet! Be the first one to Review

Answers by Jitendra Yadav (2)

Answered on 09/12/2017 Learn Tuition/BCA Tuition

Selection/control statements allow you to control the flow of program execution on the basis of the outcome of an expression or state of a variable known during runtime. Selection statements can be divided into the following categories: The if and if-else statements The if-else statements The... ...more
Selection/control statements allow you to control the flow of program execution on the basis of the outcome of an expression or state of a variable known during runtime. Selection statements can be divided into the following categories: The if and if-else statements The if-else statements The if-else-if statements The switch statements
Answers 17 Comments
Dislike Bookmark

Answered on 09/12/2017 Learn Tuition/BTech Tuition

If any method call himself, this is called recursion. You can refer below Java example public class RecursionExample { static int count=0; static void p(){ count++; if(count<=5){ System.out.println("hello "+count); p(); } } public static void main(String args) { p();... ...more
If any method call himself, this is called recursion. You can refer below Java example public class RecursionExample { static int count=0; static void p(){ count++; if(count<=5){ System.out.println("hello "+count); p(); } } public static void main(String[] args) { p(); } } Output: hello 1 hello 2 hello 3 hello 4 hello 5
Answers 19 Comments
Dislike Bookmark

Jitendra Yadav describes himself as Java Trainer. He conducts classes in BA Tuition, BCA Tuition and BTech Tuition. Jitendra is located in Manjri Farm, Pune. Jitendra takes at students Home and Online Classes- via online medium. He has 7 years of teaching experience . Jitendra has completed Master of Computer Applications (M.C.A.) from Dr APJ ABDUL KAMAL TECHNICAL UNIVERSITY in 2010. HeĀ is well versed in English and Hindi.

X

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

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more