A Compile Report produced during a regular Google Web Toolkit compilation consists of a set of HTML pages which provide a graphical representation of the compilation done. Given below are two expla...
Definition 1 is correct, while definition 2 is incorrect. 0%
Definition 2 is correct, while definition 1 is incorrect. 0%
Both definitions are correct. 0%
Both definitions are incorrect. 0%
A Google Web Toolkit Ajax web application has two pages "page1" and "page2", and their corresponding history tokens generated are "page1" and "page2". The user is currently on "page2". What is the ...
http://www.example.com/historyexample.html?page1 0%
http://www.example.com/historyexample.html#page1 0%
http://www.example.com/historyexample.html&page1 0%
http://www.example.com/historyexample.html/page1 0%
ClientBundle has the two resource types - TextResource and ExternalTextResource - which provide access to static text content. Which of the following options is correct?
TextResource interns the text into the compiled JavaScript, while ExternalTextResource bundles related text resources into a single file which is accessed asynchronously. 0%
ExternalTextResource interns the text into the compiled JavaScript, while TextResource bundles related text resources into a single file which is accessed asynchronously. 0%
TextResource reads the content of a file using URLs, while ExternalTextResource bundles related text resources into a single file which is accessed asynchronously. 0%
Consider the following statements regarding deployment of a Google Web Toolkit application on a web server. Statement X: The host HTML page and the bootstrap script can reside anywhere on the web ...
Statement X is correct, while statement Y is incorrect. 0%
Statement X is incorrect, while statement Y is correct. 0%
Both statements X and Y are correct. 0%
Both statements X and Y are incorrect. 0%
Consider the following statements regarding Google Web Toolkit widgets which contain ARIA roles and states. Statement X: A widget can only ever have one role attribute which is set at the time the...
Statement X is correct, while statement Y is incorrect. 0%
Statement X is incorrect, while statement Y is correct. 0%
Both statements X and Y are correct. 0%
Both statements X and Y are incorrect. 0%
Consider the following statements regarding the content type in Google Gadgets. Statement X: With HTML content type, all of the code typically resides in the gadget spec. This includes the gadget ...
Statement Y is correct, while statement X is incorrect. 0%
Statement X is correct, while statement Y is incorrect. 0%
Both statements X and Y are correct. 0%
Both statements X and Y are incorrect. 0%
Consider the following statements regarding the Google JavaScript Maps API and the Maps API Library for Google Web Toolkit. Statement X: Google Maps API and Google Web Toolkit prepend all method n...
Statement X is correct, while statement Y is incorrect. 0%
Statement X is incorrect, while statement Y is correct. 0%
Both statements X and Y are correct. 0%
Both statements X and Y are incorrect. 0%
Consider the following statements regarding the modes in which Google Web Toolkit applications can be run. Statement X: In the Web Mode, the application is run as pure JavaScript and HTML, compile...
Statement X is correct, while statement Y is incorrect. 0%
Statement X is incorrect, while statement Y is correct. 0%
Both statements X and Y are incorrect. 0%
Both statements X and Y are correct. 0%
Given below are examples of two different syntaxes which are used to deploy a Google Web Toolkit application on Google App Engine. Syntax 1: appengine-java-sdkinappcfg.cmd [options] <action> <w...
Syntax 1 is for Windows OS. 0%
Syntax 2 is for Mac OS X or Linux. 0%
Syntax 1 is for Mac OS X or Linux. 0%
Syntax 2 is for Windows OS. 0%
Given below is a JSON object of a typical Lightweight Metrics System event. { moduleName : <Module name>, subSystem : <Subsystem name>, evtGroup : <Event group>, millis : <Current ...
It is the name of your Google Web Toolkit module. 0%
It refers to the specific component that is emitting these events in the Google Web Toolkit application. 0%
It is analogous to a grouping of related events that can be assumed to follow a serial order. 0%
It indicates the actual method or step that was run and emitted the event. 0%
Google Web Toolkit deploys the mini-applications created, using the Google Gadgets API. Given below are some standard tags used in a Google gadget. Identify which tag contains information such as i...
<Module> 0%
<ModulePrefs> 0%
<Content type="html"> 0%
In a Google Web Toolkit web application, the corresponding module XML file contains the collection of resources that comprise the web application. Which of the following options represent(s) the co...
<inherits path='some--data-here'/> 0%
<entry-point class='some--data-here'/> 0%
<source name='some--data-here'/> 0%
<source path='some--data-here'/> 0%
In a Google Web Toolkit web application, the following argument is passed to the JUnitShell: -Dgwt.args="-help" What will the output be?
It will throw an error. 0%
It will print the command help keywords in the console. 0%
It will print help to the console. 0%
It will run Google Web Toolkit in production mode. 0%
In a Google Web Toolkit widget, there is a form field whose tabIndex is 2. Suppose that you change the tabIndex to -1. Which of the following options are correct with regard to this tabIndex?
The form field will be moved to the beginning of the tab sequence. 0%
The form field will be removed from the tab sequence. 0%
The form field is still allowed to receive focus programmatically. 0%
The form field will be moved to the end of the tab sequence. 0%
In a GWT application, there is an ARIA role region that updates without having keyboard focus. Which of the following ARIA states specifies the priority of such dynamic content updates?
aria-labelledby 0%
aria-live 0%
aria-activedescendant 0%
aria-expanded 0%
In addition to individual events, the global collector method in the Lightweight Metrics system can also track and compare groups of events.
In order to use internationalized characters, which of the following charsets should be included in the meta tag of the host HTML file?
UTF-8 0%
iso-8859-1 0%
us-ascii 0%
iso8859_1 0%
iso-8859-1; charset=iso-8859-1 0%
In order to use the ClientBundle in a Google Web Toolkit application, which of the following inherits tags is required to be included in the gwt.xml file?
<inherits name="com.google.gwt.resources.Resources" /> 0%
<inherits name="com.google.gwt.core.client" /> 0%
<inherits name="com.google.gwt.json.client" /> 0%
<inherits name="com.google.gwt.junit.tools" /> 0%
In order to use the NumberFormat or DateTimeFormat classes in a Google Web Toolkit application, which of the following inherits lines should be inserted into the Google Web Toolkit application modu...
<inherits name="com.google.gwt.i18n.I18N"/> 0%
<inherits name="com.google.gwt.resources.Resources" /> 0%
<inherits name="com.google.gwt.core.client" /> 0%
<inherits name="com.google.gwt.json.client" /> 0%
<inherits name="com.google.gwt.junit.tools" /> 0%
In which of the following internationalization techniques do the applications look for localized strings in the module's host and do NOT need recompilation when a new locale is added?
Static String Internationalization 0%
Dynamic String Internationalization 0%
Localizable Interface 0%
Suppose that in a Google Web Toolkit application there is a functionality called "Edit Account" which is not required initially when the application is being downloaded. Which of the following appr...
Eliminate classes or packages related to "Edit Account" entirely. 0%
Set split points in the Google Web Toolkit application. 0%
Such optimization is not possible as the code is already complied into JavaScript. 0%
The appcfg utility is used to deploy a Google Web Toolkit web application. Which of the following appcfg commands uploads files of an application to the application's root directory? Note: The root...
appcfg.sh [options] update <war-location> 0%
appcfg.sh [options] rollback <war-location> 0%
appcfg.sh [options] update_queues <war-location> 0%
appcfg.sh [options] update_indexes <war-location> 0%
The Google Maps Javascript API has certain events which are classified as UI Events and MVC state change events. Which of the following options are correct with regard to this?
'click' is a UI event. 0%
'mousedown' is an MVC state change event. 0%
'dblclick' is a UI event. 0%
'zoom_changed' is an MVC state change event. 0%
'bounds_changed' is a UI event. 0%
The google.search.SearchControl class reference of the Google AJAX Search API is used to perform a search operation in Google Web Toolkit. Which of the following methods in this class reference act...
addSearcher 0%
draw 0%
execute 0%
setLinkTarget 0%
The JUnit TestCase base class has two methods: gwtSetUp() and gwtTearDown(), which are used to prepare for and/or clean up after each test method. Given below is a code snippet of the gwtSetUp() me...
It skips over <iframe> and <script> tags before each test method in a test case. 0%
It skips over <iframe> and <script> tags after each test method in a test case. 0%
It removes <iframe> and <script> tags from the DOM architecture before each test method in a test case. 0%
It removes <iframe> and <script> tags from the DOM architecture after each test method in a test case. 0%
The resources in a deployed Google Web Toolkit application are categorized as: 1)resources to never cache (.nocache.js), 2)resources to cache forever (.cache.html), 3)everything else (myapp.css) ...
the never-cache category Into the cache-forever category. 0%
the everything-else category into the cache-forever category. 0%
the everything-else category into the never-cache category. 0%
The Speed Tracer tool uses some JavaScript rule definitions in order to find potential performance problems in a Google Web Toolkit application. One of the rules is "Total Bytes Downloaded" which g...
Cumulative download size is 2MB or greater 0%
Cumulative download size is 1MB or greater 0%
Cumulative download size is 500kB or greater 0%
Using Eclipse IDE, a new Google Web Toolkit application named "MyApp" is created. Now the application directory contain some sub-directories by default. Which of the following sub-directories conta...
src 0%
war 0%
test 0%
settings 0%
What is the data type of the argument used in the GWTTestCase.delayTestFinish method?
int 0%
string 0%
binary 0%
object 0%
What is the purpose of the global collector function used in Lightweight Metrics System?
It tests the Google Web Toolkit code via the GWTTestCase class. 0%
It speeds up the application's startup by allowing the application to start running before all of its code is installed. 0%
It helps Google Web Toolkit programmers gain insight into what happens in the application during compilation. 0%
It is used to evaluate and report events in the Google Web Toolkit application. 0%
What is the response type of the Google AJAX Search API?
XML 0%
JSON 0%
HTML 0%
Simple TEXT 0%
Which of the following approaches for associating CSS files in a Google Web Toolkit application is INCORRECT?
Using a <link> tag in the host HTML page. 0%
Using the <stylesheet> element in the module XML file. 0%
Using a DataResource contained within a ClientBundle. 0%
Using an inline <ui:style> element in a UiBinder template. 0%
Which of the following are examples of Class Annotations?
@GeneratedFrom(String fileName) 0%
@Generate(String[] formatFQCN, String filename, String[] locales) 0%
@Description(String desc) 0%
@Meaning(String meaning) 0%
Which of the following browser rendering engines will operate if Google Web Toolkit sets doctype to HTML 4.01 Transitional?
Quirks Mode 0%
Standards Mode 0%
Almost Standards Mode 0%
IE7 Mode 0%
Which of the following ClientBundle resource types can retrieve the contents of a file at runtime using URLs?
ImageResource 0%
DataResource 0%
ExternalTextResource 0%
GwtCreateResource 0%
Which of the following command line utilities generates the files and folders needed to start a Google Web Toolkit project?
Apache Ant 0%
webAppCreator 0%
JUnit 0%
Which of the following components figures out which browser environment the Google Web Toolkit application is running in and determines the appropriate version of the application to load?
The host HTML page 0%
The Bootstrap script 0%
The Application Files 0%
Which of the following Google Maps API Web Services provides the facility to convert addresses into their corresponding values in latitudes and longitudes?
Directions API 0%
Geocoding API 0%
Elevation API 0%
Places API 0%
Which of the following Google Web Toolkit base classes combines the Google Web Toolkit test cases and reorders them so that all test cases that share a module are run back to back?
GWTTestCase 0%
TestRunner 0%
GWTTestSuite 0%
JField 0%
Which of the following Google Web Toolkit base classes provides JUnit integration?
TestCase 0%
GWTTestCase 0%
TestRunner 0%
EntryPoint 0%
JField 0%
Which of the following Google Web Toolkit classes is used to make server calls in a Google Web Toolkit web application?
com.google.gwt.i18n.client.DateTimeFormat 0%
com.google.gwt.i18n.client.NumberFormat 0%
com.google.gwt.user.client.rpc 0%
com.google.gwt.user.client.Timer 0%
Which of the following HTML elements does the Label widget map to in Google Web Toolkit?
HTML <label> element 0%
HTML <div> element 0%
HTML <textarea> element 0%
HTML <map> element 0%
Which of the following interfaces in "com.google.gwt.gadgets.client" indicates that a Gadget may need to be resized automatically by the container?
NeedsAnalytics 0%
NeedsDynamicHeight 0%
NeedsIntrinsics 0%
NeedsSetPrefs 0%
Which of the following interfaces includes a method to look up strings by property name and also facilitates dynamic binding to constants by name at runtime?
Constants 0%
ConstantsWithLookup 0%
Dictionary 0%
Messages 0%
Localizable 0%
Which of the following is NOT a feature of Google Web Toolkit?
Dynamic and reusable UI components 0%
Support for full-featured Java debugging 0%
JUnit integration 0%
Common JavaScript errors being caught at run time 0%
Easy internationalization 0%
Which of the following jar files is required to use the Google Chart Tools API in a Google Web Toolkit project?
gwt-servlet.jar 0%
appengine-api-1.0-sdk-1.3.4.jar 0%
gwt-visualization.jar 0%
gwt-user.jar 0%
Which of the following methods is used to add a split point to your code?
GWT.runAsync 0%
GWT.getModuleName 0%
GWTTestCase.delayTestFinish 0%
RequestBuilder.setTimeoutMillis 0%
Which of the following methods is used to retrieve the serialization policy file in your Google Web Toolkit webapp application directory?
ServletContext.getResource() 0%
ServletContext.getContext() 0%
ServletContext.getRequestDispatcher() 0%
ServletContext.getServlet() 0%
Which of the following options is INCORRECT in relation to the HTML tags and their corresponding CSS selectors in Google Web Toolkit?
<button> tag has button as its CSS selector. 0%
<button class="gwt-Button"> has button.gwt-Button as its CSS selector. 0%
<button class="gwt-Button my-button"> has button.gwt.my-Button as its CSS selector. 0%
Which of the following statements are valid with regard to Google Web Toolkit?
It allows you to write AJAX applications in Java and then compile the source to highly optimized JavaScript code. 0%
It allows you to write AJAX applications in JavaScript and then compile the source to highly optimized Java code. 0%
The Google Web Toolkit SDK provides a set of core Java APIs and widgets. 0%
The Google Web Toolkit SDK provides a set of core JavaScript APIs and widgets. 0%
Which of the following statements holds true for the Navigation control present in the Google Maps API?
It displays a large pan/zoom control to be used on Google Maps. 0%
It displays a map scale element. 0%
It lets the user toggle between map types (such as ROADMAP and SATELLITE). 0%
Which of the following statements is INCORRECT with regard to Google Web Toolkit components?
Google Web Toolkit Java-to-JavaScript Compiler translates the Java programming language to the JavaScript programming language. 0%
Google Web Toolkit Development Mode allows the developers to run and execute Google Web Toolkit applications in development mode. 0%
Google Web Toolkit Web UI supports the java.io package. 0%
Which of the following statements regarding Google Web Toolkit ImageResource is INCORRECT?
Multiple ImageResources are declared in a single ClientBundle, which is a composition of many images into a single image. 0%
ImageResource results in multiple round trips for the composite images. 0%
As the filename of the composite image is based on a hash of the file's contents, the filename will change only if the composite image is changed. 0%
Which of the following statements regarding Root panel are correct?
Root panel is the container for the dynamic elements of a Google Web Toolkit application. 0%
Root panel is at the top of any Google Web Toolkit user interface hierarchy. 0%
By default the Root panel wraps the body element. 0%
A host page can contain only one Root panel. 0%
Which of the following tags is added to a gwt.xml file in order to add Google Visualization to the Google Web Toolkit module?
<inherits name='com.google.gwt.visualization.Visualization'/> 0%
<inherits name="com.google.gwt.resources.Resources" /> 0%
<inherits name="com.google.gwt.core.client" /> 0%
<inherits name="com.google.visualization.*" /> 0%
Which of the following tools helps optimize a Google Web Toolkit application by allowing the application to start running before all of its code is installed?
Speed Tracer 0%
Google Web Toolkit's code splitter 0%
Client Bundles 0%
Lightweight Metrics 0%
Which of the following webAppCreator parameters defines the directory location where Google Web Toolkit web application files will be generated?
-out 0%
-junit 0%
moduleName 0%
While deploying a Google Web Toolkit module on a servlet container using RPC, the servlet in the application, including Google Web Toolkit RPC servlets, will need to be defined in:
web.xml 0%
build.xml 0%
appengine-web.xml 0%
<module-name>.gwt.xml 0%
While unit testing a Google Web Toolkit application in JUnit, the following line of code is added in JUnitShell: -Dgwt.args="-prod" Which of the following statements are correct with regard to th...
It will add an argument to the JUnit TestRunner class. 0%
It will run your unit test in manual mode. 0%
It will override the test run from development mode to production mode. 0%
It will run your unit test on Remote systems. 0%