If u wat to create a GUI Application using AWT,U constructed a frame calling Frame f=new Frame(); What Methods u need to call on the frame f to make it visible. 1)f.setVisible(true) 2)f.setSize(true) 3)Both A&B. 4)There is no need to call any method's on f explicitly to make it visible. I chose option (1) but the given answer is option (3).Please tell me the correct option. seSize() method takes an int parameter not boolean parameter.
Percy Densmore
Ranch Hand
Joined: Mar 06, 2001
Posts: 214
posted
0
To make Frame visible option 'setVisible(true)' is certainly correct. If setSize() or setBounds() is not used with the respective parameters the frame will still not be visible in my humble opinion. The option 'setSize(true)' looks like a typo. Where is that question from? Percy
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.