Home Interview Questions and AnswersTechnical Interview Questions and AnswersGWT GWT Interview Questions and Answers For Freshers Part-5

gwt41.Which widget represents a standard check box widget. This class also serves as a base class for RadioButton in GWT?
CheckBox widget represents a standard check box widget. This class also serves as a base class for RadioButton.

42.Which widget represents a mutually-exclusive selection radio button widget in GWT?
RadioButton widget represents a mutually-exclusive selection radio button widget.

43.Which widget represents a list of choices to the user, either as a list box or as a drop-down list in GWT?
ListBox widget represents a list of choices to the user, either as a list box or as a drop-down list.

44.Which widget acts as a suggestion box in GWT?
SuggestBox widget represents a text box or text area which displays a pre-configured set of selections that match the user’s input. Each SuggestBox is associated with a single SuggestOracle. The SuggestOracle is used to provide a set of selections given a specific query string.

45.Which widget represents a single line text box in GWT?
TextBox widget represents a single line text box.

46.Which widget represents a password text box in GWT?
PasswordTextBox widget represents a text box that visually masks its input to prevent eavesdropping.

47.Which widget represents a multiline text box in GWT?
TextArea widget represents a text box that allows multiple lines of text to be entered.

48.Which widget represents a rich text editor in GWT?
RichTextArea widget represents a rich text editor that allows complex styling and formatting.

49.Which widget represents a file upload in GWT?
FileUpload widget wraps the HTML <input type=’file’> element.

50.Which widget represents a hidden field in GWT?
Hidden widget represets a hidden field in an HTML form.

You may also like

Leave a Comment