Skip to main content

Mumbai University/BE IT/User Interaction Design/Process of Designing, Prototyping and Construction/Multiple Choice Questions - Part 1

Hello Everyone!
This article is based on the common Multiple Choice Questions related to User Interaction Design. The MCQs are based on the topic- Process of Designing, Prototyping and Construction.

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 Interaction Design. The MCQs set is prepared from taking different cluster data. These MCQs are also related to the subject Human Computer Interaction.





Q 1) To minimize the users memory load we use ____ principles of interface design.

a. Do not provide any tutorial on UI
b. Distract user with multiple colours on every page
c. Establish meaningful defaults
d. Do not define intuitive shortcuts

Solution: c) Establish meaningful defaults

Q 2) An advantage of the database management approach is ________.

a. Data is integrated and can be accessed by multiple programs
b. Data is dependent on programs
c. Data redundancy increases
d. Data is inconsistent

Solution: a) Data is integrated and can be accessed by multiple programs

Q 3) Software that controls the execution of computer programs and may provide various services are ____.

a. Firmware
b. Malware
c. Operating System
d. Database

Solution: c) Operating System

Q 4) Which of the following is not a user interface design process?

a. Interface validation
b. Knowledgeable, frequent users
c. User, task, and environment analysis and modelling
d. Interface design

Solution: b) Knowledgeable, frequent users

Q 5) The _______ is the part of a computer and its software that people can see, hear, touch, talk.

a. GIF
b. JPEG
c. PLC
d. User interface

Solution: d) User Interface

Q 6) What incorporates data, architectural, interface, and procedural representations of the software?

a. System image
b. Design model
c. Mental image

Solution: b) Design model

Q 7) Conceptual design ______.

a. is a documentation technique
b. needs data volume and processing frequencies to determine the size of the databas
c. is designing the relational model
d. involves modelling independent of the DBMS

Solution: d) Involves modelling independent of the DBMS

Q 8) ________ represents an Information system graphically.

a. Simply a flowchart
b. Activity diagram
c. Dataflow diagram
d. Pictogram

Solution: c) Dataflow diagram

Q 9) A relational database developer refers to a record as ______.

a. A relation
b. A tuple
c. A criteria
d. An attribute

Solution: b) A tuple

Q 10) Main working space scene on a monitor after turning on a computer with a GUI interface _______.

a. Desktop
b. Start Button
c. View
d. Windows

Solution: a) Desktop

Q 11) Which menu item is not typically found in the File Menu?

a. Concatenate
b. Close
c. Save
d. Print

Solution: a) Concatenate

Q 12) A type of user interface that allows users to interact with electronic devices with images rather than text commands is _______.

a. GUI
b. Desktop
c. Operating System
d. Notification Area

Solution: a) GUI

Q 13) ______ are first-level menus used to provide access to common and frequently used application actions that take place on a wide variety of different windows.

a. Pop-up
b. Pull down
c. Pull up
d. Cascading

Solution: b) Pull down

Q 14) Which of the following option is not considered by the Interface design?

a. The design of the interface between two computers
b. The design of interface between software components
c. The design of interfaces between the software and producers and consumers of information
d. The design of interfaces between software components

Solution: a) The design of the interface between two computers

Q 15) What does IDE stand for?

a. Integrated Design Environment
b. Interior Development Environment
c. Integrated Development Environment
d. Interior Design Environment

Solution: c) Integrated Development Environment


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...