1 Flashcards

1
Q

It is used to group components together

A

Panel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

It serves as the main application window and can contain other AWT conponents

A

Frame

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

It provides a simple way to show information to the user.

A

Lebel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The _____ class represents a clickable button that can trigger an action when pressed.

A

Button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The___ class is a single-line text input field that allows users to enter text

A

TextField

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It is a multi-line text input area that allows users to enter and edit longer texts.

A

TextArea

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The ___ class represent small box that can be checked or unlocked by the user.

A

Checkbox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

It is used to group multiple checkboxes where only one checkbox in the group can be checked at a time

A

CheckboxGroup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

It is similar to a checkbox but is typically used when only option out of multiple choices can be checked at a time

A

Radiobutton

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

It is represent a dropdown menu that allow users to select a single item from a list of option

A

Choice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

To handle button clicks you need to implement the actionPerformance method of the____ interface

A

ActionListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This interface is used to handle mouse event such as clicking pressing releasing or moving the mouse componet

A

MouseListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

This interface is used to handle keyboard events such as typing or pressing keys

A

KeyListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

This interface is used for handling event generated by components like buttons when they are clicked

A

ActionListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Import the necessary AWT package

A

import java.awt.*;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Create a class that extend the frame class

A

Public class MyFrame extends Frame{

}

17
Q

Frame properties and attributes

A

SetTitle
SetSize
SetLocation
SetResizable
SetVisible
SetDefault

18
Q

Panel propertice and layout

A

SetBackground
SetForeground
SetLayout
SetLayout

19
Q

What does awt stand for in java

A

Abstract windows toolkit

20
Q

Which class in ATW is used create a top level window