This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Posts Tagged ‘Java’


Page 3 of 3123

Java interview questions

Language Fundamentals How many number of non-public class definitions can a source file have A source file can contain unlimited number of non-public class definitions List primitive data types, there size and there range (min, max) Data Type Bytes bits... (Continue reading)

Tagged with:         

Threads in java

A small program that shows THREADS in action. public class TwoThread extends Thread { public void run() { for (int i = 0; i < 10; i++) { System.out.println(“New thread”); } } public static void main(String[] args) { TwoThread tt... (Continue reading)

Tagged with:     

Page 3 of 3123