How to change the priority of thread or how to set priority of thread?
No Answer is Posted For this Question
Be the First to Post Answer
what is the Diff. between Access Specifiers and Access Modifiers?
39 Answers BMC, Cyber Shot, Infosys, VTS, Wipro,
What is the protocol is used in type4 driver?
What is the purpose of encapsulation?
There are two classes named classa and classb. Both classes are in the same package. Can a private member of classa can be accessed by an object of classb?
Can you run java program without main method?
What is the difference between member variables initialization and assignment in a constructor?
What is contract between hashcode and equal method?
What is use of static method?
What is the difference between public, private, protected, and friend access?
What is data and its types?
Why destructor is not used in java?
public class Base { public void myMethod(int a,intb) {} } // Uses myMethod and then hides it. public class DerivedOne extends Base { private void myMethod(int a,int b); } will this compile or not .yes or no. why