24
2013
JAVA INTERVIEW QUESTIONS
Question 1: What is the difference between an Interface and an Abstract class? Answer:An abstract class can have instance methods that implement a default behavior.An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract [...]
13
2013
JAVA TUTORIALS
JAVA SLIDES DOWNLOAD LINKS: Hey here are the links for the java slides(Total Tutorials) which will be very helpful to all the java lovers especially to the beginners of java. Here are the links for it. DONT FORGET THE PASSWORD IS : webdagger Free download part-1 Free download part-2 Free download part-3 Free download part-4
10
2013
JAVA INTERVIEW QUESTIONS
Java Interview Questions * Q1. How could Java classes direct program messages to the system console, but error messages, say to a file? A. The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output could be re-directed: Stream st = new Stream(new FileOutputStream(“output.txt”)); System.setErr(st); System.setOut(st); * Q2. What’s the [...]
An article by webdagger





A limited time offer only for one month.The Books are Guide to HTML, JavaScript and PHP For Scientists and Engineers & Sams Teach Yourself is a Book in which you can learn the c++ within 24 hours...
