Pop quiz
Q1. Which QML type allows you to create a placeholder for an object that will be instantiated later?
Repeater
Loader
Component
Q2. Which QML type provides low-level access to individual touch events?
PinchArea
MouseArea
MultiPointTouchArea
Q3. When can you access a component defined in another QML file without an import statement?
- You can do that if the component is registered using the
qmlRegisterType
function - You can do that if the component file is added to the project resources
- You can do that if the component file is in the same directory as the current file