Class point
java is object oriented language.it's a platform independent.in java we don't use pointers
At any given point of time you cann't get the address of a variables of java program. This is meant for security purpose only.
This functionality is already in Java. String.toLowerCase() and String.toUpperCase() will take care of it for you.
Yes!Visual Java plus plus and Java Builder is different from the Java language?
Translating a java program into bytecode makes it much easier to run a program in a wide variety of envirenments becouse only the JVM needs to be implemented for each platform.Once the run time packages exists packages exist for given system, any java program can run on it.
java is object oriented language.it's a platform independent.in java we don't use pointers
What do you mean by "compute"? Do you want to graph it? Factor it? Calculate it's function given a set of points that lie on it? If you're looking to compute the function given three points that fall on the parabola, then I have just the code for you. If you're given three points, (x1, y1), (x2, y2) and (x3, y3), then you can compute the coefficients of your quadratic equation like this: a = (y1 * (x2 - x3) + y2 * (x3 - x1) + y3 * (x1 - x2)) / (x1 * x1 * (x2 - x3) + x2 * x2 * (x3 - x1) + x3 * x3 * (x1 - x2)) b = (y1 - y2) / (x1 - x2) - a * (x1 + x2); c = y1 - (x1 * x1) * a - x1 * b; You now can calculate the y co-ordinate of any point given it's x co-ordinate by saying: y = a * x * x + b * x + c;
Strings and Arrays are two totally different data types in Java and they will not match with one another.
Java is run on what they call a "Virtual Console." Instead of running the programs straight from one's computer, it runs through the this virtual console. Java is also safe for networks because it will not compile unless it complies with the built in JavaSecurity. JBuck
You can remove Java 5 if you have Java 6 and Java 5 programs should still work on your machine. However, unless you are really strapped for hard drive space, which is unlikely given the size of hard drives nowadays, there's really no reason to remove Java 5.
Java was basically a random name yelled out during a marketing meeting. See the related link for an e-mail about this from James Gosling.
At any given point of time you cann't get the address of a variables of java program. This is meant for security purpose only.
Core Java and J2SE are the same thing, which is the set of classes to be found in the rt.jar package. The classes were just given different names at different stages of the continued revisions to the Java Runtime Environment.
Yes. Note, however, that does not limit the language in which a program is written to Java. There are a number of languages designed to run in the JVM and the number is growing. See https://en.wikipedia.org/wiki/List_of_JVM_languagesfor reference.
This functionality is already in Java. String.toLowerCase() and String.toUpperCase() will take care of it for you.
where to start? do you have an algorithm and just want to implement it in java? depends on how big N is, as that will determine which method is most efficient
for(int i = 1; i < 100; i+=2) { System.out.println(i); }