information technology management final Flashcards
What is UX (user experience)?
encompasses the overall user journey and how they interact with and feel about a product
What is UI (user interface)?
- part of UX
- focuses on the visual and interactive elements of a product
Describe and give an example for each of the 7 fundamental principles of design.
- discoverability: user must be able to discover and get to the features, search feature that allows users to quickly find specific information or features
- feedback: ability to provide user with the right feedback while they navigate the site, a loading animation that indicates that the transaction is being processed
- conceptual model: recognizing patterns and understanding how a design entity works, shopping cart in ecommerce sites
- affordances: potential actions that an object allows based on its properties/capabilities, chair affords sitting and spinning
- signifiers: cues you get to detect affordances, flat seat suggests where to sit on chair
- mapping: relationship between actions and results, moving a slider to the right typically increases the value and moving it to the left decreases it
- constraints: constraining behavior, graying out a button when an action is unavailable is a semantic constraint
Describe and give an example for each of the 5 principles of visual design.
- scale: using relative size to signal importance, large image of the main product and smaller images for related products
- visual hierarchy: position signals their importance, bold and all caps for headline
- balance: satisfying arrangement of design elements, login page with buttons placed symmetrically on either side of a vertical center line
- contrast: provides noticeable differences between two objects, use red to indicate destructive actions like deleting
- Gestalt principles: our tendency to perceive the whole as opposed to the individual elements, link color should be reserved only for interactive text and other clickable elements as users will perceive that all items sharing this characteristic are related and work in the same way
Name some of the Gestalt principles.
- similarity
- continuation
- proximity
- common region
- symmetry and order
What are HTML elements?
- consist of tags and content
- content is anything in between opening and closing tag
What are HTML tags?
define how the content should appear
What are HTML attributes?
provides additional information to the browser about how a tag should behave or appear
Write the heading tag.
<h1>Heading 1</h1>
Write the paragraph tag.
<p>This is a paragraph.</p>
Write the link tag. What tag does it use, and what does that tag mean?
- <a href=“https://mcgill.ca”>Click me!</a>
- anchor tag: defines a hyperlink
Write the image tag. What is so special about the image element? What attribute is absolutely necessary in the image tag? What does the alt attribute do?
- does not have content or ending tag
- the src (source) attribute
- text that appears if the image is missing or if you hover over image
- < img src=”pic_trulli.jpg” alt=”Italian Trulli” >
How would you write a comment in HTML?
<!-- This is a comment -->
Identify each part of http://www.modulemedia/com/ourwork/index.html.
- http:// is the protocol
- www.modulemedia.com is the domain name
- /ourwork/ is the path
- index.html is the filename
Under the “table” parent tag, what is td, th and tr? What would the code look like if you want to add an HTML table without a header? What would the code look like if you want to add an HTML table with a header?
- td: table data
- th: table header, bold
- tr: table row
- < table >
< tr >< td >< /td >< td >X< /td >< td >< /td >< /tr > (first td combo means cell is empty, second td combo means cell has X in it, third td combo means cell is empty)
< /table > - < table >
< tr >
< th >Resource< /th >
< /tr >
Describe the formatting of a “ul” (unordered list) parent tag.
bullets
Describe the formatting of a “ol” (ordered list) parent tag. How would the code look like if you were to add list items to your list?
- numbers (1, 2, 3, …)
- < ol >
< li >First line item< /li >
< li >Second line item< /li >
< li >Third line item< /li >
< /ol >
Describe the following < input > elements: text, radio, checkbox, submit, button.
- text: displays a single-line text input field
- radio: selecting one of many choices
- checkbox: selecting zero or more of many choices
- submit: submitting the form
- button: clickable button (but not for submitting)
Describe the < form > element.
a container for different types of input elements
What must the for attribute of the < label > tag equal to?
it must equal to the id attribute of the < input > element
What does < br > tag mean? What is so special about this tag?
- line break
- does not have content or ending tag
What does the value attribute do in an input tag? How would the code look like?
- specifies the default value or current value of the input field
- will appear in the input box when the page is loaded
- < input type = “button” value = “Go!” />
What does the < option > element do? How do you define a pre-selected option?
- defines an option that can be selected
- use the selected attribute to pre-select an option
Describe the select element. What attribute must be in the select element?
- creates a drop-down list
- name attribute
larger in size than ?
tags