transaction attributes ?
Answers were Sorted based on User's Feedback
not supported,requires,required new,supports,mandatory,never
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
required
requiresnew
mandatory
supports
notsupported
| Is This Answer Correct ? | 1 Yes | 0 No |
Why do we need data structure in java?
Explain the protected field modifier?
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
explain the concept of virtual method invocation in polymorphism in detail?
What is methodological framework?
how can u handle run time exception in java? explain with brief explanation with examples?
WHAT IS MARKER INTERFACE,AND NO METHODS IS NOT THERE ON THAT INTERFACE THEN WHY WE USED IN JAVA?
Find the value of a specified element of the array arr[i] where 0 <= i <= n-1
What are possible key words, we can use to declare a class?
Why is it called buffering?
What is the purpose of the enableevents() method in java programming?
Can a class declared as private be accessed outside it’s package?