What are invisible components?.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is polymorphism in java? What are the kinds of polymorphism?

0 Answers  


What class of exceptions are generated by the java run-time system?

0 Answers  


Is java type safe?

0 Answers  


What are Font and FontMetrics classes?

1 Answers  


what is the major difference between linkedlist and arraylist in java?

0 Answers   IBS,


What is dot operator?

0 Answers  


Is it possible to write method inside method

4 Answers   L&T,


What are annotations in java?

0 Answers   Impetus,


How does varargs work in java?

0 Answers  


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..

2 Answers  


What is difference between iterator and enumeration in java?

0 Answers  


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"); } }

0 Answers  


Categories