Interaction: eye tracking, hand gestures, look-and-pinch, voice commands, hover effects
General XR: XR (extended reality), passthrough, optic flow, hand mesh, spatial audio, field of view (FOV)
0 / 10 completed
1 / 10
An Apple developer explains visionOS concepts at a conference: "visionOS is Apple's operating system for spatial computing. Apps have three presentation styles. A window is a 2D panel floating in space — like a regular app. A volume is a 3D bounded space — a virtual chess board or a 3D model viewer. An immersive space is full immersion — it can hide or show the real world. Passthrough lets you see the real world through the cameras while virtual content is blended in." What is the difference between a volume and an immersive space in visionOS?
visionOS presentation styles: Window — a 2D panel floating in the user's environment. Standard SwiftUI views. Multiple apps can show windows simultaneously. Volume — a bounded 3D region where RealityKit content is rendered. Fixed size; placed in the environment. Other apps can coexist. Good for: 3D model viewers, games, product visualisation. Immersive space — can show: Mixed (AR: virtual objects blended with real world), Progressive (gradually more immersive), Full (completely replaces real world view). Only one app can have an immersive space at a time. visionOS vocabulary: Passthrough — using cameras to show the real world inside the headset. visionOS is passthrough-based (unlike Meta Quest OLED passthrough). Ornament — a small UI element attached to a window, positioned outside its bounds (e.g., toolbar). Spatial Audio — 3D positional audio; sounds appear to come from specific locations in space. Optic flow — the visual experience of moving through space; must be comfortable to avoid motion sickness. In conversation: "We built the anatomy app as a volume — doctors can have it open next to their other windows while they review patient notes."
2 / 10
An ARKit developer explains world tracking: "ARKit provides world tracking — the device understands the 3D structure of the environment. Plane detection finds horizontal and vertical surfaces like tables and walls. Scene understanding builds a mesh of the room geometry. We use anchoring to attach virtual objects to real-world positions — when the user moves, the virtual object stays in place relative to the room." What is scene understanding in ARKit?
Scene understanding: ARKit's set of capabilities for understanding the physical environment. Components: Plane detection — identifies horizontal (floor, table, desk) and vertical (wall, door) planes. Enables placing virtual objects on real surfaces. Scene mesh — a real-time polygon mesh of the room geometry, reconstructed from LiDAR (iPad Pro, iPhone Pro). Enables occlusion (virtual objects hidden behind real objects) and physics. Object detection — recognises specific physical objects by comparing to 3D reference models. Image tracking — tracks 2D images (posters, books) and anchors content to them. Body tracking — tracks human body pose (skeleton). ARKit vocabulary: ARAnchor — a fixed point in the real world to attach virtual content. Types: world anchor, image anchor, plane anchor, body anchor. ARSession — the core ARKit session managing world tracking, sensor fusion, and rendering coordination. RealityKit — Apple's framework for rendering 3D content in AR; handles lighting, shadows, physics, occlusion. Works with ARKit for tracking. LiDAR scanner — Time-of-Flight sensor on Pro iPhones/iPads; enables instant plane detection and scene mesh reconstruction. In conversation: "With LiDAR scene mesh, we can do real occlusion — the virtual character walks behind the sofa, not through it."
3 / 10
A visionOS developer explains interaction design: "In visionOS, the primary input is eyes and hands. The user looks at a button — that's the selection. Then they pinch their fingers — that's the tap. We call it look-and-pinch. We add hover effects to interactive elements so users know what they're looking at. For precision tasks, we also support keyboard and trackpad via Bluetooth." How does eye tracking work as input in visionOS?
Eye tracking as input in visionOS: the headset tracks where the user is looking (gaze direction) to determine intent. Privacy design: no visible cursor is shown to other people or other apps — gaze data stays on-device and is never exposed to apps directly. The system reports "this element was selected" without revealing exactly where the user is looking. Interaction model: Look — user's gaze lands on an interactive element → hover effect appears. Pinch — user pinches index and thumb together → confirms selection (equivalent to a tap). Direct touch — for elements within reach, user can touch virtual UI panels directly. Voice — Siri and dictation throughout the system. Interaction vocabulary: Hover effect — visual feedback (brightness, scale, highlight) when an element is looked at; required for accessibility. Hover phase — .active (eye on element), .inactive (eye elsewhere). Spatial gesture — a gesture performed in 3D space (e.g., turning hand to scroll). Room-scale tracking — tracking the user's full body movement around a room. Comfort zone — UI design guideline: keep content in the 45° comfortable gaze zone in front of the user. In conversation: "We spent a week getting the hover effects right — if the element doesn't respond visually when the user looks at it, they don't know it's interactive."
4 / 10
An XR developer compares AR and VR terminology: "The spectrum goes from fully real to fully virtual. AR (Augmented Reality) overlays virtual content on the real world. MR (Mixed Reality) goes further — virtual objects interact with the real world (occlusion, physics). VR (Virtual Reality) replaces the real world entirely. XR or Extended Reality is the umbrella term for all of them. Apple calls visionOS 'spatial computing' — they want to avoid the VR stigma." What is the reality-virtuality continuum in XR vocabulary?
Reality-virtuality continuum (Milgram & Kishino, 1994): the conceptual spectrum from fully real to fully virtual. Positions: Real environment — the physical world. Augmented Reality (AR) — virtual content overlaid on the real world without interaction between them. Example: Pokémon Go, IKEA Place. Mixed Reality (MR) — virtual objects interact with the real world: occlusion (virtual behind real objects), physics (virtual ball bounces off real table). Example: HoloLens, visionOS mixed mode. Augmented Virtuality (AV) — mostly virtual with real elements inserted. Virtual Reality (VR) — completely immersive virtual environment. Example: Meta Quest in full VR mode. XR vocabulary: XR (Extended Reality) — umbrella term for AR, MR, VR. Field of View (FOV) — the angle of the visible display area. Wide FOV = more immersive. Human FOV: ~200°; headset FOV: typically 90–120°. Presence — the subjective feeling of "being there" in a virtual environment. Motion sickness / cybersickness — discomfort from mismatch between visual motion and vestibular (inner ear) signals. Minimised by low latency, high frame rate, and avoiding artificial locomotion. 6DoF (Six Degrees of Freedom) — tracking position (x,y,z) and rotation (pitch, yaw, roll). Full 6DoF enables natural movement. In conversation: "We chose mixed mode for the architecture review app — clients want to see how the building fits in their actual space, not replace reality with a virtual room."
5 / 10
A developer describes building spatial experiences with RealityKit: "RealityKit is Apple's rendering framework for spatial content. You define a scene as a hierarchy of entities and components — an Entity-Component architecture. An entity is a node in the scene graph. Components add behaviour: ModelComponent for 3D meshes, PhysicsBodyComponent for physics simulation, CollisionComponent for interaction. RealityComposer Pro is the visual editor for building these scenes." What is the Entity-Component architecture pattern in game/spatial computing engines?
Entity-Component (EC) / Entity-Component-System (ECS) architecture: a composition-over-inheritance pattern used in game engines and spatial computing frameworks. Entity — a bare identifier/container in the scene. Has no inherent behaviour or data. Component — a data bag attached to an entity. Defines properties: ModelComponent (has a 3D mesh), PhysicsBodyComponent (has mass, physics properties), CollisionComponent (has a collision shape), InputTargetComponent (can be interacted with). System — logic that processes all entities with a specific set of components. Example: PhysicsSystem processes all entities with PhysicsBodyComponent. Why better than inheritance: a monster in a game might need rendering, physics, AI, and animation — in inheritance you'd need a complex hierarchy; in EC, you just add components. RealityKit vocabulary: Entity — the scene node. Base class: `Entity`. Subclasses: `ModelEntity`, `AnchorEntity`. Scene graph — the tree of entities and their parent-child relationships. RealityComposer Pro — visual editor for building and previewing RealityKit scenes. Reality file (.reality) — compiled scene file for RealityKit. USD (Universal Scene Description) — Pixar's open 3D scene format; used extensively in Apple's spatial computing stack. In conversation: "ECS makes it easy to add behaviour without touching existing code — we added a HighlightComponent to every interactive entity without changing any existing logic."
6 / 10
Alex (Lead XR Developer) posted in the Slack channel: 'Just spent an hour debugging why our AR app wasn't detecting planes correctly. Turns out, we were using a deprecated version of ARKit that didn't support the new plane detection features. Huge headache!' What does 'deprecated' mean in this context?
'Deprecated' signifies that the version of ARKit is no longer actively developed or supported by Apple. This implies it might have limitations compared to newer versions and could be prone to issues. The correct answer highlights this lack of ongoing support – a key reason for encountering problems in Alex's scenario.
7 / 10
You're writing the PR description for a change that adds support for spatial anchors to your AR app. Which of the following best describes the purpose of a 'spatial anchor'?
Sarah (Junior Developer) suggests: 'It's just like a regular anchor, but for 3D things!'
A spatial anchor is a fundamental concept in spatial computing. It's not simply a 'virtual point'; it's an object that maintains its position within the physical environment, allowing AR content to be reliably attached and tracked. Sarah's initial suggestion misunderstands this core functionality.
8 / 10
Reviewing a colleague's code for a new visionOS app, you see the following comment:
David (Senior Developer) writes: 'The user should be able to seamlessly transition between different 'windows' within the spatial environment.' What is the primary function of a 'window' in this context?
In visionOS, a 'window' represents a distinct presentation style – essentially a 2D panel floating within the spatial environment. It's not a display or an authentication method; instead, it provides a user interface element allowing interaction with different app components. This aligns directly with the description of how windows function in the operating system.
9 / 10
During a standup meeting, your team lead asks: 'What progress have you made on integrating mesh lights into our MR experience?' You respond:
Ben (Developer) states: 'I'm working on creating a 'mesh' representation of the environment and then applying dynamic lighting to it.' What does 'mesh' refer to in this scenario?
In mixed reality, a 'mesh' refers to a detailed 3D model of the environment – typically generated from laser scanning or photogrammetry. This mesh is then used to accurately place and render virtual objects within that space. Ben's statement correctly identifies this core component of creating an MR experience.
10 / 10
You receive the following API response from a server providing spatial data:
Chloe (API Developer) notes: 'The response includes a 'pose' field – it describes the object's position and orientation in 3D space.' What does the term 'pose' represent?
In spatial computing, 'pose' is a crucial term describing an object's position (x, y, z coordinates) and orientation (rotation around x, y, and z axes) in a 3D coordinate system. This allows for accurate tracking and interaction with the object within its environment – it's how the system knows *where* something is and *how* it's facing.
What does the "Spatial Computing Vocabulary" vocabulary exercise cover?
This exercise tests real IT vocabulary related to spatial computing vocabulary through 10 multiple-choice questions, each built from realistic workplace sentences rather than abstract definitions.
Is this vocabulary exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
How many questions does this exercise have?
This exercise has 10 questions. Each one shows a real-world sentence or scenario with multiple-choice options and an explanation once you answer.
What happens after I answer a question?
You'll see immediate feedback showing whether your answer was correct, along with a short explanation of why — then a button to move to the next question, and a full results screen at the end.
Can I retry the exercise if I get questions wrong?
Yes. Once you reach the results screen, click "Try again" to reset your answers and go through the exercise from the start as many times as you like.
Do I need to create an account to take this exercise?
No account is needed. Your answers are scored in your browser during the session — nothing is saved to a server, so you can jump straight in.
Is my progress saved if I leave the page?
No — progress within an exercise resets if you navigate away or reload. Each exercise is short enough to complete in a few minutes in one sitting.
Are these vocabulary exercises connected to other topics?
Yes — browse the full vocabulary exercises hub to find related modules covering adjacent IT topics and roles.
How is this different from reading a glossary or blog article?
Exercises like this one are active recall drills — you have to choose the correct term or phrasing yourself, which builds retention faster than passively reading a definition.
Where can I find more vocabulary exercises?
Browse the full Vocabulary exercises hub for hundreds of modules covering Agile, DevOps, security, databases, architecture, and more — organised by IT role and skill.