UrbanPro

Learn Java with Top Tutors

What is your location?

Select Country

search

India

Please enter your locality

Back

Java

Java relates to IT Courses

+ Follow 140,656

Top Tutors who teach Java

1
Kavyashree G. Java Training trainer in Mysore Featured
Rajendra Nagar, Mysore
13 yrs of Exp
500per hour
Classes: Java Training

I have 13 years of experience in teaching Java. I can help students to be more creative and practical in developing programs.

2
Kotha Harika Java Training trainer in Hyderabad Featured
Kondapur, Hyderabad
Verified
12 yrs of Exp
250per hour
Classes: Java Training, django and more.

Will be providing training on java with spring boot and micro services to the pupil across different countries. Given corporate trainings too. Taught...

3
Yousuf Baba Shaik Java Training trainer in Hyderabad Featured
HITEC City Phase 2, Hyderabad
Verified
4 yrs of Exp
300per hour
Classes: Java Training, C Language and more.

A dedicated Java Trainer with 4 years of experience in Java Development. Skilled in core Java, Object-Oriented Programming (OOP), multithreading,...

Do you need help in finding the best teacher matching your requirements?

Post your requirement now
4
Hinjewadi, Pune
2 yrs of Exp
750per hour
Classes: Java Training

Freelance Core Java/Software Testing Trainer at Scriptitude Infotech (January 2019 - May 2020) Core Java, Software Testing Faculty at 3RI Technologies,...

5
Donkada, Anakapalle
1 yrs of Exp
350per hour
Classes: Java Training, C++ Language and more.

I have been tutoring in Java since 2 years. I have made some real time projects using code Java.

6
Ayush Tiwari Java Training trainer in Delhi Featured
R K Puram, Delhi
Verified
5 yrs of Exp
Classes: Java Training, Class 12 Tuition and more.

I am a software professional using Java as primary programming language. I have been giving training to my juniors and students on the same for the...

7
Venkata Adari Java Training trainer in Bangalore Featured
Sarjapur, Bangalore
20 yrs of Exp
Classes: Java Training, Spring and more.

Trained more than 10, 000 students over the globe. I trained many national and international students. I trained students in both academic and real...

8
Ramgopal Varma Penumatsa Java Training trainer in Hyderabad Featured
Kothaguda Raghavendra Colony, Hyderabad
Verified
5 yrs of Exp
300per hour
Classes: Java Training, Amazon Web Services and more.

I am a platform engineer in aws/devops domain working in product based company. I have 5 years of experience in working IT industry and teaching.I...

9
Seema C. Java Training trainer in Delhi Featured
Gopal Park, Delhi
Verified
18 yrs of Exp
Classes: Java Training, PHP and more.

I am an experienced Core & Advanced Java trainer with 18 years of expertise in teaching Java programming to students, professionals, and corporate...

10
Anup Pendse Java Training trainer in Pune Featured
Baner, Pune
Verified
2 yrs of Exp
200per hour
Classes: Java Training, Python Training and more.

Hi , I am in IT and teaching since past 19 years. I have vast experience in the following areas . AI C C# C++ DataScience DBMS DeepLearning...

Guitar Classes in your city

Reviews for top Java Training Classes

Average Rating
(4.9)
  • I
    review star review star review star review star review star
    19 Mar, 2013

    Kumar attended Java Training

    "" I have attended JAVA/J2EE training in weekend in i-Noesis Solutions, I found teaching..."

    N
    review star review star review star review star review star
    20 Mar, 2013

    Student attended Java Training

    "he is good at java. I learned good subject from him"

    I
    review star review star review star review star review star
    20 Mar, 2013

    Chiru attended Java Training

    "I have attended JAVA/J2EE training in week days batch in i-Noesis Solutions, Its..."

    I
    review star review star review star review star review star
    26 Mar, 2013

    Basavaraj attended Java Training

    "Its write place to learn the java course in I-Noesis with 100% job placement"

  • I
    review star review star review star review star review star
    26 Mar, 2013

    Piyush attended Java Training

    "Its write place to learn the Corejava,J2EE,Struts,Hibernate and Spring courses with..."

    I
    review star review star review star review star review star
    26 Mar, 2013

    Ananga attended Java Training

    "Only place in Bangalore to offer in depth training on all latest J2EE technologies & live project."

    V
    review star review star review star review star review star
    17 Apr, 2013

    Vishal attended Java Training

    "VijayaLakshmi mam is a natural trainer. All it takes is one session for you to realize..."

    S
    review star review star review star review star review star
    14 Jun, 2013

    Shobha attended Java Training

    "I had taken his help for tutoring my 9th standard studying daughter in Blue J Java..."

Get connected

Java Lessons

JAVA Question 1 for beginners
String x="We are learning";String y="mistakes happen";int z=1000;System.out.println("Java is easy. "+x+" programming and "+y+" "+z +" times"); what is out put this code

1.1. Reverse an array in Java.
public class Main { public static void main(String args) { int arr = {1, 2, 3, 4, 5}; for (int i = 0; i < arr.length / 2; i++) { int temp = arr; arr = arr; arr = temp; } System.out.println(Arrays.toString(arr)); }}

1.2. Find the largest element in an array.
public class Main { public static void main(String args) { int arr = {1, 2, 3, 4, 5}; int max = arr; for (int i = 1; i < arr.length; i++) { if (arr > max) { max = arr; } } System.out.println("Largest Element: " + max); }}

1.3. Find the second largest element in an array.
public class Main { public static void main(String args) { int arr = {1, 3, 4, 6, 5}; int max = Integer.MIN_VALUE, secondMax = Integer.MIN_VALUE; for (int i = 0; i < arr.length; i++) { if (arr >...

2.1. Reverse a singly linked list.
class Node { int data; Node next; Node(int data) { this.data = data; this.next = null; }} public class LinkedList { Node head; public void reverse() { Node prev = null; Node curr = head; Node next =...

Java Questions

Ask a Question

Post a Lesson

Answered on 03 Mar Learn IT Courses/Java

Yagnesh

empowering young minds to transformative academic journey!

For a Java Spring application, the ideal open-source cache choices are: Redis – Ideal for distributed caching, in-memory cache that is very fast, supports TTL & persistence.Ehcache – Ideal for local in-memory caching, lightweight, used with Hibernate.Caffeine – Ideal for high-performance... read more

For a Java Spring application, the ideal open-source cache choices are:

Redis – Ideal for distributed caching, in-memory cache that is very fast, supports TTL & persistence.
Ehcache – Ideal for local in-memory caching, lightweight, used with Hibernate.
Caffeine – Ideal for high-performance local caching, superior to Ehcache.
Hazelcast – Ideal for distributed cache with scalability, clustering is supported.

read less
Answers 1 Comments
Dislike Bookmark

Answered on 03 Mar Learn IT Courses/Java

Amit Kulkarni

Career Coach with 16+ years of experience

* Using static class inside another class * Post Java14 using records
Answers 1 Comments
Dislike Bookmark

Answered on 03 Mar Learn IT Courses/Java

Amit Kulkarni

Career Coach with 16+ years of experience

static class inside another class
Answers 1 Comments
Dislike Bookmark

Answered on 03 Mar Learn IT Courses/Java

Yagnesh

empowering young minds to transformative academic journey!

In C++, there is no direct equivalent to Java's super() but similar functionality can be achieved by calling base class constructor
Answers 1 Comments
Dislike Bookmark

Answered on 03 Mar Learn IT Courses/Java

Amit Kulkarni

Career Coach with 16+ years of experience

Few differences : Java is high level programming language, complied in bytecode performace wise slower than C as working with JVM, memory management is automatically via garbage collection platform independent C is mid level language, compiled in machine code performance is faster than java memory... read more

Few differences :

Java is

high level programming language, complied in bytecode

performace wise slower than C as working with JVM, 

memory management is automatically via garbage collection

platform independent

C is

mid level language, compiled in machine code

performance is faster than java

memory management is manual (malloc/alloc and free)

platform dependent

read less
Answers 1 Comments
Dislike Bookmark

Looking for Java Training Classes?

Find Online or Offline Java Training Classes on UrbanPro.

Do you offer Java Training Classes?

Create Free Profile »

Looking for best Java Training Classes?

POST YOUR REQUIREMENT
x

Ask a Question

Please enter your Question

Please select a Tag

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