Saturday, July 4, 2026

IT4206 Enterprise Application Development MCQ Answers | UCSC BIT 2024 | Java Programming Online Classes

💼 IT4206 Enterprise Application Development

UCSC BIT 2024 | MCQ Solutions with Theory & Examples

📚 About this guide: Complete solutions for the IT4206 Enterprise Application Development paper from UCSC BIT 2024. Covers Java EE, EJB, Servlets, JSP, WebSocket, HTTP protocols, and design patterns. Each MCQ includes theory, a real-world example, and a quick memory tip — perfect for BIT exam revision.
Q1✅ C – Plumbing

What is Plumbing?

Theory: Plumbing is the underlying infrastructure that allows different software components to communicate and exchange data.

Example: When you click Buy on a shopping site, the request travels from UI → Server → Payment → Database. This communication chain is called plumbing.

Q2✅ E – God Class

What is a God Class?

Theory: A God Class is a class that does too many tasks, violating the Single Responsibility Principle (SRP).

StudentManager
- Login()
- Register()
- Delete()
- PrintReport()
- SendEmail()
- CalculateMarks()

Fix: Split into smaller classes like AuthService, ReportService, EmailService.

Q5✅ C – Business Logic Tier

What is Business Logic?

Theory: Contains all business rules and calculations of the application.

If customer is Gold
   Discount = 20%
Else
   Discount = 10%

This calculation belongs to the Business Logic Layer.

Q3✅ A – Server Helper

What is a Server Helper?

Theory: Works inside the Server JVM and helps execute remote requests.

Flow: Client → Server Helper → Server Object → Database

Q4✅ C – DGC

What is Distributed Garbage Collection?

Theory: DGC automatically removes unused remote objects in Java RMI to save memory.

Example: Client disconnects → Remote object no longer used → Java deletes it automatically.

Q6✅ A – Message Driven Bean

What is an MDB?

Theory: Processes messages asynchronously. Clients cannot call its methods directly.

Example: Customer places order → Message sent to queue → MDB processes it later.

Q7✅ B – Java EE Server

Java EE Transaction Management

Theory: Java EE servers provide automatic transaction management (also supports manual control).

Example: Bank transfer: Deduct + Add money. If one fails → entire transaction rolls back.

Q9✅ A – Entity Bean

What is an Entity Bean?

Theory: Represents permanent data stored in databases.

Examples: Student table, Employee table, Product table. Each record = one entity.

Q10✅ B – lookup()

What does JNDI lookup() do?

Theory: Searches the naming service and returns the requested object.

DataSource ds = (DataSource) ctx.lookup("jdbc/MyDB");
Q14✅ A – @JoinColumn

What is @JoinColumn?

Theory: Defines the foreign key between two database tables.

Student (student_id)
   ↓ foreign key
Course (student_id)
Q8✅ E – CREATE

Which is NOT an HTTP method?

Theory: Standard HTTP methods: GET, POST, PUT, DELETE, OPTIONS. There is no CREATE method.

Note: POST is used to create new resources (e.g., new user).

Q16✅ B – POST

What does POST do?

Theory: Sends data to the server to create or update resources.

Examples: User Registration, Login Form, Online Order.

Q17✅ C – HTTP 3xx

What do 3xx status codes mean?

Theory: 3xx codes mean the requested page has been redirected.

  • 301 → Permanent Redirect
  • 302 → Temporary Redirect
Q15✅ D – service()

What does service() do?

Theory: Checks if request is GET or POST and calls the correct method.

GET → doGet() | POST → doPost()

Q18✅ E – web.xml

What is web.xml?

Theory: The deployment descriptor for Java web applications. Maps Servlets to URL patterns.

Q19✅ D – servlet-mapping

What does <servlet-mapping> do?

Theory: Connects a Servlet with a URL.

/login → LoginServlet
Q20✅ D – ServletRequest

What is ServletRequest?

Theory: Contains all data sent by the client.

request.getParameter("username");
Q23✅ B – Web Container

What is a Web Container?

Theory: Manages Servlets, JSPs, sessions, and HTTP requests.

Example: Apache Tomcat's servlet container processes incoming web requests.

Q21✅ A – @OnOpen

What is @OnOpen?

Theory: Executed when a WebSocket connection starts.

Example: User joins a live chat → @OnOpen is called.

Q22✅ E – Control Frames

What are Control Frames?

Theory: Manage the WebSocket connection.

  • Ping – Check connection
  • Pong – Reply to Ping
  • Close – End connection
Q11✅ D – Stateless Session Bean

What is a Stateless Session Bean?

Theory: Does not remember client information between requests.

Example: Currency Converter – each request is independent.

Q12✅ C – NoSuchObjectException

When does NoSuchObjectException occur?

Theory: When a client tries to access a remote object that no longer exists.

Example: Server deletes object → Client calls it again → Exception thrown.

Q13✅ B – init-method

What is init-method?

Theory: Runs immediately after a Spring Bean is created.

Example: Open database connection, load configuration files.

Q24✅ B – Message Driven Bean

MDB Use Case

Theory: Processes messages asynchronously from a queue.

Example: Email notification service processes emails after an order is placed.

Q25✅ A – @PostActivate

What is @PostActivate?

Theory: Called after a Stateful Session Bean is reactivated from passive storage.

Example: User session temporarily stored → later restored → @PostActivate executes.

QAnsMemory Tip
1CPlumbing = Communication infrastructure
2EGod Class = One class does everything
3AServer Helper = Runs inside server JVM
4CDGC = Deletes unused remote objects
5CBusiness Logic = Rules & calculations
6AMDB = Asynchronous messaging
7BJava EE = Automatic transactions
8ECREATE is NOT an HTTP method
9AEntity = Database object
10Blookup() = Find object by name
11DStateless = No client memory
12CObject removed → NoSuchObjectException
13Binit-method = Bean initialization
14A@JoinColumn = Foreign key
15Dservice() calls doGet()/doPost()
16BPOST = Send data
17C3xx = Redirect
18Eweb.xml = Deployment descriptor
19Dservlet-mapping = URL mapping
20DServletRequest = Client request data
21A@OnOpen = Connection starts
22EControl Frames = Ping/Pong/Close
23BWeb Container = Runs Servlets
24BMDB = Queue message processor
25A@PostActivate = Bean reactivated

❓ Frequently Asked Questions (FAQ)

Q: What is IT4206 Enterprise Application Development? A: IT4206 is a UCSC BIT course covering Java EE, EJB, Servlets, JSP, WebSocket, and enterprise design patterns for building scalable web applications.
Q: What is the difference between Stateful and Stateless Session Beans? A: Stateful beans maintain client state between requests, while Stateless beans do not remember client information — each request is independent.
Q: What is a God Class and why is it bad? A: A God Class is a class that handles too many responsibilities, violating the Single Responsibility Principle. It makes code hard to maintain, test, and reuse.
Q: What does the service() method do in a Servlet? A: The service() method checks whether the request is GET or POST and dispatches it to doGet() or doPost() accordingly.
Q: What are HTTP 3xx status codes? A: 3xx codes indicate redirection. 301 means permanent redirect, and 302 means temporary redirect.

🎓 Expert ICT, Coding, School Classes, Digital Marketing & University Project Guidance

Struggling with your university final year project? Want to master coding, upscale your business with expert digital marketing, or learn absolute computer basics from scratch? We offer high-quality individual and group online classes conducted in English, Sinhala, or Tamil mediums. Get guaranteed academic success and professional growth with tailored guidance.


🎓 University Final Year Project Guidance & AI

Get specialized, end-to-end mentoring and technical support to pass your degree or master's program with flying colors:

  • 🏫 Targeted Institutes: Expert guidance tailored for BIT UCSC, UoM, SLIIT, NIBM, and other leading universities.
  • 🔬 Postgraduate Support: Comprehensive assistance for MSc Software Final Year Projects.
  • 🤖 AI & Smart Applications: Step-by-step implementation of AI, Machine Learning (ML), and automation modules.
  • Guaranteed Success: Help with documentation, system architecture, coding, and viva preparation.

🏫 School ICT & Corporate Beginner Classes

  • 💻 Non-IT Staff Computer Basics: Absolute beginner-friendly online classes covering essential computer skills, office tools, and internet operations.
  • 🎒 Primary & Secondary (Grades 1-10): Interactive online ICT classes tailored to build strong foundations from early ages.
  • 📝 Exam Prep: Dedicated training packages for GCE O/L, GCE A/L ICT, and GIT exams.
  • 🌍 Global Syllabuses: Complete curriculum coverage for Local, Edexcel, and Cambridge in English & Tamil Mediums.

📢 Software Development & Digital Marketing Services

  • ⚙️ Software & Web Development: Professional custom software application and website development built using PHP & MySQL.
  • 🎯 Social Media Management: Content creation, publishing, and channel management for Facebook, Instagram, TikTok, and YouTube.
  • 📈 Ad Boosting: Highly targeted paid advertising campaigns to drive leads, traffic, and sales to your business.

📞 Connect With Us Instantly

Book your slot for online classes or get a premium tech service quote today!

💬 WhatsApp: +94 729622034

📧 Email: ITClassSL@gmail.com


🌐 Explore Our Resources & Communities

Stay updated with our latest tutorials, project ideas, and student guides across all our official platforms:

Thursday, July 2, 2026

BIT UCSC IT4106 – User Experience Design (UXD) 20223 Exam Preparation Guide Question Model Paper design principle final year software project Colombo Sri Lanka

BIT UCSC IT4106 – User Experience Design (UXD)

Exam Preparation Guide (Questions 1–25)

Click on each question below to reveal the theory, correct answers, and exam tips!

Question 1 – User-Centered Design Principle

Question

Which of the following is an example of a user-centered design principle?

Correct Answer

✅ (c)

Beginner Explanation

User-Centered Design (UCD) means designing the system for users, not for developers. Always ask: What do users need? What problems do they have? What feedback do they give?

Example: Imagine creating a food delivery app. ❌ Wrong: Add 100 features because developers like them. ✅ Correct: Ask users what they need. If they want faster checkout, improve checkout.

Option Explanation

❌ (a) Adding as many features as possible
❌ (b) Designing based on developer preferences
✅ (c) Prioritizing user needs and feedback
❌ (d) Focusing seriously on visual appearance
❌ (e) Ignoring user context
💡 Memory Tip: Users come first.
Question 2 – Primary Goals of User Research

Question

What are the primary goals of conducting user research in UX design?

Correct Answers

✅ (b), (d)

Beginner Explanation

Before designing a product, we need to understand users. User research helps answer questions like: Who are the users? What do they want? What problems do they face? How can we improve their experience?

Example: Suppose you're creating an online shopping website. You interview customers. They say: Search is difficult. Checkout takes too long. Now you know what to improve.

Option Explanation

❌ (a) Validate developers' choices
✅ (b) Understand users' behaviors, needs, and motivations
❌ (c) Make the product beautiful
✅ (d) Identify problems and areas for improvement
❌ (e) Reduce development cost
💡 Memory Tip: User Research = Learn about users before building.
Question 3 – Affordances in UX Design

Question

Affordances in UX design are important because they...

Correct Answers

✅ (a), (d)

Beginner Explanation

Affordance means the design tells users how something should be used.

Example: A button looks like it can be clicked. A door handle looks like it can be pulled. A slider looks like it can be moved. These are affordances.

Option Explanation

✅ (a) Communicate the function of a design element
❌ (b) Make design cheaper
❌ (c) Improve beauty only
✅ (d) Show how an object can be used
❌ (e) Ensure usability for everyone
💡 Memory Tip: Affordance = "This tells me what I can do."
Question 4 – Interaction Types: Instructing

Question

Which interaction type involves users issuing instructions to a system?

Correct Answer

✅ (a) Instructing

Beginner Explanation

There are several interaction styles. Instructing means giving commands to a computer.

Examples: Click "Save", Press Print, Type: Copy file, Select "Delete". The user is telling the computer what to do.

Option Explanation

✅ (a) Instructing
❌ (b) Conversing
❌ (c) Exploring
❌ (d) Responding
❌ (e) Manipulating
💡 Memory Tip: Instructing = Giving commands.
Question 5 – Benefits of Involving Users

Question

What are the benefits of involving users throughout the development process?

Correct Answers

✅ (a), (c), (d)

Beginner Explanation

When users are involved during development: Developers know what users really need. Users give feedback early. Problems are fixed before release. Users are happier with the final product.

Example: You're building a university website. Students test it every month. They report: Timetable is hard to find. Login is confusing. Developers fix these issues before launch. The result: Better website, happier students.

Option Explanation

✅ (a) End product becomes more usable
❌ (b) No effect on cost
✅ (c) Helps manage user expectations
✅ (d) Increases user satisfaction and adoption
❌ (e) Removes the need for testing
💡 Memory Tip: Involve users early = Better product + Happy users.
Question 6 – Pen-based Interfaces

Question

Which interface allows users to write, draw, select, and move objects using a stylus or light pen?

Correct Answer

✅ (b) Pen-based Interfaces

Beginner Explanation

A pen-based interface lets you use a digital pen (stylus) to interact with the screen.

Example: Writing notes on an iPad with an Apple Pencil or drawing on a graphics tablet.

Option Explanation

❌ (a) Voice-based
✅ (b) Pen-based
❌ (c) Form-based
❌ (d) Gesture-based
❌ (e) Command Driven
💡 Memory Tip: Pen → Write & Draw
Question 7 – Role of Perception

Question

What is the role of perception in interaction design?

Correct Answer

✅ (b) Acquiring information from the environment through the senses

Beginner Explanation

Perception means using your eyes, ears, nose, skin, and tongue to understand the world.

Example: When you see a red button, your eyes recognize it before you decide to click.

💡 Memory Tip: Perception = Sensing the world
Question 8 – Experiential and Reflective Cognition

Question

Which of the following describe Experiential and Reflective Cognition?

Correct Answers

✅ (b), (c)

Beginner Explanation

Experiential Cognition: Doing things naturally without much thinking (e.g., Driving, Talking, Walking).

Reflective Cognition: Thinking deeply (e.g., Solving problems, Designing a website, Writing a report).

💡 Memory Tip: Experiential = Doing | Reflective = Thinking
Question 9 – Cognitive Frameworks in HCI

Question

Which of the following are cognitive frameworks in HCI?

Correct Answers

✅ (b), (c), (e)

Beginner Explanation

Distributed Cognition: People, computers and tools work together (e.g., A doctor using a computer and medical equipment).

External Cognition: Writing things down helps memory (e.g., Using sticky notes).

Mental Models: People build ideas about how systems work (e.g., Expecting the shopping cart icon to store products).

💡 Memory Tip: Distributed = Work together | External = Write it down | Mental Model = User's expectation
Question 10 – Purpose of Triangulation

Question

What is the purpose of Triangulation?

Correct Answer

✅ (b)

Beginner Explanation

Triangulation means checking information using more than one method.

Example: Interview users, observe users, conduct surveys. If all methods give similar results, the findings are more reliable.

💡 Memory Tip: Triangulation = Multiple sources = Better accuracy
Question 11 – Contextual Inquiry

Question

What is Contextual Inquiry?

Correct Answers

✅ (b), (c)

Beginner Explanation

Researchers watch users while they work in their real environment.

Example: Watching a cashier use billing software in a supermarket.

💡 Memory Tip: Contextual Inquiry = Observe users where they actually work.
Question 12 – Successful Data Gathering

Question

What is required for successful data gathering?

Correct Answers

✅ (a), (b), (d)

Beginner Explanation

Before collecting data you should: ✔ Know your goal. ✔ Choose the right participants. ✔ Build a good relationship with participants.

💡 Memory Tip: Goal + Participants + Good communication
Question 13 – Qualitative Data

Question

What is Qualitative Data?

Correct Answer

✅ (b)

Beginner Explanation

Qualitative data is non-numerical.

Examples: Opinions, Interviews, Pictures, Comments.

💡 Memory Tip: Qualitative = Words
Question 14 – Quantitative Analysis

Question

What is Quantitative Analysis?

Correct Answer

✅ (c)

Beginner Explanation

Quantitative analysis uses numbers.

Examples: Average, Percentage, Ratio.

💡 Memory Tip: Quantitative = Numbers
Question 15 – Content Analysis

Question

What is Content Analysis?

Correct Answers

✅ (a), (c)

Beginner Explanation

Content analysis groups information into categories and counts how often they appear.

Example: 100 reviews → Good = 60, Bad = 40.

💡 Memory Tip: Content Analysis = Categorize + Count
Question 16 – Thematic Analysis

Question

What is Thematic Analysis?

Correct Answers

✅ (a), (c), (e)

Beginner Explanation

Thematic analysis looks for common ideas or themes.

Example: Customer comments: "I like fast delivery." / "Delivery is quick." → Theme = Fast Delivery.

💡 Memory Tip: Theme = Common idea
Question 17 – Analytic Frameworks

Question

Which of the following are analytic frameworks?

Correct Answers

✅ (a), (c), (d)

Beginner Explanation

Conversation Analysis: Studies conversations.

Content Analysis: Categories and frequencies.

Grounded Theory: Creates theories from collected data.

Question 18 – Low-Fidelity Prototype

Question

What is a Low-Fidelity Prototype?

Correct Answer

✅ (c)

Beginner Explanation

Low-fidelity means simple and cheap.

Examples: Paper sketch, Whiteboard drawing, Storyboard.

💡 Memory Tip: Low Fidelity = Paper
Question 19 – High-Fidelity Prototype

Question

What is a High-Fidelity Prototype?

Correct Answers

✅ (a), (c)

Beginner Explanation

Looks almost like the real product.

Example: A clickable mobile app prototype.

💡 Memory Tip: High Fidelity = Almost Final Product
Question 20 – Advantages of Low-Fidelity Prototypes

Question

What are the advantages of Low-Fidelity Prototypes?

Correct Answers

✅ (a), (c), (e)

Beginner Explanation

Advantages: Easy to change, Easy to discuss, Test many ideas quickly.

Question 21 – Conceptual vs Concrete Design

Question

What is the difference between Conceptual and Concrete Design?

Correct Answers

✅ (a), (b)

Beginner Explanation

Conceptual Design: "What should the system do?"

Concrete Design: "How exactly should it look and work?"

Question 22 – Formative Evaluation

Question

What is Formative Evaluation?

Correct Answer

✅ (b)

Beginner Explanation

Formative evaluation happens during development to improve the design before it is finished.

💡 Memory Tip: Formative = Improve while building
Question 23 – Heuristic Evaluation

Question

What is Heuristic Evaluation?

Correct Answers

✅ (b), (c), (e)

Beginner Explanation

Experts inspect the interface using usability principles. Users are not required.

Example: Experts check Buttons, Menus, Navigation, Error messages.

Question 24 – Evaluation Methods in Controlled Settings

Question

Which evaluation methods are used in controlled settings?

Correct Answers

✅ (c), (e)

Beginner Explanation

Controlled setting = Laboratory or testing room.

Methods: ✔ Usability Testing, ✔ Experiments.

Question 25 – Cognitive & Pluralistic Walkthroughs

Question

What are Cognitive and Pluralistic Walkthroughs?

Correct Answers

✅ (a), (c), (e)

Beginner Explanation

Cognitive Walkthrough: Experts imagine each step a new user takes to complete a task.

Pluralistic Walkthrough: A group reviews the design together (Users, Developers, UX experts). This helps find usability problems from different perspectives.

💡 Memory Tip: Cognitive = "Can a new user learn this?" | Pluralistic = "Everyone reviews together."

🎯 Final Revision Cheat Sheet (Questions 1–25)

Q Topic Correct Answer(s) Easy Memory
1User-Centered Design(c)Users first
2User Research Goals(b), (d)Understand users
3Affordances(a), (d)Tells how to use
4Interaction Types(a)Give commands
5Involving Users(a), (c), (d)Better product
6Pen-based Interface(b)Pen = Write
7Perception(b)Senses
8Cognition(b), (c)Doing vs Thinking
9Cognitive Frameworks(b), (c), (e)Distributed, External, Mental
10Triangulation(b)Multiple sources
11Contextual Inquiry(b), (c)Observe at work
12Data Gathering(a), (b), (d)Goal + Participants
13Qualitative Data(b)Words
14Quantitative Analysis(c)Numbers
15Content Analysis(a), (c)Categorize + Count
16Thematic Analysis(a), (c), (e)Find themes
17Analytic Frameworks(a), (c), (d)Conversation, Content, Grounded
18Low-Fidelity Prototype(c)Paper prototype
19High-Fidelity Prototype(a), (c)Almost final product
20Low-Fidelity Advantages(a), (c), (e)Quick, communicate, compare
21Conceptual vs Concrete(a), (b)What vs How
22Formative Evaluation(b)Improve during design
23Heuristic Evaluation(b), (c), (e)Experts + Usability principles
24Controlled Settings(c), (e)Testing + Experiments
25Walkthroughs(a), (c), (e)New users + Group review

🎓 BIT UCSC Exam Tips

If you understand these concepts—not just memorize the answers—you'll be well prepared for similar MCQs and theory questions in the BIT UCSC IT4106 examination.

🎓 Expert ICT, Coding, School Classes, Digital Marketing & University Project Guidance

Struggling with your university final year project? Want to master coding, upscale your business with expert digital marketing, or learn absolute computer basics from scratch? We offer high-quality individual and group online classes conducted in English, Sinhala, or Tamil mediums. Get guaranteed academic success and professional growth with tailored guidance.


🎓 University Final Year Project Guidance & AI

Get specialized, end-to-end mentoring and technical support to pass your degree or master's program with flying colors:

  • 🏫 Targeted Institutes: Expert guidance tailored for BIT UCSC, UoM, SLIIT, NIBM, and other leading universities.
  • 🔬 Postgraduate Support: Comprehensive assistance for MSc Software Final Year Projects.
  • 🤖 AI & Smart Applications: Step-by-step implementation of AI, Machine Learning (ML), and automation modules.
  • Guaranteed Success: Help with documentation, system architecture, coding, and viva preparation.

🏫 School ICT & Corporate Beginner Classes

  • 💻 Non-IT Staff Computer Basics: Absolute beginner-friendly online classes covering essential computer skills, office tools, and internet operations.
  • 🎒 Primary & Secondary (Grades 1-10): Interactive online ICT classes tailored to build strong foundations from early ages.
  • 📝 Exam Prep: Dedicated training packages for GCE O/L, GCE A/L ICT, and GIT exams.
  • 🌍 Global Syllabuses: Complete curriculum coverage for Local, Edexcel, and Cambridge in English & Tamil Mediums.

📢 Software Development & Digital Marketing Services

  • ⚙️ Software & Web Development: Professional custom software application and website development built using PHP & MySQL.
  • 🎯 Social Media Management: Content creation, publishing, and channel management for Facebook, Instagram, TikTok, and YouTube.
  • 📈 Ad Boosting: Highly targeted paid advertising campaigns to drive leads, traffic, and sales to your business.

📞 Connect With Us Instantly

Book your slot for online classes or get a premium tech service quote today!

💬 WhatsApp: +94 729622034

📧 Email: ITClassSL@gmail.com


🌐 Explore Our Resources & Communities

Stay updated with our latest tutorials, project ideas, and student guides across all our official platforms:

Wednesday, July 1, 2026

BIT UCSC IT4106 - User Experience Design Pass paper Model 2024 Questions and Answers with explanation

BIT UCSC IT4106 – Interaction Design & HCI

Exam Preparation Guide (Questions 1–25)

Click on each question below to reveal the theory, correct answers, and exam tips!

Question 1 – Purpose of User Experience (UX) Design

Question

Which of the following best describe the purpose of UX Design?

Correct Answer

✅ (b), (c)

High-Level Theory

User Experience (UX) Design is about creating products that are easy, useful, enjoyable, and meaningful for users. UX designers study user needs, improve usability, accessibility, and overall satisfaction.

Option Explanation

❌ (a) Designing the internal logic of algorithms
This is the responsibility of software developers, not UX designers.
✅ (b) Creating a cohesive and meaningful experience for users
This is one of the main goals of UX.
✅ (c) Improving usability and accessibility
UX ensures products are easy to learn and usable by everyone.
❌ (d) Reducing server costs
This belongs to system architecture or infrastructure.
❌ (e) Ensuring coding standards
This is software engineering, not UX.
💡 Exam Tip: UX = User Feelings + User Experience + User Satisfaction
Question 2 – Difference Between UI and UX

Correct Answer

✅ (a), (b)

High-Level Theory

Many students confuse UI and UX.

  • UI (User Interface): Buttons, Menus, Colours, Icons, Layout.
  • UX (User Experience): Ease of use, User satisfaction, User research, User journey, Overall experience.

Think of a car: UI = Steering wheel, dashboard, seats. UX = How enjoyable and easy the car is to drive.

Option Explanation

✅ (a) UI focuses on buttons and menus
✅ (b) UX understands user needs
❌ (c) UI and UX are the same
❌ (d) UX only concerns layout (UX is much broader)
❌ (e) Database optimization
💡 Exam Tip: UI = Look | UX = Feel
Question 3 – Third HCI Paradigm

Correct Answer

✅ (a), (c), (e)

High-Level Theory

The Third HCI Paradigm studies how technology fits into real-life situations. Instead of only focusing on efficiency or cognition, it considers: Social interaction, Culture, Environment, User values, Emotions, and Context.

Option Explanation

✅ (a) Social and cultural aspects
❌ (b) Computational models of cognition (Belongs to the Second HCI Paradigm)
✅ (c) Users adapt technology in new ways (This is called appropriation)
❌ (d) Efficiency over context
✅ (e) User values
💡 Exam Tip: First Paradigm → Body | Second Paradigm → Brain | Third Paradigm → Society & Context
Question 4 – Conceptual Models

Correct Answer

✅ (a), (c), (e)

High-Level Theory

A Conceptual Model explains how a system works before designing the interface. It helps both designers and users understand: What the system does, How users interact with it, and How different functions are connected.

Option Explanation

✅ (a) High-level description
❌ (b) Eliminates user involvement (Users should always be involved early)
✅ (c) Helps users build mental models
❌ (d) Created after physical design (It should be created before UI design)
✅ (e) Helps designers plan interactions
💡 Exam Tip: Conceptual Model = Blueprint of system behaviour
Question 5 – Interaction Types

Correct Answer

✅ (b), (c), (d)

High-Level Theory

Interaction Design includes different ways users communicate with systems:

  • 1. Instructing: Giving commands (Click "Print", Press Save).
  • 2. Conversing: Talking with the system (Siri, ChatGPT, Alexa).
  • 3. Manipulating: Directly moving objects (Dragging files, Zooming photos).
  • 4. Exploring: Moving through physical or virtual spaces (Google Maps, VR games).

Option Explanation

❌ (a) Instructing means direct manipulation (Instructing is giving commands, not manipulating objects)
✅ (b) Conversing = dialogue
✅ (c) Manipulating = dragging and gestures
✅ (d) Exploring = moving through environments
❌ (e) Responding means giving commands (Responding refers to the system reacting to user input)
💡 Exam Tip: Instructing → Commands | Conversing → Talking | Manipulating → Drag & Touch | Exploring → Navigation
Question 6 – Multimodal Interfaces

Question

Which of the following statements are true about multimodal interfaces in user experience design?

Correct Answer

✅ (b), (d)

High-Level Theory

A Multimodal Interface allows users to interact with a computer using more than one input or output method (e.g., touch, voice, gestures, screen, sound). Examples include smartphones and smart TVs.

Option Explanation

❌ (a) They allow users to interact using a single consistent input like keyboard only.
This describes a single-modal interface.
✅ (b) They support interaction using speech, gesture and touch.
This is the exact definition of a multimodal interface.
❌ (c) They are designed only for visually impaired users.
Everyone can use multimodal interfaces.
✅ (d) They enhance expressiveness and flexibility in HCI.
Users can choose the interaction method they prefer.
❌ (e) They replace all GUI interfaces.
GUI is still widely used; multimodal interfaces usually work together with GUI.
💡 Exam Tip: Multi = Many, Modal = Mode. Multimodal = Many ways to interact (Input: Touch, Voice, Gesture | Output: Screen, Sound, Vibration).
Question 7 – Experiential Cognition

Question

Which of the following are characteristics of Experiential Cognition?

Correct Answer

✅ (b), (c)

High-Level Theory

Experiential Cognition refers to thinking that happens automatically while performing familiar, routine activities (like driving or typing). It develops through practice and requires little conscious thought, unlike Reflective Cognition which involves deep thinking and problem-solving.

Option Explanation

❌ (a) Deliberate thinking and judgement
This is Reflective Cognition.
✅ (b) Happens automatically during routine activities
Core definition of Experiential Cognition.
✅ (c) Driving, reading and watching videos
These activities become automatic through experience.
❌ (d) Requires planning and decision making
This is Reflective Cognition.
❌ (e) Solving new problems
This is also Reflective Cognition.
💡 Exam Tip: Experiential = Automatic & Routine | Reflective = Deep Thinking & Problem Solving.
Question 8 – Mental Models

Question

Which statements are true regarding Mental Models in Interaction Design?

Correct Answer

✅ (b), (c), (e)

High-Level Theory

A Mental Model is the user's understanding or expectation of how a system works, developed through experience and observation. Designers should create Conceptual Models that match users' Mental Models to improve usability. Incorrect mental models lead to user errors.

Option Explanation

❌ (a) Mental models are always technically correct.
Users can misunderstand systems.
✅ (b) Users quickly form mental models.
People begin making assumptions immediately.
✅ (c) Designers should match conceptual models with users' mental models.
This improves usability.
❌ (d) Mental models never change.
They improve and change as users gain experience.
✅ (e) Incorrect mental models cause misunderstanding.
This often leads to user errors.
💡 Exam Tip: Mental Model = User's understanding | Conceptual Model = Designer's plan. Good design aligns both!
Question 9 – Distributed Cognition

Question

Which statements reflect the Distributed Cognition framework?

Correct Answer

✅ (b), (c), (e)

High-Level Theory

Distributed Cognition states that thinking is not just inside one person's brain; it is shared among people, computers, documents, tools, and the environment. Examples include airline cockpits (pilot + instruments) or using a shopping list/Google Maps to offload memory.

Option Explanation

❌ (a) Thinking only happens inside one person's mind.
Opposite of Distributed Cognition.
✅ (b) Thinking is shared across people, tools and environment.
Main definition.
✅ (c) Documents become part of thinking.
External representations support cognition.
❌ (d) Only reducing memory load.
It also includes teamwork and interaction with tools, not just memory reduction.
✅ (e) Airline cockpit example.
Classic HCI example of distributed cognition.
💡 Exam Tip: Distributed Cognition = Thinking is shared across people, tools, and environment (not just inside the brain).
Question 10 – Structured Interviews

Question

Which are advantages of Structured Interviews during UX data gathering?

Correct Answer

✅ (a), (c), (d)

High-Level Theory

A Structured Interview asks every participant the exact same questions in the same order. This ensures fairness, consistency, and makes it easy to compare answers statistically (quantitative data). However, it lacks flexibility and cannot explore unexpected topics.

Option Explanation

✅ (a) Easy to replicate.
Everyone receives the same questions.
❌ (b) Provides highly flexible responses.
Structured interviews are not flexible; unstructured interviews are.
✅ (c) Generates quantitative data for comparison.
Responses are easy to compare statistically.
✅ (d) Reduces interviewer bias.
The interviewer asks the same questions to everyone.
❌ (e) Encourages natural conversation.
This is a feature of unstructured interviews.
💡 Exam Tip: Structured = Same questions, easy to compare, less bias | Unstructured = Flexible, natural conversation.
Question 11 – Triangulation

Correct Answer

✅ (a), (c), (d)

High-Level Theory

Triangulation uses multiple methods, data sources, or theories to improve the validity and reliability of research. It does not remove the need for participant consent.

💡 Memory Tip: Triangulation = 3 or more ways to verify data.
Question 12 – Contextual Inquiry

Correct Answer

✅ (a), (c)

High-Level Theory

Researcher observes users in their real work environment. User acts as the expert. Researcher acts as the apprentice.

💡 Memory Tip: Contextual Inquiry = Observe users where they actually work.
Question 13 – Quantitative Data

Correct Answer

✅ (a), (b), (e)

High-Level Theory

Numerical data. Can be analyzed statistically. Measures quantities, trends, and patterns.

💡 Memory Tip: Quantitative = Quantity = Numbers.
Question 14 – Affinity Diagram

Correct Answer

✅ (b), (c), (e)

High-Level Theory

Write observations on sticky notes. Group similar ideas. Find themes and relationships.

💡 Memory Tip: Affinity Diagram = Organize ideas into groups.
Question 15 – Critical Incident Analysis

Correct Answer

✅ (a), (c), (e)

High-Level Theory

Focuses on important user events. Studies errors, confusion, and usability problems. Helps improve system design.

💡 Memory Tip: Critical Incident = Important event that affects usability.
Question 16 – Grounded Theory

Correct Answer

✅ (c), (d)

High-Level Theory

A qualitative research method used to develop a new theory from collected data (Data → Theory). Involves Open, Axial, and Selective coding stages.

💡 Memory Tip: Grounded Theory = Collect Data First → Theory Later.
Question 17 – Structured Notations

Correct Answer

✅ (a), (c), (e)

High-Level Theory

Standardized ways to present information using diagrams (UML, Flowcharts, HTA). Good for structure, but misses human emotions and social context.

💡 Memory Tip: Structured Notation = Good for structure, Bad for human emotions.
Question 18 – Low-Fidelity Prototype

Correct Answer

✅ (a), (c), (e)

High-Level Theory

Simple and inexpensive model (paper sketches, sticky notes) created during early design stages to test ideas quickly and receive early feedback.

💡 Memory Tip: Low Fidelity = Low Cost = Early Design = Paper Prototype.
Question 19 – Wizard of Oz Prototype

Correct Answer

✅ (a), (c), (e)

High-Level Theory

A testing technique where users believe they are interacting with a real computer system, but a human secretly performs the system's responses.

💡 Memory Tip: Wizard of Oz = Human Pretends to be Computer.
Question 20 – Conceptual Model

Correct Answer

✅ (a), (c), (e)

High-Level Theory

A high-level description of how users will interact with a system. Main components include Interface Metaphors, Interaction Types, and Mapping.

💡 Memory Tip: Conceptual Model = Metaphor + Interaction + Mapping.
Question 21 – High-Fidelity Prototype

Correct Answer

✅ (a), (b), (d)

High-Level Theory

A prototype that looks and behaves very similar to the final product. Includes realistic layouts, colors, and interactions. Used for usability testing and client presentations.

💡 Memory Tip: High Fidelity = High Quality = Near Final Product.
Question 22 – Formative Evaluation

Correct Answer

✅ (b), (d)

High-Level Theory

Conducted during the design and development process to improve the product before it is completed. Detects problems early to save development costs.

💡 Memory Tip: Formative = Form the Design (During development).
Question 23 – Pluralistic Walkthrough

Correct Answer

✅ (a), (c), (d)

High-Level Theory

A usability evaluation method where users, designers, developers, and usability experts evaluate a prototype together step-by-step to find issues.

💡 Memory Tip: Pluralistic = Many People Review Together.
Question 24 – Controlled Evaluation Settings

Correct Answer

✅ (a), (c), (e)

High-Level Theory

Conducted in a controlled environment (such as a usability lab) where researchers manage variables to obtain accurate results and compare user performance fairly.

💡 Memory Tip: Controlled Evaluation = Same Environment + Same Tasks = Fair Comparison.
Question 25 – A/B Testing

Correct Answer

✅ (a), (c), (d)

High-Level Theory

Compares two versions of a webpage or interface (Version A vs Version B) to determine which one performs better based on metrics like click rate or conversion rate.

💡 Memory Tip: A/B Testing = Compare Version A vs Version B.

🎯 Final Revision Sheet (Questions 1–25)

Q Topic Correct Answer
1UX Designb, c
2UI vs UXa, b
3Third HCI Paradigma, c, e
4Conceptual Modelsa, c, e
5Interaction Typesb, c, d
6Multimodal Interfacesb, d
7Experiential Cognitionb, c
8Mental Modelsb, c, e
9Distributed Cognitionb, c, e
10Structured Interviewsa, c, d
11Triangulationa, c, d
12Contextual Inquirya, c
13Quantitative Dataa, b, e
14Affinity Diagramb, c, e
15Critical Incident Analysisa, c, e
16Grounded Theoryc, d
17Structured Notationsa, c, e
18Low-Fidelity Prototypea, c, e
19Wizard of Oz Prototypea, c, e
20Conceptual Modela, c, e
21High-Fidelity Prototypea, b, d
22Formative Evaluationb, d
23Pluralistic Walkthrougha, c, d
24Controlled Evaluationa, c, e
25A/B Testinga, c, d

🎓 BIT UCSC Exam Tips

If you understand these concepts—not just memorize the answers—you'll be well prepared for similar MCQs and theory questions in the BIT UCSC IT4106 examination.

🎓 Expert ICT, Coding, School Classes, Digital Marketing & University Project Guidance

Struggling with your university final year project? Want to master coding, upscale your business with expert digital marketing, or learn absolute computer basics from scratch? We offer high-quality individual and group online classes conducted in English, Sinhala, or Tamil mediums. Get guaranteed academic success and professional growth with tailored guidance.


🎓 University Final Year Project Guidance & AI

Get specialized, end-to-end mentoring and technical support to pass your degree or master's program with flying colors:

  • 🏫 Targeted Institutes: Expert guidance tailored for BIT UCSC, UoM, SLIIT, NIBM, and other leading universities.
  • 🔬 Postgraduate Support: Comprehensive assistance for MSc Software Final Year Projects.
  • 🤖 AI & Smart Applications: Step-by-step implementation of AI, Machine Learning (ML), and automation modules.
  • Guaranteed Success: Help with documentation, system architecture, coding, and viva preparation.

🏫 School ICT & Corporate Beginner Classes

  • 💻 Non-IT Staff Computer Basics: Absolute beginner-friendly online classes covering essential computer skills, office tools, and internet operations.
  • 🎒 Primary & Secondary (Grades 1-10): Interactive online ICT classes tailored to build strong foundations from early ages.
  • 📝 Exam Prep: Dedicated training packages for GCE O/L, GCE A/L ICT, and GIT exams.
  • 🌍 Global Syllabuses: Complete curriculum coverage for Local, Edexcel, and Cambridge in English & Tamil Mediums.

📢 Software Development & Digital Marketing Services

  • ⚙️ Software & Web Development: Professional custom software application and website development built using PHP & MySQL.
  • 🎯 Social Media Management: Content creation, publishing, and channel management for Facebook, Instagram, TikTok, and YouTube.
  • 📈 Ad Boosting: Highly targeted paid advertising campaigns to drive leads, traffic, and sales to your business.

📞 Connect With Us Instantly

Book your slot for online classes or get a premium tech service quote today!

💬 WhatsApp: +94 729622034

📧 Email: ITClassSL@gmail.com


🌐 Explore Our Resources & Communities

Stay updated with our latest tutorials, project ideas, and student guides across all our official platforms: