📖 Tier 1: Prepare & Study Guide ✓ 100% Solved with Rationales

Embedded Systems & Sensor Interfacing (Smart Sensing & IoT) Solved Questions & Notes (2026) - Apex Rankers

Smart Sensing, IoT & Autonomous Systems > Smart Sensing & IoT > Embedded Systems & Sensor Interfacing

82 Total Solved Questions
~123 mins Estimated Reading Time
1 Subject Areas / Chapters
Select Topic Area / Chapter: Click any section below to switch questions

Embedded Systems & Sensor Interfacing

100%
Showing 25 of 82 (30%)
🎯 Practice
Jump:
Q. 1 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is the fundamental architectural difference between Von Neumann and Harvard computer architectures in microcontrollers?
A
Von Neumann uses a single shared memory bus for both program instructions and data; Harvard uses physically separate instruction and data memory buses, allowing simultaneous access
✓ Correct
B
Von Neumann is 64-bit; Harvard is 8-bit
C
Von Neumann has no RAM memory
D
Harvard architecture cannot execute C programs
💡 Step-by-Step Explanation & Concept Rationale
Harvard architecture (used in ARM Cortex-M, AVR, ESP32) permits fetching the next program instruction while simultaneously reading data from RAM in 1 clock cycle.
Q. 2 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
In the ARM Cortex-M family, which core features hardware single/double-precision Floating Point Unit (FPU) and DSP SIMD instructions for sensor signal processing?
A
ARM Cortex-M4 and Cortex-M7
✓ Correct
B
ARM Cortex-M0
C
ARM Cortex-M0+
D
ARM7TDMI legacy core
💡 Step-by-Step Explanation & Concept Rationale
Cortex-M4/M7 cores include dedicated hardware FPU and DSP vector math instructions, essential for running real-time FFTs and Kalman filters on drone avionics.
Q. 3 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is the primary function of the 'volatile' keyword in Embedded C/C++ variable declarations?
A
It tells the compiler optimizer that the variable's value may change unexpectedly at any time (e.g. by hardware ISR or peripheral register), preventing dangerous compiler caching into CPU registers
✓ Correct
B
It allocates memory in high-speed flash memory
C
It makes the variable private to a single function
D
It encrypts the variable value in RAM
💡 Step-by-Step Explanation & Concept Rationale
Without 'volatile', optimizing compilers may cache hardware register reads or loop flags in a CPU register, creating infinite loops when waiting for hardware interrupts.
Q. 4 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is a 'Push-Pull' versus 'Open-Drain' (Open-Collector) GPIO output configuration?
A
Push-Pull actively drives the pin to both VDD (High) and GND (Low); Open-Drain only actively pulls to GND (Low) and requires an external pull-up resistor to reach High
✓ Correct
B
Push-Pull is for analog signals; Open-Drain is for digital
C
Push-Pull requires 5 volts; Open-Drain requires 12 volts
D
There is no functional electrical difference
💡 Step-by-Step Explanation & Concept Rationale
Open-drain configuration enables shared multi-device communication buses (like I2C SDA/SCL) and level-shifting between 3.3V and 5V without short-circuit damage.
Q. 5 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
Why are 'Schmitt Trigger' inputs used on microcontroller digital input pins?
A
They provide hysteresis (two different switching thresholds for rising and falling edges) to prevent noisy, slow-moving analog inputs from triggering multiple false digital transitions
✓ Correct
B
They amplify low-level radio signals
C
They protect the chip from nuclear radiation
D
They convert AC electrical power to DC
💡 Step-by-Step Explanation & Concept Rationale
Schmitt trigger hysteresis cleans up noisy square waves from mechanical rain gauge switches and magnetic hall sensors.
Q. 6 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is 'Switch Contact Bounce' (Mechanical Bouncing) and how is it mitigated in sensor hardware?
A
Physical metal contacts rapidly opening and closing multiple times (1-10 ms) upon actuation; solved via RC low-pass filter hardware or software timer debouncing routines
✓ Correct
B
A ball bouncing on a trampoline
C
An electrical power surge from lightning
D
A motor spinning backwards
💡 Step-by-Step Explanation & Concept Rationale
Without debouncing, a single rainfall tipping bucket event can be erroneously counted as dozens of discrete tips by an interrupt.
Q. 7 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Successive Approximation Register' (SAR) ADC architecture?
A
A widely used ADC design that uses a binary search algorithm and internal DAC to resolve analog voltages bit-by-bit from MSB to LSB in N clock cycles for an N-bit conversion
✓ Correct
B
An ADC that uses a flash bank of 2^N parallel comparators
C
A software algorithm for calculating square roots
D
A type of analog volume slider
💡 Step-by-Step Explanation & Concept Rationale
SAR ADCs offer the optimal blend of medium-to-high speed (up to 5 MSPS), medium-to-high resolution (12-18 bits), and ultra-low power consumption in microcontrollers.
Q. 8 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Delta-Sigma' (\Delta\Sigma) ADC architecture, and what application is it preferred for?
A
An oversampling ADC using a 1-bit/multi-bit modulator and digital decimation filter, offering ultra-high resolution (up to 24-32 bits) and extreme linearity for slow seismic/strain signals
✓ Correct
B
A high-speed 10 GHz radar digitizer
C
A video capture card for televisions
D
A low-resolution 4-bit battery gauge
💡 Step-by-Step Explanation & Concept Rationale
Delta-Sigma converters trade bandwidth for extraordinary resolution and dynamic range, ideal for microvolt seismic geophones and load cells.
Q. 9 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Flash ADC' architecture, and what is its primary characteristic?
A
An ultra-high-speed ADC using an array of 2^N - 1 parallel analog comparators that converts voltages in a single clock cycle, but consumes high power and silicon area
✓ Correct
B
An ADC that stores data on flash memory cards
C
An ADC with a built-in photographic flash lamp
D
A very slow, low-power ADC for temperature
💡 Step-by-Step Explanation & Concept Rationale
Flash ADCs achieve gigasample-per-second (GSPS) conversion speeds, essential for direct RF radar intermediate frequency (IF) digitization.
Q. 10 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'ENOB' (Effective Number of Bits) in ADC performance specifications?
A
A dynamic specification that measures the true usable resolution of an ADC in the presence of noise, distortion, and quantization errors: ENOB = (SINAD - 1.76) / 6.02
✓ Correct
B
The total number of physical solder pins on the chip
C
The binary integer bit-width of the data bus
D
The number of memory bytes on a microcontroller
💡 Step-by-Step Explanation & Concept Rationale
A cheap 16-bit ADC with poor noise performance may deliver an ENOB of only 12 bits, losing the bottom 4 bits of precision to thermal noise.
Q. 11 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Differential Non-Linearity' (DNL) and 'Integral Non-Linearity' (INL) in ADCs and DACs?
A
DNL is the deviation of an individual step width from the ideal 1 LSB (DNL < -1 indicates missing codes); INL is the maximum deviation of the overall transfer curve from an ideal straight line
✓ Correct
B
DNL is for digital; INL is for analog
C
DNL measures power; INL measures temperature
D
There is no difference in linearity errors
💡 Step-by-Step Explanation & Concept Rationale
Low DNL/INL specifications guarantee monotonic response and absolute accuracy across calibration curves in medical and structural sensors.
Q. 12 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is an 'Instrumentation Amplifier' (In-Amp, e.g. INA128, AD620) and why is it used for strain gauges?
A
A precision differential amplifier circuit with three internal op-amps, exceptionally high input impedance, and high Common-Mode Rejection Ratio (CMRR > 100 dB) to amplify microvolt bridge signals
✓ Correct
B
An audio amplifier for driving loud speakers
C
A radio power transmitter amplifier
D
A musical instrument tuner device
💡 Step-by-Step Explanation & Concept Rationale
In-Amps reject massive common-mode 50/60 Hz electrical mains hum while amplifying minute micro-volt differential bridge signals from load cells.
Q. 13 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'CMRR' (Common-Mode Rejection Ratio) in differential sensor amplifiers?
A
The ratio of differential voltage gain to common-mode voltage gain ($CMRR = 20 \log_{10} |A_d / A_{cm}|$), measuring how effectively the amplifier rejects noise common to both input wires
✓ Correct
B
The ratio of battery power to sensor output
C
The clock speed ratio between two processors
D
The wireless transmission efficiency of antennas
💡 Step-by-Step Explanation & Concept Rationale
High CMRR (>100 dB) allows sensors to capture clean microvolt signals through 100-meter cables running alongside high-voltage industrial machinery.
Q. 14 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Operational Amplifier Input Offset Voltage' ($V_{os}$) and how does it affect precision DC sensors?
A
A small DC voltage error inherent between op-amp differential inputs that gets multiplied by circuit gain, creating DC baseline drift and offset errors in temperature and pressure readings
✓ Correct
B
The maximum battery voltage allowed on op-amp pins
C
A power switch voltage threshold
D
A visual light emission from the chip
💡 Step-by-Step Explanation & Concept Rationale
Zero-drift / Auto-zero / Chopper-stabilized op-amps continuously cancel internal $V_{os}$ to sub-microvolt levels for ultra-stable DC sensor amplifiers.
Q. 15 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is 'PWM' (Pulse Width Modulation) and what is the relationship between Frequency and Duty Cycle?
A
Frequency is the number of complete pulse cycles per second (Hz); Duty Cycle is the percentage of each period that the signal remains High (0% to 100%), controlling average delivered power
✓ Correct
B
Frequency is volume; Duty cycle is brightness
C
Frequency is power; Duty cycle is voltage
D
They are two names for the same parameter
💡 Step-by-Step Explanation & Concept Rationale
Varying PWM duty cycle controls drone brushless motor ESC speeds, proportional solenoid valve openings, and LED strobe intensities.
Q. 16 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is 'Input Capture' mode in microcontroller hardware timers?
A
Capturing the exact timer counter value into a shadow register on a specified GPIO pin signal edge (rising/falling), used for microsecond measurement of pulse width and frequency
✓ Correct
B
Capturing video frames from a camera
C
Capturing mouse clicks on a screen
D
Saving user text input into a database
💡 Step-by-Step Explanation & Concept Rationale
Input Capture measures ultrasonic sensor echo return times and optical encoder rotation RPM with cycle-accurate hardware timing.
Q. 17 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is 'Output Compare' mode in microcontroller timers?
A
Triggering a hardware pin toggle, interrupt, or PWM edge when the timer counter matches a pre-programmed comparator register value
✓ Correct
B
Comparing two image files on a hard drive
C
Comparing text strings in software
D
Measuring battery discharge curves
💡 Step-by-Step Explanation & Concept Rationale
Output Compare generates precision step pulses for robotic stepper motors and brushless motor phase commutation signals with zero CPU jitter.
Q. 18 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is an 'H-Bridge' motor driver circuit (e.g. L298N, DRV8833)?
A
An electronic circuit comprising 4 switching transistors (MOSFETs) arranged in an H-configuration, allowing DC voltage to be applied across a motor in either polarity for bidirectional rotation and braking
✓ Correct
B
A physical suspension bridge for cars
C
A radio bridge connecting two networks
D
An audio mixer circuit
💡 Step-by-Step Explanation & Concept Rationale
H-Bridges allow microcontrollers to drive forward, reverse, and active electronic braking on DC rescue winches, camera pan-tilt gimbals, and rover wheels.
Q. 19 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is 'BLDC' (Brushless DC Motor) electronic commutation?
A
Using an Electronic Speed Controller (ESC) to sequentially energize the 3 stator electromagnetic phases (U, V, W) in synchronization with rotor permanent magnet positions
✓ Correct
B
Using physical carbon brushes that spark on copper commutators
C
Running a motor on AC wall outlet electricity directly
D
Turning a motor by hand with a crank
💡 Step-by-Step Explanation & Concept Rationale
BLDC motors eliminate mechanical brushes, delivering extraordinary power-to-weight ratio, 90%+ efficiency, and zero maintenance for drone propulsion.
Q. 20 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Field-Oriented Control' (FOC / Vector Control) in precision BLDC motor and gimbal control?
A
A mathematical control method that transforms 3-phase stator currents into a 2-coordinate orthogonal rotating frame (d-q frame) to decouple magnetic flux and torque control for ultra-smooth, silent operation
✓ Correct
B
Steering a drone using GPS coordinates
C
Controlling camera zoom with a joystick
D
A military tactical field formation
💡 Step-by-Step Explanation & Concept Rationale
FOC yields whisper-quiet, cogging-free motor rotation and maximum torque efficiency for optical camera stabilization gimbals and rescue robotic joints.
Q. 21 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is the primary difference between an LDO (Low-Dropout Linear Regulator) and a Buck Switching Regulator (SMPS)?
A
LDO regulates voltage by burning excess energy as heat ($Efficiency pprox V_{out} / V_{in}$); Buck switching regulator uses inductor-capacitor energy storage to step down voltage with 90%+ efficiency
✓ Correct
B
LDO is for AC; Buck is for DC
C
LDO requires large copper coils; Buck requires none
D
Buck regulators generate zero electrical noise
💡 Step-by-Step Explanation & Concept Rationale
Buck regulators maximize battery run-time in high-power systems (stepping 12V down to 3.3V); LDOs are reserved for ultra-clean, noise-sensitive analog ADC/sensor power rails.
Q. 22 Smart Sensing & IoT
Difficulty: Medium (1 Mark)
What is a 'Boost Converter' (Step-Up Switching Regulator)?
A
A DC-to-DC switching power converter that steps up an input voltage to a higher output voltage (e.g. stepping 3.7V Li-ion battery up to 5V or 12V for sensors)
✓ Correct
B
A circuit that boosts radio transmission speed
C
An audio volume booster for speakers
D
A turbocharger on a vehicle engine
💡 Step-by-Step Explanation & Concept Rationale
Boost converters allow a single 3.7V lithium cell to power 12V industrial RS-485 sensors and 24V 4-20mA current loops.
Q. 23 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is 'Quiescent Current' ($I_q$) in power management ICs and low-power IoT designs?
A
The baseline electrical current consumed by the voltage regulator or IC when it is powered on and operating under zero-load (no active output load)
✓ Correct
B
The maximum peak surge current during a short circuit
C
The current drawn when transmitting at full power
D
The charging current of a battery
💡 Step-by-Step Explanation & Concept Rationale
Ultra-low quiescent current LDOs ($I_q < 1 \mu A$, e.g. TPS7A02) prevent voltage regulators from draining the battery during months of deep sleep.
Q. 24 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is the nominal cell voltage and chemical characteristic of a 'LiFePO4' (Lithium Iron Phosphate) battery?
A
Nominal 3.2V per cell; exceptionally safe (no thermal runaway explosion risk), flat discharge voltage curve, and long lifespan (2,000 to 5,000 cycles)
✓ Correct
B
Nominal 1.2V per cell with memory effect
C
Nominal 3.7V per cell with severe fire explosion danger
D
Nominal 12V per cell; heavy lead acid
💡 Step-by-Step Explanation & Concept Rationale
LiFePO4 batteries are the gold standard for outdoor solar-powered disaster telemetry stations due to exceptional thermal stability (-20°C to +60°C) and multi-thousand cycle endurance.
Q. 25 Smart Sensing & IoT
Difficulty: Hard (1 Mark)
What is a 'Li-SOCl2' (Lithium Thionyl Chloride) battery, and why is it preferred for 10-year non-rechargeable IoT nodes?
A
A primary non-rechargeable battery with 3.6V cell voltage, the highest energy density of any commercial chemistry, ultra-low self-discharge (<1% per year), and -55°C to +85°C operation
✓ Correct
B
A rechargeable battery for smartphones
C
A heavy truck starting battery
D
A solar panel storage battery
💡 Step-by-Step Explanation & Concept Rationale
Li-SOCl2 bobbin cells (e.g. Tadiran, Saft) power autonomous pipeline and flood gauges continuously for 10-15 years without human intervention.
Study Stream Progress: Showing 25 of 82 Questions (30%)
Jump to:

Ready to Test Your Retention & Speed?

Now that you have reviewed the study questions and rationales, test yourself in our interactive 1-by-1 practice engine or take the full official timed mock exam.