Question
Outline the major Java features.

Answers

Object-Oriented – java is based on object-oriented programming where the class and methods describe about the state and behavior of object.
Portable – Java program gets converted into Java Byte Codes that can be executed on any platform without any dependency.
Platform independent – java works on “write once and run anywhere” as it supports multiple platforms like Windows, Linux, Mac, Sun Solaris, etc.
Robust – Java has a strong memory management as there is no pointer allocations. It has automatic garbage collection that prohibits memory leaks.
Interpreted – java compiler converts the codes into Java Byte Codes which are then interpreted and executed by Java Interpreter.   Your Comment




More Software,Java Questions..
What is the inputsplit in map reduce software?

Can variables be used in Java without initialization?

What is the difference between java bean and enterprise java bean?

What is software configuration management?

How does the java database connectivity (jdbc) work?

What are the advantages of threads in java?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

What is object cloning in Java?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?



Search
Can you Answer!!
  • Q Mention what are the types of requirements that a system analyst should gather and analyze?
  • Q What is a contra asset account?
  • Q Who was "The father of magazine science fiction"
  • Q In advance periodontitis with marked mobility; teeth should be splinted:
  • Q How you will write a java script function that display an alert on the screen?12)What is the value of "renderas" attribute to display o/p in the form of Excel Sheet?
  • Q Which State of India became 1st to be implement the Earthquake Warning System
  • Q Enumerate some ACE inhibitors and outline their therapeutic uses and mechanisms of action.
  • Q How does the traceroute work?
  • Q The extract statements in field groups can be used before or after processing the sort statements. (T/F)
  • Q What are your long-range goals?
  • Q Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?