
- GWT Tutorial
- 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 Useful Resources
- GWT - Questions and Answers
- GWT - Quick Guide
- GWT - Useful Resources
- GWT - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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 is not a core component of GWT framework?
Answer : D
Explaination
Web Browser is not a core component of GWT framework.
Q 2 - What is the purpose of 'inherits' 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 : B
Explaination
'inherits' tag in *.gwt.xml file adds other gwt module in application just like import does in java applications. Any number of modules can be inherited in this manner.
Q 3 - What is *.cache.html file in GWT?
A - It contains the actual program of a GWT application.
Answer : A
Explaination
*.cache.html contains the actual program of a GWT application.
Q 4 - What is the purpose of removeStyleName() function of a GWT widget?
B - This method will add a secondary or dependent style name to the widget.
D - This method sets the object's primary style name and updates all dependent style names.
Answer : C
Explaination
removeStyleName() method will remove given style from the widget and leaves any others associated with the widget.
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 file upload?
Answer : B
Explaination
FileUpload widget represents a file upload.
Q 7 - Which of the following is true about layout panels in GWT?
A - Layout Panels can contain other widgets.
B - These panels controls the way widgets to be shown on User Interface.
Answer : D
Explaination
Layout Panels can contain other widgets. These panels controls the way widgets to be shown on User Interface. Every Panel widget inherits properties from Panel class which in turn inherits properties from Widget class and which in turn inherits properties from UIObject class.
Q 8 - Which of the following panel lays its child widgets out 'docked' at its outer edges, and allows its last widget to take up the remaining space in its center?
Answer : B
Explaination
DockPanel widget represents a panel that lays its child widgets out 'docked' at its outer edges, and allows its last widget to take up the remaining space in its center.
Q 9 - Which of the following is correct about GWT UiBinder?
A - The UIBinder provides a declarative way of defining User Interface.
B - The UIBinder seperates the programmic logic from UI.
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.