Department Of Biomedical Engineering
Question Bank
BM3551 – EMBEDDED SYSTEMS AND IoMT
UNIT I – INTRODUCTION TO EMBEDDED SYSTEM DESIGN
PART-A
1. Define an Embedded System.
Answer:
An embedded system is a dedicated computer system designed to perform a specific function
within a larger system. It consists of hardware and software integrated to perform real-time
tasks.
2. What is an embedded processor?
Answer:
An embedded processor is a microprocessor or microcontroller designed specifically for
embedded applications, providing efficient processing with low power consumption.
3. List any four application areas of embedded systems.
Answer:
Medical devices
Automotive systems
Consumer electronics
Industrial automation
4. What are the categories of embedded processors?
Answer:
The major categories are:
Microprocessors
Microcontrollers
Digital Signal Processors (DSPs)
System-on-Chip (SoC)
5. Mention any two challenges in embedded system design.
Answer:
Limited memory and processing power.
Low power consumption with high performance.
6. What is meant by the design process of an embedded system?
Answer:
The design process is a systematic procedure involving requirement analysis, specification,
hardware/software design, implementation, testing, and maintenance.
7. Define system requirements.
Answer:
Requirements specify the functional and non-functional needs that an embedded system must
satisfy to meet user expectations.
8. What is system specification?
Answer:
A specification is a detailed description of the system's functions, performance, interfaces, and
constraints.
9. Differentiate hardware architecture and software architecture.
Answer:
Hardware architecture defines the physical components of the system, whereas software
architecture describes the organization and interaction of software modules.
10. What is Harvard Architecture?
Answer:
Harvard architecture uses separate memory and buses for program instructions and data,
enabling simultaneous access.
11. What is Von Neumann Architecture?
Answer:
Von Neumann architecture uses a single memory and common bus for both instructions and
data.
12. Expand CISC and RISC.
Answer:
CISC – Complex Instruction Set Computer
RISC – Reduced Instruction Set Computer
13. State one advantage of RISC architecture.
Answer:
RISC architecture executes instructions faster due to its simple instruction set and pipelined
execution.
14. What is a CPU bus?
Answer:
A CPU bus is a communication pathway that transfers data, addresses, and control signals
between the processor and other system components.
15. What is a bus protocol?
Answer:
A bus protocol is a set of rules that governs communication between devices connected to a
computer bus.
16. What is RAM?
Answer:
Random Access Memory (RAM) is volatile memory used to temporarily store data and
program instructions during execution.
17. What is EEPROM?
Answer:
Electrically Erasable Programmable Read-Only Memory (EEPROM) is non-volatile memory
that can be erased and reprogrammed electrically.
18. What is Flash Memory?
Answer:
Flash memory is a non-volatile memory used for storing firmware and application programs in
embedded systems.
19. What is BIOS?
Answer:
Basic Input/ Output System (BIOS) is firmware that initializes hardware components and starts
the operating system during booting.
20. What is POST?
Answer:
Power-On Self-Test (POST) is a diagnostic routine performed by BIOS to check hardware
components during system start up.
PART-B (16 MARKS)
1. Explain the embedded system design process with suitable block diagrams. Discuss the
various stages involved from requirement analysis to implementation. (16 Marks)
Answer Hints:
Definition of embedded system design process
Requirement analysis
System specification
Hardware architecture design
Software architecture design
Hardware–software partitioning
Implementation
Testing and debugging
Validation and maintenance
Block diagram of design flow
Advantages of systematic design
2. Describe the application areas, categories of embedded processors, and challenges involved
in embedded system design with suitable examples. (16 Marks)
Answer Hints:
Introduction to embedded processors
Categories:
o Microprocessor
o Microcontroller
o DSP
o SoC
Application areas:
o Medical devices
o Automotive systems
o Consumer electronics
o Industrial automation
o Aerospace
Design challenges:
o Power consumption
o Cost
o Reliability
o Memory limitations
o Real-time constraints
o Security
Suitable examples
3. Compare Harvard and Von Neumann architectures with neat diagrams. Discuss their
advantages, disadvantages, and applications. (16 Marks)
Answer Hints:
Introduction
Harvard architecture
o Block diagram
o Features
o Advantages
o Disadvantages
o Applications
Von Neumann architecture
o Block diagram
o Features
o Advantages
o Disadvantages
o Applications
Comparison table
Conclusion
4. Differentiate CISC and RISC architectures. Explain their features, advantages,
disadvantages, and applications. (16 Marks)
Answer Hints:
Definition of CISC
Definition of RISC
Features of CISC
Features of RISC
Comparison table
o Instruction set
o Addressing modes
o Execution speed
o Memory usage
o Hardware complexity
Advantages
Disadvantages
Applications
Conclusion
[Link] CPU bus architecture, bus organization, and bus protocols used in embedded systems
with neat illustrations. (16 Marks)
Answer Hints:
CPU bus overview
Types of buses
o Address bus
o Data bus
o Control bus
Bus organization
Bus protocol
Read cycle
Write cycle
Advantages
Applications
Neat block diagram
[Link] the different types of buses in embedded systems. Explain the role of address, data,
and control buses with suitable examples. (16 Marks)
Answer Hints:
Introduction to buses
Address bus
Data bus
Control bus
Bus width
Data transfer process
Examples
Advantages
Applications
[Link] the characteristics, organization, and applications of RAM, DRAM, EEPROM, and
Flash memory in embedded systems. (16 Marks)
Answer Hints:
Introduction to memory devices
RAM
o Features
o Advantages
DRAM
o Working
o Refresh operation
EEPROM
o Features
o Programming and erasing
Flash memory
o Types
o Advantages
Comparison table
Applications
8. Discuss the memory hierarchy in embedded systems. Compare volatile and non-volatile
memory devices with suitable examples. (16 Marks)
Answer Hints:
Memory hierarchy
Registers
Cache memory
RAM
ROM
EEPROM
Flash memory
Volatile memory
Non-volatile memory
Comparison table
Applications
9. Anlyze the functions of BIOS, POST, and device drivers during the booting process of an
embedded system. Illustrate the complete boot sequence with a flow diagram. (16 Marks)
Answer Hints:
Booting process
BIOS
POST
Boot loader
Device drivers
Operating system loading
Flowchart of boot sequence
Advantages
Real-time example
10. Analyze the hardware and software architecture of an embedded system. Explain how both
architectures interact to achieve efficient system performance with a suitable block diagram.
(16 Marks)
Answer Hints:
Hardware architecture
o Processor
o Memory
o I/O devices
o Communication interfaces
Software architecture
o Bootloader
o RTOS/Operating System
o Device drivers
o Application software
Hardware–software interaction
Block diagram
Advantages
Practical applications
UNIT II – PERIPHERAL INTERFACING
PART-A
1. What is peripheral interfacing?
Answer:
Peripheral interfacing is the process of connecting external input/output devices to an
embedded processor so that they can exchange data and perform specific functions.
2. What are I/O devices in an embedded system?
Answer:
I/O devices are hardware components that provide input to or receive output from the
embedded processor, such as keyboards, sensors, displays, printers, and actuators.
3. Define a timer.
Answer:
A timer is a hardware peripheral used to measure time intervals, generate delays, or produce
periodic events in an embedded system.
4. What is a counter?
Answer:
A counter is a hardware device that counts external or internal events such as pulses or clock
signals.
5. What is the function of a watchdog timer?
Answer:
A watchdog timer monitors system operation and automatically resets the processor if the
software fails to execute properly within a specified time.
6. Define an interrupt.
Answer:
An interrupt is a signal that temporarily stops the normal execution of a processor to service an
urgent event before resuming the interrupted program.
7. What is an interrupt controller?
Answer:
An interrupt controller is a hardware module that manages multiple interrupt requests and
forwards them to the processor based on priority.
8. What is an Analog-to-Digital Converter (ADC)?
Answer:
An ADC is a device that converts an analog signal into its corresponding digital representation
for processing by a microcontroller.
9. What is a Digital-to-Analog Converter (DAC)?
Answer:
A DAC converts digital data generated by a processor into an equivalent analog voltage or
current signal.
10. Why are ADCs used in embedded systems?
Answer:
ADCs are used to interface analog sensors with digital processors for measuring physical
quantities such as temperature, pressure, and voltage.
11. What is memory interfacing?
Answer:
Memory interfacing is the process of connecting memory devices to a processor for storing and
retrieving data and program instructions.
12. What is I/O device interfacing?
Answer:
I/O device interfacing is the method of connecting input and output devices to a processor
through suitable hardware and software techniques.
13. Define Programmed I/O.
Answer:
Programmed I/O is a data transfer technique in which the processor continuously checks the
status of an I/O device before transferring data.
14. What is Memory-Mapped I/O?
Answer:
Memory-Mapped I/O is a technique where input/output devices are assigned memory addresses
and accessed using normal memory instructions.
15. Expand SPI and I²C.
Answer:
SPI: Serial Peripheral Interface
I²C: Inter-Integrated Circuit
16. What is SPI?
Answer:
SPI is a synchronous serial communication protocol that enables high-speed data transfer
between a master device and one or more slave devices.
17. What is I²C communication?
Answer:
I²C is a two-wire serial communication protocol used for communication between integrated
circuits using SDA and SCL lines.
18. What is CAN protocol?
Answer:
Controller Area Network (CAN) is a reliable serial communication protocol widely used in
automotive and industrial embedded systems.
19. State one advantage of Bluetooth in embedded systems.
Answer:
Bluetooth provides low-power, short-range wireless communication for connecting embedded
devices without cables.
20. Mention any two wireless communication protocols used in embedded systems.
Answer:
Wi-Fi
Bluetooth
PART-B (16 MARKS)
[Link] the various I/O devices used in embedded systems. Discuss the working principles,
features, and applications of timers, counters, watchdog timers, and interrupt controllers with
neat block diagrams. (16 Marks)
Answer Hints:
Introduction to peripheral interfacing
I/O devices
Timers
Counters
Watchdog timer
Interrupt controller
Applications
Neat block diagram
[Link] the working principle of Analog-to-Digital Converter (ADC) and Digital-to-Analog
Converter (DAC). Illustrate their interfacing with embedded processors and discuss their
applications. (16 Marks)
Answer Hints:
Introduction
ADC architecture
ADC conversion process
DAC architecture
DAC conversion process
Processor interfacing
Comparison
Applications
[Link] memory interfacing techniques in embedded systems. Explain address decoding,
memory mapping, and memory interfacing with a suitable case study. (16 Marks)
Answer Hints:
Introduction
Memory organization
Address decoding
Memory mapping
Read/write operation
Case study
Advantages
[Link] I/O device interfacing in embedded systems with a suitable case study. Explain
the hardware and software requirements for interfacing external devices. (16 Marks)
Answer Hints:
I/O interfacing concept
Hardware interface
Software interface
Communication process
Case study
Advantages
Applications
[Link] Programmed I/O and Memory-Mapped I/O. Explain their working principles,
advantages, disadvantages, and applications with suitable examples. (16 Marks)
Answer Hints:
Introduction
Programmed I/O
Memory-Mapped I/O
Working principle
Comparison table
Advantages
Applications
[Link] the Serial Peripheral Interface (SPI) protocol with its architecture, communication
process, timing diagram, advantages, disadvantages, and applications. (16 Marks)
Answer Hints:
Introduction
SPI architecture
Master-slave communication
Signals (MOSI, MISO, SCK, SS)
Timing diagram
Advantages
Applications
[Link] the Inter-Integrated Circuit (I²C) communication protocol. Explain its architecture,
addressing mechanism, data transfer process, and applications. (16 Marks)
Answer Hints:
Introduction
SDA and SCL lines
Master-slave communication
Addressing
Read/write operation
Advantages
Applications
[Link] the Universal Serial Bus (USB) and Controller Area Network (CAN) protocols.
Compare their features and discuss their applications in embedded systems. (16 Marks)
Answer Hints:
USB architecture
USB communication
CAN architecture
CAN frame format
Comparison
Advantages
Applications
[Link] Ethernet, Wi-Fi, and Bluetooth communication protocols. Compare their
characteristics, communication range, speed, and applications in embedded systems. (16
Marks)
Answer Hints:
Ethernet
Wi-Fi
Bluetooth
Working principle
Comparison table
Advantages
Applications
[Link] the communication protocols used in embedded systems. Compare SPI, I²C,
USB, CAN, Ethernet, Wi-Fi, and Bluetooth based on architecture, speed, communication
distance, and applications. (16 Marks)
Answer Hints:
Overview of communication protocols
SPI
I²C
USB
CAN
Ethernet
Wi-Fi
Bluetooth
Comparison table
Selection criteria
Conclusion
UNIT III – EMBEDDED SYSTEM SOFTWARE DESIGN
PART-A
1. What is application software in an embedded system?
Answer:
Application software is a program designed to perform specific user-defined tasks on an
embedded system using the available hardware resources.
2. Define system software.
Answer:
System software is software that manages hardware resources and provides services for
application software, including operating systems, device drivers, and utilities.
3. What is a state diagram?
Answer:
A state diagram is a graphical representation that illustrates the different states of a system and
the transitions between those states.
4. What is a sequence diagram?
Answer:
A sequence diagram is a UML diagram that shows the interaction between system components
in chronological order.
5. What is a flowchart?
Answer:
A flowchart is a graphical representation of the sequence of operations in a program or process
using standard symbols.
6. Expand MBSE.
Answer:
MBSE stands for Model-Based Systems Engineering, a methodology that uses models to
support system design, analysis, verification, and validation.
7. State one advantage of MBSE.
Answer:
MBSE improves system design accuracy by providing a visual model that enhances
communication, reduces errors, and simplifies system analysis.
8. Why are high-level languages used in embedded systems?
Answer:
High-level languages simplify programming, improve code readability, reduce development
time, and enhance software portability.
9. What is Embedded C?
Answer:
Embedded C is an extension of the C programming language specifically designed for
programming embedded systems and microcontrollers.
10. What is Embedded C++?
Answer:
Embedded C++ is a subset of the C++ language optimized for embedded applications with
limited memory and processing resources.
11. What is an Integrated Development Environment (IDE)?
Answer:
An IDE is a software application that integrates program editing, compiling, debugging, and
project management into a single environment.
12. What is the function of an editor in an IDE?
Answer:
An editor is used to create and modify the source code of an embedded software application.
13. What is a compiler?
Answer:
A compiler is software that translates high-level language programs into machine code or
object code.
14. What is the purpose of a linker?
Answer:
A linker combines object files and libraries to generate an executable program for the target
embedded system.
15. What is an automatic code generator?
Answer:
An automatic code generator converts system models or design specifications into executable
source code automatically.
16. What is a debugger?
Answer:
A debugger is a software tool used to detect, locate, and correct errors in an embedded
program.
17. What is a Board Support Library (BSL)?
Answer:
A Board Support Library provides hardware-specific routines required for operating and
controlling an embedded development board.
18. What is a Chip Support Library (CSL)?
Answer:
A Chip Support Library is a collection of software functions that simplify the programming of
processor peripherals and hardware modules.
19. What is execution time in embedded software?
Answer:
Execution time is the total time required by a processor to execute a program or a specific task.
20. Why is power optimization important in embedded systems?
Answer:
Power optimization reduces energy consumption, increases battery life, minimizes heat
generation, and improves system reliability.
PART B
[Link] the roles of application software and system software in embedded systems.
Discuss their architecture, functions, and interactions with suitable examples. (16 Marks)
Answer Hints:
Introduction to embedded software
Application software
System software
Architecture
Functions
Interaction between hardware and software
Advantages
Applications
[Link] the software design techniques used in embedded systems. Discuss state diagrams,
sequence diagrams, and flowcharts with suitable examples. (16 Marks)
Answer Hints:
Introduction
State diagram
Sequence diagram
Flowchart
Advantages
Comparison
Applications
[Link] Model-Based Systems Engineering (MBSE). Explain its methodology, benefits,
design process, and applications in embedded system development. (16 Marks)
Answer Hints:
Introduction to MBSE
System modelling
Design methodology
Verification
Validation
Benefits
Applications
[Link] the use of high-level programming languages in embedded systems. Discuss the
features and advantages of Embedded C and Embedded C++. (16 Marks)
Answer Hints:
High-level languages
Embedded C
Embedded C++
Features
Advantages
Comparison
Applications
[Link] the Integrated Development Environment (IDE) used in embedded system software
development. Discuss the functions of the editor, compiler, linker, debugger, and loader. (16
Marks)
Answer Hints:
IDE overview
Editor
Compiler
Linker
Loader
Debugger
Development cycle
[Link] the functions of automatic code generators, Board Support Library (BSL), and
Chip Support Library (CSL) in embedded software development. (16 Marks)
Answer Hints:
Automatic code generation
BSL
CSL
Advantages
Development process
Applications
[Link] the embedded software development process from coding to debugging. Explain
the role of IDE tools in each phase. (16 Marks)
Answer Hints:
Software development life cycle
Coding
Compilation
Linking
Debugging
Testing
Deployment
[Link] execution time analysis and optimization techniques in embedded systems. Discuss
methods to improve software performance. (16 Marks)
Answer Hints:
Execution time
Performance metrics
Code optimization
Memory optimization
Compiler optimization
Advantages
[Link] energy and power optimization techniques in embedded systems. Explain the
importance of low-power software design with suitable examples. (16 Marks)
Answer Hints:
Power consumption
Energy optimization
Sleep modes
Clock management
Dynamic Voltage and Frequency Scaling (DVFS)
Applications
[Link] the complete embedded software design process. Discuss software design
techniques, IDE tools, code generation, debugging, execution time analysis, and power
optimization. (16 Marks)
Answer Hints:
Embedded software overview
Design techniques
MBSE
Embedded C/C++
IDE tools
BSL and CSL
Code generation
Debugging
Execution time optimization
Energy optimization
Conclusion
UNIT IV – DESIGN AND DEVELOPMENT OF IoT
1. Define the Internet of Things (IoT).
Answer:
The Internet of Things (IoT) is a network of physical devices embedded with sensors, software,
and communication technologies that enables them to collect, exchange, and process data over
the Internet.
2. Mention any two characteristics of IoT.
Answer:
Connectivity between devices
Real-time data communication
3. What are the technical building blocks of IoT?
Answer:
The technical building blocks of IoT include sensors, actuators, embedded processors,
communication networks, cloud computing, and application software.
4. What is a sensor in an IoT system?
Answer:
A sensor is a device that detects physical parameters such as temperature, pressure, humidity,
or motion and converts them into electrical signals.
5. Define a sensor node.
Answer:
A sensor node is an embedded device consisting of sensors, a processor, memory,
communication module, and power supply used for sensing and transmitting data.
6. What is the physical design of IoT?
Answer:
The physical design of IoT refers to the hardware components such as sensors, actuators,
embedded boards, communication interfaces, and power sources used to build an IoT system.
7. Name any two embedded target boards used in IoT applications.
Answer:
Raspberry Pi
Arduino
8. What is Raspberry Pi?
Answer:
Raspberry Pi is a low-cost single-board computer widely used for developing IoT and
embedded system applications.
9. What is Arduino?
Answer:
Arduino is an open-source microcontroller platform used for designing embedded and IoT
projects involving sensors and actuators.
10. What is ARM Cortex?
Answer:
ARM Cortex is a family of energy-efficient processors designed for embedded systems and IoT
applications.
11. What is Intel Galileo?
Answer:
Intel Galileo is an embedded development board based on Intel architecture that supports IoT
application development.
12. Define IoMT.
Answer:
The Internet of Medical Things (IoMT) is a network of interconnected medical devices and
healthcare applications that collect, transmit, and analyze patient data.
13. State one benefit of IoMT.
Answer:
IoMT enables remote patient monitoring and improves healthcare services through real-time
medical data collection.
14. What is cybersecurity?
Answer:
Cybersecurity is the practice of protecting computer systems, networks, and data from
unauthorized access, cyberattacks, and security threats.
15. What is a vulnerability?
Answer:
A vulnerability is a weakness in hardware, software, or a network that can be exploited by
attackers.
16. What is penetration testing?
Answer:
Penetration testing is a security assessment technique used to identify and evaluate
vulnerabilities in a system by simulating cyberattacks.
17. What is encryption?
Answer:
Encryption is the process of converting plain text into unreadable cipher text to protect
information during storage and transmission.
18. Why are sensors important in IoT?
Answer:
Sensors collect real-world data, enabling IoT devices to monitor environmental conditions and
support intelligent decision-making.
19. Mention any two applications of IoT.
Answer:
Smart healthcare
Smart home automation
20. State one application of IoMT.
Answer:
Remote patient monitoring using wearable medical devices is a common application of IoMT.
PART B
[Link] the concept, characteristics, and technical building blocks of the Internet of Things
(IoT). Discuss the architecture of an IoT system with neat diagrams. (16 Marks)
Answer Hints:
Introduction to IoT
Definition
Characteristics
IoT architecture
Technical building blocks
Communication technologies
Applications
Advantages
[Link] the physical design of IoT. Explain the roles of sensors, actuators, sensor nodes,
and communication modules in IoT systems. (16 Marks)
Answer Hints:
Physical design
Sensors
Actuators
Sensor node
Communication module
Block diagram
Applications
[Link] the architecture and interfacing of sensors using Raspberry Pi. Discuss the
development of a simple IoT application. (16 Marks)
Answer Hints:
Raspberry Pi architecture
GPIO interface
Sensor interfacing
Data acquisition
Communication
Example application
[Link] the architecture and programming of Arduino for IoT applications. Explain sensor
interfacing with suitable examples. (16 Marks)
Answer Hints:
Arduino architecture
Hardware features
Programming
Sensor interfacing
Example circuit
Applications
[Link] the features of ARM Cortex and Intel Galileo boards. Compare their architecture,
performance, and applications in IoT systems. (16 Marks)
Answer Hints:
ARM Cortex
Intel Galileo
Architecture
Features
Comparison table
Applications
[Link] the Internet of Medical Things (IoMT). Explain its architecture, components,
benefits, and healthcare applications. (16 Marks)
Answer Hints:
IoMT definition
Architecture
Components
Benefits
Healthcare applications
Challenges
[Link] the importance of cybersecurity in IoT systems. Discuss vulnerabilities, threats, and
common security challenges. (16 Marks)
Answer Hints:
Cybersecurity overview
Threats
Vulnerabilities
Attacks
Security challenges
Countermeasures
[Link] penetration testing in IoT systems. Explain the different phases involved and its
significance in identifying security vulnerabilities. (16 Marks)
Answer Hints:
Definition
Phases
Planning
Scanning
Exploitation
Reporting
Benefits
[Link] encryption technologies used in IoT. Discuss symmetric and asymmetric
encryption methods with suitable examples. (16 Marks)
Answer Hints:
Encryption
Symmetric encryption
Asymmetric encryption
Working principle
Advantages
Applications
[Link] the design and development of an IoT-based healthcare monitoring system using
embedded target boards. Explain the system architecture, communication, data processing, and
security measures. (16 Marks)
Answer Hints:
IoT healthcare overview
System architecture
Sensors
Embedded board
Communication
Cloud connectivity
Cyber security
Applications
UNIT V – INTERNET OF MEDICAL THINGS (IoMT)
PART A
1. Define the Internet of Medical Things (IoMT).
Answer:
The Internet of Medical Things (IoMT) is a network of interconnected medical devices,
sensors, and healthcare applications that collect, transmit, and analyze patient health data
through the Internet.
2. What is a Healthcare Monitoring System?
Answer:
A healthcare monitoring system continuously monitors a patient's physiological parameters and
transmits the collected data to healthcare professionals for diagnosis and treatment.
3. What is a Cyber-Physical System (CPS)?
Answer:
A Cyber-Physical System integrates computational components with physical processes to
monitor and control real-world systems through communication networks.
4. What is the purpose of IoMT in healthcare?
Answer:
IoMT improves patient care through real-time monitoring, remote diagnosis, efficient data
management, and timely medical intervention.
5. Expand NSUM.
Answer:
NSUM stands for Novel Symmetrical Uncertainty Measure, a feature selection technique used
to improve disease prediction accuracy.
6. What is the role of NSUM in diabetes prediction?
Answer:
NSUM selects the most relevant clinical features, thereby improving the accuracy and
efficiency of diabetes prediction models.
7. What are neuro sensors?
Answer:
Neuro sensors are biomedical sensors used to monitor electrical activity in the nervous system
for diagnosing neurological disorders.
8. Define feature selection.
Answer:
Feature selection is the process of identifying the most significant attributes from a dataset to
improve machine learning model performance.
9. What is AdaBoost?
Answer:
AdaBoost (Adaptive Boosting) is a machine learning algorithm that combines multiple weak
classifiers to create a strong predictive model.
10. Mention one application of AdaBoost in healthcare.
Answer:
AdaBoost is used for cancer diagnosis by improving the accuracy of classifying somatic
mutations.
11. What is a somatic mutation?
Answer:
A somatic mutation is a genetic alteration acquired by body cells that can contribute to diseases
such as cancer.
12. What is Alzheimer's disease?
Answer:
Alzheimer's disease is a progressive neurological disorder that causes memory loss, cognitive
impairment, and behavioral changes.
13. What is a fuzzy expert system?
Answer:
A fuzzy expert system uses fuzzy logic to make decisions based on uncertain or imprecise
medical information.
14. State one advantage of fuzzy logic in healthcare.
Answer:
Fuzzy logic improves clinical decision-making by handling uncertain and ambiguous patient
data effectively.
15. What is personalized healthcare?
Answer:
Personalized healthcare provides customized medical treatment based on an individual's health
data, genetics, and lifestyle.
16. Why is security important in IoMT?
Answer:
Security protects sensitive patient information from unauthorized access, cyberattacks, and data
breaches.
17. What is cloud computing in healthcare?
Answer:
Cloud computing provides online storage, processing, and management of healthcare data,
enabling remote access and collaboration.
18. What is a mobile healthcare application?
Answer:
A mobile healthcare application is software running on smartphones or tablets that supports
health monitoring, diagnosis, and patient management.
19. Mention any two applications of IoMT.
Answer:
Remote patient monitoring
Smart wearable health devices
20. State one advantage of IoMT over conventional healthcare systems.
Answer:
IoMT enables continuous remote monitoring, early disease detection, and timely medical
intervention while reducing hospital visits.
PART B
[Link] the architecture of the Internet of Medical Things (IoMT). Discuss its components,
working principle, advantages, challenges, and healthcare applications. (16 Marks)
Answer Hints:
Introduction to IoMT
Architecture
Components
Data acquisition
Communication
Cloud platform
Applications
Advantages
Challenges
[Link] the Novel Symmetrical Uncertainty Measure (NSUM) technique used for diabetes
prediction. Explain its methodology, feature selection process, advantages, and applications.
(16 Marks)
Answer Hints:
Diabetes prediction
NSUM overview
Feature selection
Classification process
Advantages
Applications
[Link] the Healthcare Monitoring System based on Cyber-Physical Systems (CPS).
Discuss its architecture, components, communication process, and applications. (16 Marks)
Answer Hints:
CPS overview
Architecture
Sensors
Communication
Data processing
Applications
Advantages
[Link] the IoT model for neuro sensors. Explain its architecture, data acquisition,
communication process, and healthcare applications. (16 Marks)
Answer Hints:
Neuro sensors
IoT architecture
Signal acquisition
Communication
Cloud connectivity
Applications
[Link] the AdaBoost algorithm with feature selection for evaluating somatic mutations in
cancer. Discuss its working principle and healthcare applications. (16 Marks)
Answer Hints:
Cancer diagnosis
AdaBoost
Feature selection
Classification
Advantages
Applications
[Link] the fuzzy-based expert system for diagnosing Alzheimer's disease. Explain its
architecture, fuzzy inference process, advantages, and limitations. (16 Marks)
Answer Hints:
Alzheimer's disease
Fuzzy logic
Membership functions
Inference engine
Decision-making
Applications
[Link] the secured architecture for IoT-enabled personalized healthcare systems. Discuss
authentication, encryption, data privacy, and secure communication techniques. (16 Marks)
Answer Hints:
Personalized healthcare
Security architecture
Authentication
Encryption
Privacy
Secure communication
Applications
[Link] healthcare application development in mobile and cloud environments. Explain
the architecture, advantages, challenges, and real-time healthcare applications. (16 Marks)
Answer Hints:
Mobile healthcare
Cloud computing
System architecture
Data storage
Communication
Applications
Benefits
[Link] the role of IoMT in modern healthcare. Explain its applications in disease
diagnosis, patient monitoring, emergency healthcare, and telemedicine. (16 Marks)
Answer Hints:
IoMT overview
Remote monitoring
Disease diagnosis
Emergency care
Telemedicine
Advantages
Challenges
[Link] the recent advancements in IoMT for smart healthcare. Discuss AI-based
diagnosis, wearable medical devices, cloud computing, cybersecurity, and future trends. (16
Marks)
Answer Hints:
Smart healthcare
AI in healthcare
Wearable devices
Cloud integration
Cybersecurity
Future trends
Conclusion