Podcast
Questions and Answers
Which event is performed at the beginning of the sprint?
Which event is performed at the beginning of the sprint?
What happens in the daily scrum?
What happens in the daily scrum?
What do Story Points associated with a user story indicate?
What do Story Points associated with a user story indicate?
During which of the Sprint Events does the development team determine user stories that will be finished in the sprint?
During which of the Sprint Events does the development team determine user stories that will be finished in the sprint?
Signup and view all the answers
Which folders contain source information tied to a specific module enabling reuse of this module in another app?
Which folders contain source information tied to a specific module enabling reuse of this module in another app?
Signup and view all the answers
The VerifyPassword.java file in the System module is stored in which of the JavaSource sub-folders?
The VerifyPassword.java file in the System module is stored in which of the JavaSource sub-folders?
Signup and view all the answers
The Microflows.java file is stored in which sub-folder of the JavaSource directory?
The Microflows.java file is stored in which sub-folder of the JavaSource directory?
Signup and view all the answers
Which of the following sources are typically stored in the Resources folder of the App Directory?
Which of the following sources are typically stored in the Resources folder of the App Directory?
Signup and view all the answers
Files and folders that form the styling of your application are typically stored in which of the following folders?
Files and folders that form the styling of your application are typically stored in which of the following folders?
Signup and view all the answers
When working in an app with version control, which concept would you use to share your database with your team?
When working in an app with version control, which concept would you use to share your database with your team?
Signup and view all the answers
What type of conflict occurs when you and your colleague both modified the microflow implementing the delete behavior?
What type of conflict occurs when you and your colleague both modified the microflow implementing the delete behavior?
Signup and view all the answers
What is a tagged version?
What is a tagged version?
Signup and view all the answers
Which function is used to merge a complete branch into the mainline and is only available on the main line?
Which function is used to merge a complete branch into the mainline and is only available on the main line?
Signup and view all the answers
Which of the below mentioned options can be used to merge revisions into and from all lines, main line or branch line?
Which of the below mentioned options can be used to merge revisions into and from all lines, main line or branch line?
Signup and view all the answers
Where in Mendix Studio Pro can you configure XPaths?
Where in Mendix Studio Pro can you configure XPaths?
Signup and view all the answers
Which Widget feature utilizes XPaths?
Which Widget feature utilizes XPaths?
Signup and view all the answers
Where can you utilize XPaths in microflows?
Where can you utilize XPaths in microflows?
Signup and view all the answers
How do you begin typing an XPath?
How do you begin typing an XPath?
Signup and view all the answers
If you want to open the XPath auto-complete menu, you need to press:
If you want to open the XPath auto-complete menu, you need to press:
Signup and view all the answers
Say you are writing an XPath in a Retrieve action for the VacationRequest entity in a Microflow. If you write in the XPath window [Status = 'Cancelled'], what will be returned?
Say you are writing an XPath in a Retrieve action for the VacationRequest entity in a Microflow. If you write in the XPath window [Status = 'Cancelled'], what will be returned?
Signup and view all the answers
Say you are writing an XPath in a Retrieve action on the VacationRequest entity in a Microflow. If you write in the XPath window [VacationRequest.VacationRequest_Submitter='[%CurrentUser%]'], what will be returned?
Say you are writing an XPath in a Retrieve action on the VacationRequest entity in a Microflow. If you write in the XPath window [VacationRequest.VacationRequest_Submitter='[%CurrentUser%]'], what will be returned?
Signup and view all the answers
Study Notes
Sprint Events
- Sprint Planning is the beginning of a sprint where the development team determines the user stories to be completed during the sprint.
- Daily Scrum is a brief meeting where team members share their progress, plan for the day, and discuss any issues they're facing.
- Sprint Review is a meeting where the team presents the completed user stories to stakeholders.
- Sprint Retrospective is a meeting where the team reflects on the sprint and identifies areas for improvement.
User Story Points
- Story points measure the complexity and effort of a user story.
- Higher story points indicate more complex user stories.
Mendix App Directory Structure
-
JavaSource folder stores Java classes organized by subfolders:
- Root folder: Contains the base classes for a module.
- Actions: Contains business logic actions.
- Datasets: Contains data access logic.
- Proxies: Contains data access logic.
- Javascriptsource folder stores JavaScript files.
- Resources folder stores configuration files, HTML files, and Java files.
- Theme folder contains CSS files for application styling.
Version Control
- Team Server manages app versions and allows collaboration among developers.
- Committing an app to Team Server allows other developers to access updates.
- Branches are used to create independent lines of development.
- Mainline represents the primary development line.
- Tagged versions are used to mark specific revisions of the app.
- Merging combines revisions from different branches.
- Advanced merge and Port fix are used to merge revisions into and from any line.
- Quick fix is used to quickly merge a revision into the mainline.
- Merge feature branch merges a complete branch into the mainline.
XPaths
- XPaths are used to navigate and select elements in the Mendix app structure.
- XPaths are used in various widgets, including List Views, Reference Selectors, and Labels.
- XPaths are also used in microflows, specifically within 'Retrieve' actions.
- Start typing an XPath using '['.
- Use Ctrl+Space to open the XPath auto-complete menu.
XPath Examples
-
[Status='Cancelled']
retrieves all vacation requests with the status 'Cancelled'. -
[VacationRequest.VacationRequest_Submitter='[%CurrentUser%]']
retrieves all vacation requests submitted by the current user.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
This quiz covers essential aspects of Agile methodology, focusing on sprint events like planning, daily scrums, reviews, and retrospectives. Additionally, it addresses the concept of user story points in measuring complexity and effort. Participants will also learn about the Mendix app directory structure related to Java source organization.