What does s mean in regex?
No Answer is Posted For this Question
Be the First to Post Answer
In case of inheritance what is the execution order of constructor and destructor?
What are the restrictions imposed by a Security Manager on Applets?.
How are variables stored in memory?
How we can make copy of a java object?
What is an immutable class?
I have a string like _a01_a02_a03_ and another string like _2_1.5_4_ as input.I want to extract a01,a02... to a string array and 2,1.5,etc to a double array with a01 corresponds to 2 and a02 to 1.5 etc. Need code in core java.. Can you do it?
Explain the difference between map and flatmap stream operation?
What are different types of multitasking?
What is the base class of all exception classes?
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
What is the exact difference in between Unicast and Multicast object? Where will it be used?
How do you start a thread?