- GWT - Home
- GWT - Overview
- GWT - Environment Setup
- GWT - Applications
- GWT - Create Application
- GWT - Deploy Application
- GWT - Style with CSS
- GWT - Basic Widgets
- GWT - Form Widgets
- GWT - Complex widgets
- GWT - Layout Panels
- GWT - Event Handling
- GWT - Custom Widgets
- GWT - UIBinder
- GWT - RPC Communication
- GWT - JUnit Integration
- GWT - Debugging Application
- GWT - Internationalization
- GWT - History Class
- GWT - Bookmark Support
- GWT - Logging Framework
GWT Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to GWT. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Q 1 - Which of the following correctly describes the disadvantage of GWT?
Answer : C
Explaination
Both of the above options are correct.
Q 2 - What is the purpose of 'module' tag in *.gwt.xml file in GWT?
A - This provides name of the application.
C - This specifies the name of class which will start loading the GWT Application.
Answer : A
Explaination
'module' tag in *.gwt.xml file provides name of the application.
Q 3 - Which of the following is true about bootstrap procedure of a GWT Application?
Answer : D
Explaination
All of the above options are correct.
Q 4 - Using which of the following way, you can attach a stylesheet to GWT application?
A - Using a CssResource contained within a ClientBundle.
B - Using an inline <ui:style> element in a UiBinder template.
Answer : C
Explaination
Using both of the above ways, a stylesheet can be attached to a GWT application.
Q 5 - Which of the following gwt widget represents a normal push button with custom styling?
Answer : B
Explaination
PushButton widget represents a normal push button with custom styling.
Q 6 - Which of the following gwt widget represents a rich text editor?
Answer : C
Explaination
RichTextArea widget represents a rich text editor.
Q 7 - Which GWT widget represents a browsable view of a tree in which only a single node per level may be open at one time?
Answer : B
Explaination
CellBrowser widget represents a browsable view of a tree in which only a single node per level may be open at one time. This widget will only work in standards mode, which requires that the HTML page in which it is run have an explicit <!DOCTYPE> declaration.
Q 8 - Which of the following panel represents a panel that contains HTML, and which can attach child widgets to identified elements within that HTML?
Answer : C
Explaination
HTMLPanel represents a panel that contains HTML, and which can attach child widgets to identified elements within that HTML.
Q 9 - Which of the following is correct about GWT event handling mechanism?
A - GWT provides a event handler model similar to Java AWT or SWING User Interface frameworks.
B - GWT provides a list of interfaces corresponding to various possible events.
Answer : D
Explaination
All of the above options are correct.
Q 10 - Which tag of *.gwt.xml is used to support internationalization in GWT application?
Answer : A
Explaination
extend-property tag with attribute name set as locale and values as language specific locale, say de for german locale.