What are invisible components?.
What is polymorphism in java? What are the kinds of polymorphism?
What class of exceptions are generated by the java run-time system?
Is java type safe?
What are Font and FontMetrics classes?
what is the major difference between linkedlist and arraylist in java?
What is dot operator?
Is it possible to write method inside method
What are annotations in java?
How does varargs work in java?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
What is difference between iterator and enumeration in java?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }