UrbanPro
true

Learn Java Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Learn Java with Free Lessons & Tips

Ask a Question

Post a Lesson

All

All

Lessons

Discussion

Answered 4 days ago Learn Java

Sadiq

C language Faculty (online Classes )

Key differences between Java and JavaScript: Java is an OOP programming language while Java Script is an OOP scripting language. Java creates applications that run in a virtual machine or browser while JavaScript code is run on a browser only. Java code needs to be compiled while JavaScript code are... read more

Key differences between Java and JavaScript: Java is an OOP programming language while Java Script is an OOP scripting language.

Java creates applications that run in a virtual machine or browser while JavaScript code is run on a browser only. Java code needs to be compiled while JavaScript code are all in text

read less
Answers 1 Comments
Dislike Bookmark

Answered 4 days ago Learn Java

Nitin Mehra

Software Engineer & Programmer, Educator

Well, Interface as the meaning of interface provides the interaction between the different class objects that may have similar properties. Interface is a way to provide abstraction in Java. For example tiger and a plant both eat to make energy, although use different methods. eating is common property... read more

Well, Interface as the meaning of interface provides the interaction between the different class objects that may have similar properties. Interface is a way to provide abstraction in Java. 

For example tiger and a plant both eat to make energy, although use different methods. eating is common property of both tiger and plant. one is animal and one is plant. so their parent class would be animal and plant classes, separate from each other. the interface would be eating. 

now because interface eat is connected with both the object tiger and plant. they can share the same properties, yet in different way according to their class. 

So interface also provide a type of abstraction.

read less
Answers 1 Comments
Dislike Bookmark

Answered 4 days ago Learn Java

Nitin Mehra

Software Engineer & Programmer, Educator

well, java is very rich language with thousand of pre made classes. you can do very good in java in a month if you have good knowledge of programming concepts, you have previously studied the C++ and have good logical thinking and understanding of how computer and things work. From my experience i... read more

well, java is very rich language with thousand of pre made classes. you can do very good in java in a month if you have good knowledge of programming concepts, you have previously studied the C++ and have good logical thinking and understanding of how computer and things work. 

From my experience i can say, you can be very very good at anything, but there is no limit of things we are surrounded. The more you study, the more you will knowledgable, thats it. Like it was assumed before that smallest part of matter is atom, then in became, electron, then further quantum. 

But the thing, you can hear every scientist will say, till now the smallest is quantum, because they know there are endless possibilites out there.

read less
Answers 1 Comments
Dislike Bookmark

Learn Java Training from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Answered 4 days ago Learn Java

Nitin Mehra

Software Engineer & Programmer, Educator

There are various flavours of java programming. Core java, java script, jsp, jquery etc. core java is used for application development, java script is used to make web pages interactive, jquery is used to interect with server side scripting, jsp itself is a server side technology or scripting. then servlet,... read more

There are various flavours of java programming. Core java, java script, jsp, jquery etc. core java is used for application development, java script is used to make web pages interactive, jquery is used to interect with server side scripting, jsp itself is a server side technology or scripting. then servlet, applet etc.

Well the most important question is not java or another programming language can do, important thing is what task someone want to achieve and what tools he needs for that. 

read less
Answers 1 Comments
Dislike Bookmark

Answered 4 days ago Learn Java

Nitin Mehra

Software Engineer & Programmer, Educator

Well Its a very technical question, because i never thought from its beginning that it is truly platform independent. but for the sake of argument, lets understand. java compiler don't convert the programming code or source code in to machine code, rather it makes another intermediate code, which is... read more

Well Its a very technical question, because i never thought from its beginning that it is truly platform independent. but for the sake of argument, lets understand. java compiler don't convert the programming code or source code in to machine code, rather it makes another intermediate code, which is called byte code. 

But that byte code is not capable of running on machine, because machine needs machine code to run. so what they did, they make interpreter which is based on machine and this interpreter convert byte code to machine code, so that it can run on machine. the machine with java interpreter is the concept of what is called java virtual machine. 

So the interpreter is different for different machine,  but because source code is not converted in to machine code rather than intermediate code, you can take this code in to your pen drive from windows machine where you originally made the code and can run this code on to the linux machine where obviously java interpreter is installed.

in this sense, it was called that java is platform independent.  

read less
Answers 2 Comments
Dislike Bookmark

Answered 4 days ago Learn Java

Sadiq

C language Faculty (online Classes )

The short answer is that core Java is the language itself, while Java EE is a framework that extends upon the core language. The reason to have a framework, such as Java EE, is that it has a lot of functionality that is commonly needed for software applications.
Answers 1 Comments
Dislike Bookmark

Learn Java Training from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Answered 4 days ago Learn Java

Nitin Mehra

Software Engineer & Programmer, Educator

logical skills are not dependent on progamming languages. logics share the very simple question if a condition is true what will be. some people say when the contion is not true, then? well both statement are same. when some condition is not true, opposite condition is always true. so basically we can... read more

logical skills are not dependent on progamming languages. logics share the very simple question if a condition is true what will be. some people say when the contion is not true, then? well both statement are same. when some condition is not true, opposite condition is always true. so basically we can write all logical statment in positive way, if a condition is true what will be. 

However to avoid conditional checking everytime, the negation else used in programming languages. 

So logical ability is think in one condition and is thinking about the result, if that condition is true. thats it. Solving puzzle is also work in the same way. try simple puzzles to learn.

read less
Answers 1 Comments
Dislike Bookmark

Answered 3 days ago Learn Java

Math Decode Institute

JDK 9 uses a new version string format.
Answers 1 Comments
Dislike Bookmark

Answered 4 days ago Learn Java

Sana Begum

My teaching experience 12 years

Whether Java is "better" than C++ depends on the context and the specific requirements of a project. However, Java is often preferred for certain reasons: 1. **Platform Independence**: Java programs can run on any device with a Java Virtual Machine (JVM), whereas C++ programs need to be compiled separately... read more
Whether Java is "better" than C++ depends on the context and the specific requirements of a project. However, Java is often preferred for certain reasons: 1. **Platform Independence**: Java programs can run on any device with a Java Virtual Machine (JVM), whereas C++ programs need to be compiled separately for each platform. 2. **Memory Management**: Java has automatic memory management (garbage collection), which helps in avoiding memory leaks and simplifies memory management for developers compared to manual memory management in C++. 3. **Simplicity and Readability**: Java syntax is generally simpler and more readable than C++, which can lead to faster development and easier maintenance of codebases. 4. **Security**: Java's strict compile-time and runtime checking help prevent common programming errors, making Java programs more robust and secure compared to C++. However, C++ also has its advantages, such as greater control over system resources, better performance in certain scenarios, and a wider range of applications, especially in systems programming and performance-critical applications. Ultimately, the choice between Java and C++ depends on the specific requirements and constraints of the project. read less
Answers 1 Comments
Dislike Bookmark

Learn Java Training from the Best Tutors

  • Affordable fees
  • Flexible Timings
  • Choose between 1-1 and Group class
  • Verified Tutors

Answered 4 days ago Learn Java

Sana Begum

My teaching experience 12 years

There are many great sources to learn Java programming, but some popular ones include online platforms like Codecademy, Udemy, and Coursera. Additionally, there are many free tutorials and resources available on websites like Oracle's Java documentation and tutorials, as well as YouTube channels dedicated... read more
There are many great sources to learn Java programming, but some popular ones include online platforms like Codecademy, Udemy, and Coursera. Additionally, there are many free tutorials and resources available on websites like Oracle's Java documentation and tutorials, as well as YouTube channels dedicated to Java programming tutorials. It often comes down to personal preference and learning style, so I'd suggest exploring a few different options to see which one suits you best. read less
Answers 1 Comments
Dislike Bookmark

About UrbanPro

UrbanPro.com helps you to connect with the best Java Training Classes in India. Post Your Requirement today and get connected.

Overview

Questions 1.9 k

Lessons 127

Total Shares  

+ Follow 136,198 Followers

You can also Learn

Top Contributors

Connect with Expert Tutors & Institutes for Java

x

Ask a Question

Please enter your Question

Please select a Tag

X

Looking for Java Training Classes?

The best tutors for Java Training Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Java Training with the Best Tutors

The best Tutors for Java Training Classes are on UrbanPro

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