can we have function for truncating the sign as like abs in
oracle.
Answer / deevan
abs(int) in java.lang.Math method would support as in
oracle. It supports for other datatypes like float,double
and long.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the full form of jpeg?
I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }
we know that every java prog must follows OOPS Principles. Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation? class a{ public static void main(String args[]){ System.out.println("Hello World"); } }
What are the differences between include directive and include action?
Name two subclasses of the TextComponent class?
What is the difference between JVM and JRE?
How java uses the string and stringbuffer classes?
does java support default argument in Method?
Which of the following is not an isolation level in the JDBC
What is the char data type?
What is the order of method invocation in an Applet?
What is a Java package and how is it used?