Skip to main content

Mumbai University/BE IT/User Interaction Design/Evaluation Techniques and Framework/Multiple Choice Questions - Part 2

Hello Everyone!
This article is based on the common Multiple Choice Questions related to User Interface Design. The MCQs are based on the topic- Evaluation technique and framework

From the University Exam point of view, these MCQs were given as question bank in the 2020 Mumbai University-BE-Information Technology Exam for the subject- User Interface Design. The MCQs set is prepared from taking different cluster data.



Q 1) Which are not problem with Experimental studies on groups?

a. Number of users
b. Data gathering
c. Analysis
d. Choice of task

Solution: a) Number of users

Q 2) Evaluation technique test ______.

a. Usability
b. Colours choice
c. Font style
d. Command button size

Solution: a) Usability

Q 3) Heuristics are related to ______.

a. Make things visible
b. User control and freedom
c. Simplifying the task
d. Principles and guidelines

Solution: d) Principles and guidelines

Q 4) Evaluation doesn't test following in interactive system?

a. Functionality
b. Acceptability
c. Colour combination
d. Usability

Solution: c) Colour combination

Q 5) Evaluation has three main goals, which is incorrect from the following?

a. To identify any specific problems with the system
b. To find out and record the remarkable work of developer

Solution: b) To find out and record the remarkable work of developer

Q 6) Which statement is incorrect with respect to Goals of Evaluation?

a. Assess extent of system functionality
b. Developer can do evaluation at his home alone
c. Identify specific problems
d. Assess effect of interface on user

Solution: b) Developer can do evaluation at his home alone

Q 7) With respect to evaluation of Interactive system, which is incorrect statement?

a. Evaluation should not be thought of as a single phase in the design process
b. We can make a broad distinction between evaluation by the designer or a usability expert, without direct involvement by users, and evaluation that studies actual use of the system.
c. There is no link link between evaluation and the principles and prototyping techniques
d. Ideally, evaluation should occur throughout the design life cycle

Solution: c) There is no link link between evaluation and the principles and prototyping techniques

Q 8) Which statement is incorrect about Evaluation?

a. Occurs in laboratory, field and/or in collaboration with users
b. No need to consider at all stages in the design life cycle
c. Tests usability and functionality of system
d. Evaluates both design and implementation

Solution: b) No need to consider at all stages in the design life cycle

Q 9) Which is not approach of expert evaluation?

a. Analytic methods
b. Model-based methods
c. Observational methods
d. Review methods

Solution: c) Observational methods

Q 10) Cognitive walk-through does not consider ________.

a. What cognitive processes are required?
b. What learning problems may occur?
c. What impact will interaction have on user?
d. What is the colour and shape of UI?

Solution: d) What is the colour and shape of UI?

Q 11) With respect to goal of evaluation, which statement is incorrect?

a. This may identify the aspects of the design which, when used in their intended context like confusion amongst users
b. This may identify the aspects of the design which, when used in their intended context like cause of unexpected results.
c. The final goal of evaluation is to identify specific problems with the design
d. This is not related to the functionality or usability of the design

Solution: d) This is not related to the functionality or usability of the design

Q 12) Which of the following statements is true?

a. Experienced designers can create the best and final design in the first try
b. The interaction design process is looped over only once
c. Evaluation is used to check whether the needs of the user and stakeholders are being met

Solution: c) Evaluation is used to check whether the needs of the user and stakeholders are being met

Q 13) Which statement is incorrect about Review-based evaluation?

a. Design rationale can also provide useful evaluation information
b. Results from the literature used to support or refute parts of design
c. Care needed to ensure results are transferable to new design
d. It is not Model-based evaluation

Solution: d) It is not Model-based evaluation

Q 14) Which are not observational method for evaluation technique?

a. Data gathering
b. Post task walkthrough
c. Automated analysis
d. Think aloud

Solution: a) Data gathering

Q 15) Which rules are used in evaluation of system?

a. Smit and Mosier guidelines
b. Neilson's Heuristics
c. Shneiderman's eight principles

Solution: b) Neilson's Heuristics


PAGE 1   ||   PAGE 2   ||   PAGE 3   ||   PAGE 4


Check out the other User Interaction Design MCQs posts

Comments

Popular posts from this blog

UML - Use Case Diagram for Vending Machine

Hello Everyone! Here is an example of an Use case Diagram of a Vending Machine System. Problem Statement - A vending machine accepts coins for variety of products. The user selects the drinks from products available through selection panel. If the drink is available the price of the product is displayed. The user then deposits the coins depending on the price of the product. Coin collector collects coin after stipulated time the controller will compare the deposited coin with price. If amount deposited is less than price then error message will be displayed and all deposited coin will be dispensed by the coin dispenser else the drink will be dispensed by the product dispenser. Check out other UML (Unified Modeling Language) Diagrams - Class Diagram   Object Diagram   Sequence Diagram Collaboration Diagram   Activity Diagram   State Diagram   Component Diagram   Deployment Diagram  

UML - Component Diagram for Intranet development of a college/school

Hello Everyone! Here is an example of an Component Diagram for Intranet development. Problem Statement - An intranet is a computer network for sharing information, collaboration tools, operational systems, and other computing services only within an organization. An Internet Service Provider (ISP) provides LAN services, Application services, Email services, Domain and Web hosting services to an organization. The LAN service is provided through Switch to the terminals using Ethernet and other cables. The firewall feature is provided for web applications through Application services. All the students and staff members are provided with an official email account through email services. The college has its own domain and web hosting package provided by the ISP. All these services maintain a database which is stored on server. The database server and all the services are controlled and handled by the Administrator of the college. Check out other UML (Unified Modeling Language)...

Connecting GitHub with Jenkins - Step by step Tutorial

Hello Everyone, In this tutorial, we will learn how to create a New Item (Project), connect Git and GitHub to Jenkins and run the files from the Git repository on Jenkins. Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Facing trouble with the installation of Jenkins? Click here to know more. NOTE: It is mandatory to install plugins for Git and GitHub before connecting your GitHub repository to Jenkins. If you're using Jenkins for the first time, you need to install the plugins. To know more about these plugins, check out Git and GitHub Plugins for Jenkins . This tutorial demonstrates executing python code which requires separate plugins. Know more about Python Plugi...