In java without use of main() how to execute the program
No Answer is Posted For this Question
Be the First to Post Answer
differenc between visual studio 2005,2008 & 2010?
Write a program to create a process in UNIX
what are partial classes. Where is the entry point of partial classes.
what is the difference between Windows application and Unix application?
1.group by clause explain along with an example
Write a program to read and print a text file on screen
What are the five tracing levels in System.Diagnostics.TraceSwitcher?
if 2 is passed as an argument to the method,void GC.Collect then what would be the result?
what is meant by life cycle of a business
why applet is introduced?
What is easiest way to get the PL/i compiler,I didn't have found the compiler in my library. Is there any extra cost if we want to access the PL/1 programs?Actually we r having Mainframe rented training Ids
what is the main usage of an abstract keyword?please follow the program class A { void display() { System.out.println("hai"); } void print() { } } class B extends A { void print() { System.out.println("Hello"); } } In this program i was gives the implementation of print() according to my requirements in subclass.And there is no definition in superclass then why we can use abstract keyword before a method that i want to gives definition in other classes,is any mistakes in the above usage of method?