Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quiz for chapter dialogs and wizards RCP training #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions rcp_090_DialogsWizards.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
categoryId: 1692 # CATEGORY NAME
name: CSS
questions:
- description: Which of the following is not a standard SWT dialog?
choices:
- FileDialog
- MessageBox
- TitleAreaDialog
- FontDialog
hint:
explanation:
correctChoice: 2
- description: What is a characteristic of JFace dialogs ?
choices:
- They are always based on native OS dialogs
- They allow creating custom buttons
- They cannot be customized
- They do not follow native platform semantics
hint:
explanation:
correctChoice: 1
- description: Which method must be implemented when creating a custom dialog by extending the Dialog class in Eclipse?
choices:
- setTitleImage()
- openConfirm()
- setErrorMessage()
- createDialogArea()
hint:
explanation:
correctChoice: 3
- description:
choices:
- setTitleImage()
- createDialogArea()
- setErrorMessage()
- openConfirm()
hint:
explanation:
correctChoice: 1