we know that every java prog must follows OOPS Principles. Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation? class a{ public static void main(String args[]){ System.out.println("Hello World"); } }
3 8259how to write a server program and sending the mails to the server using smtp protocol please help me
1 2125can we Connect Applet to Data Base ? with Discriptiom. and also What is Diff. from Applet & Servlet?
1 4991perpare on factorypattern,linklist wothout using collection, (multitharding ie create producer/customer therad producer create Queue continuesly,consumer consume queue, consumer wait if queue is full,producer wait if queue is empty),diff betn sleep(1000)&wait(1000) these r the main Q ask in huawei(2008)
1 5627
What are the differences between heap and stack memory in java?
Write a program to find the whether a number is an Armstrong number or not?
Differentiate between static and non-static methods in java.
What is the difference between break and continue statements?
What is an object in java and how is it created?
What is a constructor overloading in java?
Realized?
What is the difference between equals() and == in java?
What is parsing in java?
Explain public static void main(string args[]) in java.
What is java string pool?
What is a classloader in java?
explain different ways of using thread? : Java thread
What do you mean by an interface in java?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example