Week 3 Flashcards

1
Q

What’s a command-line interface and its tradeoffs?

A

Syntax is: prompt command parameter1 parameter2 …

Its fast when you know what to do, but if you don’t there isn’t really much you can do.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What’s direct manipulation and its tradeoffs?

A

Direct manipulation refers to interacting with on-screen objects through gestures or actions that visually represent the task, such as dragging, clicking, or resizing. Its tradeoffs include increased ease of use and intuitive interaction, but it can be less efficient for complex tasks and may require a more cluttered interface. Additionally, it might be less accessible for users with physical or motor impairments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does translational distance mean?

A

Translational distance refers to how “direct” the direct manipulation is. It has the following levels: weak (mouse on screen), medium (finger on screen), strong (VR), immersive (AR).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the difference between interaction tasks and interaction techniques?

A

Interaction tasks is the abstract of what you need to do, where interaction techniques is how you do specific actions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are basic interaction tasks?

A

Some basic interaction tasks are input tasks, selection tasks, trigger tasks, navigation tasks, property setting tasks and transformation tasks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What’s the consideration when designing interaction techniques?

A

When designing interaction techniques, key considerations include understanding the target users’ needs, preferences, and limitations. It’s essential to ensure the design is intuitive, efficient, and accessible, while also providing appropriate feedback, minimizing errors, and supporting a smooth user experience across various devices and contexts.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What’s the considerations when evaluating interaction techniques?

A

When evaluating interaction techniques, considerations include usability, accessibility, efficiency, and user satisfaction. It’s important to assess how well the technique meets user goals, its learning curve, error rates, adaptability to different devices, and how it accommodates diverse user needs, including those with disabilities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the DOM?

A

The document object model (DOM) is a JS API for manipulating the in-memory representation of an HTML document loaded in the browser.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How is the DOM structured?

A

The DOM is structured as a tree with elements, text (leafs) and attributes (leafs). document is the root of the tree.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the three steps involved in handling an event?

A
  1. Pick an element you want to listen to events on.
  2. Indicate what event you want to react on.
  3. Specify the code that should be run when the event happens.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How does the event flow work in JS, and what is the difference between the capturing and bubbling phase?

A

In JavaScript, event flow refers to the sequence in which events propagate through the DOM. The two phases are capturing and bubbling. In the capturing phase, the event starts from the root and propagates down to the target element. In the bubbling phase, the event starts at the target element and bubbles up to the root.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly