Name the types of 'priority'?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
MAX_PRIORITY
NORM_PRIORITY
MIN_PRIORITY
| Is This Answer Correct ? | 7 Yes | 0 No |
Min_Priority------------1
Max_Priority------------10
Norm-Priority-----------5
| Is This Answer Correct ? | 7 Yes | 3 No |
What does isempty () do in java?
What is javac_g?
Can we catch more than one exception in single catch block?
Every class extends object but why it is not possible for every object to invoke clone() method. ideally protected methods should be accessible from sub classes. isn't it?
Program to find greatest prime number in n numbers?
What is meant by local variable and instance variable?
Write a java program to count the number of words present in a string?
What is continuity of a function?
How can a gui component handle its own events in java programming?
interface X{ void m1(); void m2(); } class Child2 extends Object implements X { public void m1(){ System.out.println("Child2 M1"); } public void m2(){ System.out.println("Child2 M2"); } } public class ParentChildInfterfaceDemo { public static void main(String[] args){ X x = new Child2(); X x1 = new Child2(); x.m1(); x.m2(); x.equals(x1); } } Will the above code work? If yes? Can you please explain why the code x.equals(x1) will work as the equals method is called on interface reference vaiable?
Explain methods specific to list interface?
if num=687; U have to get num=6+8+7;