P
Q. Determine output:
public class Test { static void test(float x){ System.out.print("float"); } static void test(double x){ System.out.print("double"); } public static void main(String[] args){ test(99.9); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. If an index of an element is N, what is its actual position in the array?
Q. Which of these is not a correct statement?
Q. Which of the following is advantage of using JDBC connection pool?
Q. Choose the correct syntax of an Enhanced FOR loop in Java below.
Q. Which driver is efficient and always preferable for using JDBC applications?
Q. Which of these class is used to create an object whose character sequence is mutable?
Q. What is the purpose of the trim() method of a String object in Java?
Discusssion
Login to discuss.