what is default layout of JFrame class?
Answers were Sorted based on User's Feedback
Answer / la_di
The default layout manager of a JFrame (and a Frame to) is
BorderedLayout. Check this code:
System.out.println(new JFrame().getLayout());
| Is This Answer Correct ? | 47 Yes | 4 No |
Answer / jsrc1990
And Look this System.out.println(new JFrame().getContentPane
().getLayout());
| Is This Answer Correct ? | 5 Yes | 5 No |
What is anagram number?
What is JVM and is it platform independent?
Does constructor be static?
Describe the process as to how substring() methodology mechanisms in java.
what is ABSTRACTION and what are using in real time project?
Can sleep() method causes another thread to sleep?
Briefly explain the term Spring Framework
What is lazy programming?
What is numeric promotion?
What is the dot operator?
What is main string [] args?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (