Different types of Layouts?
Answers were Sorted based on User's Feedback
BorderLayOut,GridBagLayout,GridLayout,CardLayout
| Is This Answer Correct ? | 58 Yes | 16 No |
Answer / ravikiran(aptech mumbai)
border layout
flow layout
grid layout
cardlayout
gridbag layout
| Is This Answer Correct ? | 46 Yes | 11 No |
Answer / mani
PROCESS LAYOUT
PRODUCT LAYOUT
COMBINED LAYOUT
FIXED POSITION LAYOUT
CELLULAR LAYOUT
| Is This Answer Correct ? | 38 Yes | 7 No |
Answer / queenie dias
product layout
process layout
fixed psition layout
| Is This Answer Correct ? | 32 Yes | 11 No |
Answer / rachit kapoor
THERE ARE FOUR TYPES OF LAYOUT
PRODUCT LAYOUT (LINE LAYOUT)
PROCESS LAYOUT (FUNCTIONAL LAYOUT)
FIXED POSITION LAYOUT (PROJECT LAYOUT)
GROUP LAYOUT (COMBINATION LAYOUT OR CELLULAR LAYOUT)
| Is This Answer Correct ? | 23 Yes | 3 No |
Answer / chandrarekha
FlowLayout and rest are the same as above....
| Is This Answer Correct ? | 26 Yes | 9 No |
Answer / prakash
Types of Layouts in Production management are:
1. Product Layout
2. Process Layout
3. Fixed Layout
4. Combined or Group Layout
5. Office Layout
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / soujanya
fixed position layout
process- oriented layout
office layout
retail layout
warehouse layout
product-oriented layout--->a special in dis is cellular
layout work cells
| Is This Answer Correct ? | 8 Yes | 9 No |
Answer / azra
Indented form of layouts
Full Block form of layouts
Semi Block form of layouts
Hanging Paragraph form of layouts
Demi Offical form of layouts
The Noma form of layouts
| Is This Answer Correct ? | 6 Yes | 9 No |
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?
What is tcp ip in java?
What is double word?
Is alive and join method in java?
What is Collection interface?
How to print an arraylist in java?
Explain polymorphism citing an example.
Can an anonymous class be declared as implementing an interface and extending a class?
What do you understand by java virtual machine?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
How to convert string to int in java?
What is append in java?