IBM C5050-408 Exam Practice Questions (P. 2)
- Full Access (74 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #6
Which one of the following correctly describes the content of the corresponding Worklight Application folder?
- Aservices folder – Contains client side services.
- Bserver folder – Contains libraries to be placed in external service servers.
- Cbin folder – Contains project artifacts that are deployed to the Worklight Server.
- DexternalServerLibraries folder – Contains references for application development and deployment.
Correct Answer:
C
The bin folder contains project artifacts that are deployed to MobileFirst Server.
Incorrect:
Not D: externalServerLibraries: Contains the libraries to be placed in external service servers and used for access token validation (by the service).
References:
https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-6-3/hello-world/creating-your-first-hybrid-application/
C
The bin folder contains project artifacts that are deployed to MobileFirst Server.
Incorrect:
Not D: externalServerLibraries: Contains the libraries to be placed in external service servers and used for access token validation (by the service).
References:
https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-6-3/hello-world/creating-your-first-hybrid-application/
send
light_mode
delete
Question #7
Which characteristic(s) of an application map to the respective development approaches?
Characteristics of the Application
1. The application is written for a specific platform and runs on that platform only.
2. The application runs inside the browser of the mobile device, and uses standard technologies such as HTML5, CSS3, and JavaScript.
3. The application runs inside a native container and uses the browser engine to display the application interface.
4. The application is not distributed through an application store.
Development Approach (see exhibit)

Characteristics of the Application
1. The application is written for a specific platform and runs on that platform only.
2. The application runs inside the browser of the mobile device, and uses standard technologies such as HTML5, CSS3, and JavaScript.
3. The application runs inside a native container and uses the browser engine to display the application interface.
4. The application is not distributed through an application store.
Development Approach (see exhibit)

- A1-A, 2-B, 3-C, 4-B
- B1-B, 2-C, 3-A, 4-C
- C1-B, 2-B, 3-C, 4-C
- D1-C, 2-A, 3-B, 4-A
Correct Answer:
D
D
send
light_mode
delete
Question #8
What is the purpose of the Application Center?
The Application Center is:
The Application Center is:
- Aused to share only Worklight applications among different team members within a company.
- Bintended for production-ready applications only. Development team members should look for other means of collaboration.
- CIBM's version of a public Application Store that targets usage outside of a company, similar to the Android Market or Apple's public Application Store.
- Da means of sharing information among different team members within a company, where some mobile applications can be targeted to specific groups of users.
Correct Answer:
A
IBM Worklight Application Center is an enterprise application store. It allows you to install, configure, and administer a repository of mobile applications for use by individuals and groups within your enterprise or organization. It is built on top of the IBM MobileFirst Platform and the IBM Worklight mobile application platform that enables you to develop, deploy, and manage mobile applications.
References:
http://www.redbooks.ibm.com/abstracts/redp5005.html?Open
A
IBM Worklight Application Center is an enterprise application store. It allows you to install, configure, and administer a repository of mobile applications for use by individuals and groups within your enterprise or organization. It is built on top of the IBM MobileFirst Platform and the IBM Worklight mobile application platform that enables you to develop, deploy, and manage mobile applications.
References:
http://www.redbooks.ibm.com/abstracts/redp5005.html?Open
send
light_mode
delete
Question #9
An application developer is developing an Android based Hybrid application but the application is returning an error on the startup process.
What are two valid initialization failure statuses that the application developer can identify on the startup process?
What are two valid initialization failure statuses that the application developer can identify on the startup process?
- AFAILURE_CHECKSUM FAILURE_EXTERNAL
- BFAILURE_COMMUNICATION FAILURE_INTERNAL
- CFAILURE_COMMUNICATION FAILURE_ENCRYPT
- DFAILURE_UNZIP
Correct Answer:
D
The initialization status can be:
FAILURE_INTERNAL -
FAILURE_UNZIP -
FAILURE_CHECKSUM -
FAILURE_NOT_ENOUGH_SPACE -
References:
http://www.ibm.com/support/knowledgecenter/SSZH4A_6.2.0/com.ibm.worklight.dev.doc/dev/c_start_hybrid_app_android_in_webview.html
D
The initialization status can be:
FAILURE_INTERNAL -
FAILURE_UNZIP -
FAILURE_CHECKSUM -
FAILURE_NOT_ENOUGH_SPACE -
References:
http://www.ibm.com/support/knowledgecenter/SSZH4A_6.2.0/com.ibm.worklight.dev.doc/dev/c_start_hybrid_app_android_in_webview.html
send
light_mode
delete
Question #10
An application developer needs to update the web resources for a deployed application. The developer is exploring the use of Direct Update to deliver the updated web resources directly to the deployed application without uploading a new version of the application to the Apple App Store and Android Market.
The developer has located an explicit call to check for direct updates in the application code as follows:
WL.Client.login("wl_directUpdateRealm", {onSuccess:…, onFailure:…})
Which security realm configuration allows the application developer to use Direct Update to deliver the updated web resources, only when the explicit call to check for direct updates in the application code is executed?
The application is protected with a:
The developer has located an explicit call to check for direct updates in the application code as follows:
WL.Client.login("wl_directUpdateRealm", {onSuccess:…, onFailure:…})
Which security realm configuration allows the application developer to use Direct Update to deliver the updated web resources, only when the explicit call to check for direct updates in the application code is executed?
The application is protected with a:
- Amobile security test and a Direct Update test is not specified.
- Bmobile security test and a Direct Update test is specified with mode="disabled".
- Ccustom security test and a Direct Update test is not specified.
- Dcustom security test and a Direct Update test is specified with mode="disabled".
Correct Answer:
C
Check for Direct Update on demand
You can configure Direct Update so that the server checks for direct updates only when there is an explicit call to do so. To apply this setting, protect the application with a custom security test that does not contain a test with wl_directUpdateRealm. In the application code, use WL.Client.login
("wl_directUpdateRealm", {onSuccess:.., onFailure:...}), which causes the server to check for direct updates. This configuration does not work if the custom security test that protects the application contains wl_directUpdateRealm with mode="disabled".
References:
http://www.ibm.com/support/knowledgecenter/SSZH4A_6.2.0/com.ibm.worklight.dev.doc/admin/c_direct_update_as_security_realm.html
C
Check for Direct Update on demand
You can configure Direct Update so that the server checks for direct updates only when there is an explicit call to do so. To apply this setting, protect the application with a custom security test that does not contain a test with wl_directUpdateRealm. In the application code, use WL.Client.login
("wl_directUpdateRealm", {onSuccess:.., onFailure:...}), which causes the server to check for direct updates. This configuration does not work if the custom security test that protects the application contains wl_directUpdateRealm with mode="disabled".
References:
http://www.ibm.com/support/knowledgecenter/SSZH4A_6.2.0/com.ibm.worklight.dev.doc/admin/c_direct_update_as_security_realm.html
send
light_mode
delete
All Pages