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 if constructor is protected in java?
Is vector ordered in java?
Which is better stringbuilder or stringbuffer?
what is a static block?
Can a class have a static inner class?
Which class is the superclass of all classes?
i need example for java abstraction. where we use abstraction and why we need abstraction.
What is type safety in java?
How many types of java are there?
What is consumer in java?
How will you calculate the depth of a binary tree if the tree contains 15 nodes?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }