uiz Space

May 2025 term · Tools in Data Science · BSSE2002

Tools in Data Science End Term: 31 August 2025, Set QIA3 (May 2025 term)

The IIT Madras BS Tools in Data Science (Tools in Data Science (TDS)) End Term paper sat on 31 Aug 2025, in the May 2025 term, set QIA3: 34 questions for 40 marks in 180 minutes. Every question is below with its answer. Take it as a timed mock test to be marked, or read it through first.

Questions
34
Marks
40
Duration
180 min
MCQ
33
MSQ
1

Updated

Official paper: IIT M IMPROVEMENT AN EXAM QIA3 31 Aug 2025 · No negative marking.

Question 1

+1 markOne correct option

In a data science team using Git with feature branches, what is the recommended approach for integrating experimental analysis without disrupting the main workflow?

  1. A

    Commit directly to main branch with descriptive messages

  2. B

    Create feature branch, conduct experiments, squash commits, and merge via pull request after peer review

  3. C

    Use git stash for all experimental work

  4. D

    Create separate repository for each experiment

Show answer

Correct answer

  • B

    Create feature branch, conduct experiments, squash commits, and merge via pull request after peer review

Question 2

+2 marksOne correct option

A retail analyst wants to find the total sales per store from a Pandas DataFrame df with columns store_id and sales_amount. Which is the most efficient Pandas command?

  1. A

    df['sales_amount'].sum()

  2. B

    df.groupby('store_id')['sales_amount'].sum()

  3. C

    df['sales_amount'].groupby('store_id')

  4. D

    df.pivot_table(index='sales_amount', values='store_id')

Show answer

Correct answer

  • B

    df.groupby('store_id')['sales_amount'].sum()

Question 3

+1 markOne correct option

A team is troubleshooting why a page loads slowly due to an API call taking a long time. Which Chrome DevTools tab should they use to find the slow request?

  1. A

    Sources

  2. B

    Network

  3. C

    Console

  4. D

    Application

Show answer

Correct answer

  • B

    Network

Question 4

+1 markOne correct option

When standardizing inconsistent date formats in a dataset using OpenRefine, which
transformation approach is most effective for handling multiple date patterns?

  1. A

    Simple text replacement operations

  2. B

    GREL expressions with multiple conditional date parsing functions

  3. C

    Manual editing row by row

  4. D

    Export to Excel and use built-in date formatting

Show answer

Correct answer

  • B

    GREL expressions with multiple conditional date parsing functions

Question 5

+2 marksOne correct option

For a MySQL database storing e-commerce analytics with complex joins and time-based queries, which indexing approach optimizes query performance?

  1. A

    Single primary key index per table

  2. B

    Composite indexes on frequently joined columns, covering indexes for common queries, and partitioning by date ranges

  3. C

    Unique indexes on all columns

  4. D

    No indexes to avoid write overhead

Show answer

Correct answer

  • B

    Composite indexes on frequently joined columns, covering indexes for common queries, and partitioning by date ranges

Question 6

+1 markOne correct option

When processing a streaming data source that generates CSV files every minute, which approach handles the data most efficiently without memory overflow?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 7

+1 markOne correct option

When working with uv in a team environment, which approach ensures reproducible dependency management across different development machines?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 8

+1 markOne correct option

For analyzing urban traffic patterns using GPS coordinate data, which combination of Python libraries provides the most comprehensive geospatial analysis capabilities?

  1. A

    Pandas + Matplotlib + NumPy

  2. B

    GeoPandas + Shapely + Folium + Contextily

  3. C

    Plotly + Seaborn + SciPy

  4. D

    Bokeh + PyProj

Show answer

Correct answer

  • B

    GeoPandas + Shapely + Folium + Contextily

Question 9

+2 marksOne correct option

For a web scraper that encounters 429 (Too Many Requests) status codes, which response strategy demonstrates ethical behavior?

  1. A

    Switch to different IP addresses to bypass the limit

  2. B

    Implement exponential backoff starting with the Retry-After header value, reduce request frequency permanently

  3. C

    Continue scraping but filter out 429 responses

  4. D

    Use browser automation to appear more human-like

Show answer

Correct answer

  • B

    Implement exponential backoff starting with the Retry-After header value, reduce request frequency permanently

Question 10

+1 markOne correct option

A data scientist accidentally committed sensitive credentials to a Git repository. Which sequence of commands safely removes the credentials from history?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 11

+1 markOne correct option

For analyzing a massive time-series dataset that exceeds available RAM, which pandas strategy optimizes memory usage during aggregation operations?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 12

+1 markOne correct option

For a machine learning API serving models with inconsistent response times, which monitoring strategy provides the most actionable insights?

  1. A

    Track only HTTP response status codes

  2. B

    Model inference time + request queue depth + resource utilization + error rate tracking

  3. C

    Monitor only successful prediction accuracy

  4. D

    Focus exclusively on network bandwidth usage

Show answer

Correct answer

  • B

    Model inference time + request queue depth + resource utilization + error rate tracking

Question 13

+1 markOne correct option

Scenario 1: Healthcare Data Analytics Platform
A hospital system is developing a HIPAA-compliant analytics platform to process electronic health records, predict patient outcomes, and support clinical decision-making while ensuring data privacy and regulatory compliance.
Based on the above data, answer the given subquestions.

When designing prompts for a clinical AI assistant, which approach best balances medical accuracy with regulatory compliance?

  1. A

    Provide definitive medical diagnoses to assist doctors

  2. B

    Focus on pattern recognition while explicitly requiring human clinical judgment and including appropriate medical disclaimers

  3. C

    Restrict responses to general medical information only

  4. D

    Avoid medical topics entirely to prevent liability

Show answer

Correct answer

  • B

    Focus on pattern recognition while explicitly requiring human clinical judgment and including appropriate medical disclaimers

Question 14

+2 marksOne or more correct options

Scenario 1: Healthcare Data Analytics Platform
A hospital system is developing a HIPAA-compliant analytics platform to process electronic health records, predict patient outcomes, and support clinical decision-making while ensuring data privacy and regulatory compliance.
Based on the above data, answer the given subquestions.

Which factors most significantly impact computational costs when processing large-scale clinical datasets with LLMs?(Select all that apply)

Select all that apply.

  1. A

    Token density of clinical notes and medical terminology

  2. B

    Complexity of medical reasoning required for clinical insights

  3. C

    HIPAA compliance overhead and security measures

  4. D

    Context window usage for patient history analysis

  5. E

    Geographic location of healthcare facility

Show answer

Correct answers

  • A

    Token density of clinical notes and medical terminology

  • B

    Complexity of medical reasoning required for clinical insights

  • D

    Context window usage for patient history analysis

Question 15

+1 markOne correct option

Scenario 1: Healthcare Data Analytics Platform
A hospital system is developing a HIPAA-compliant analytics platform to process electronic health records, predict patient outcomes, and support clinical decision-making while ensuring data privacy and regulatory compliance.
Based on the above data, answer the given subquestions.

Which prompt engineering approach generates the most clinically valuable insights for patient care optimization?

  1. A

    "Analyze patient symptoms"

  2. B

    "Review medical records"

  3. C

    "Based on this patient's lab results (glucose: 180 mg/dL, HbA1c: 8.2%), vital signs, and medication history, identify potential adjustment strategies for diabetes management while considering contraindications and monitoring requirements."

  4. D

    "Suggest treatments for diabetes"

Show answer

Correct answer

  • C

    "Based on this patient's lab results (glucose: 180 mg/dL, HbA1c: 8.2%), vital signs, and medication history, identify potential adjustment strategies for diabetes management while considering contraindications and monitoring requirements."

Question 16

+1 markOne correct option

Scenario 2: Smart Manufacturing Quality Control System
An automotive manufacturer implements an IoT-based quality control system that monitors production line metrics, detects defects in real-time, and optimizes manufacturing processes across multiple assembly plants.
System Architecture:
● IoT sensors at production stations (coordinates provided for each plant)
● Quality control hub: (42.3601^(o) N, 71.0589^(o) W)
● Real-time data streams: temperature, pressure, vibration, visual inspection
● ML models for defect prediction and process optimization
Based on the above data, answer the given subquestions.

When a critical defect pattern is identified requiring immediate production line adjustment, which Git workflow ensures rapid deployment of updated quality parameters while maintaining manufacturing compliance?

  1. A

    Push changes directly to production branch to minimize downtime

  2. B

    Create quality-hotfix branch, implement changes with detailed validation, require quality engineer approval, and deploy with rollback capability

  3. C

    Apply temporary manual overrides and update version control later

  4. D

    Use email to communicate changes without version control

Show answer

Correct answer

  • B

    Create quality-hotfix branch, implement changes with detailed validation, require quality engineer approval, and deploy with rollback capability

Question 17

+2 marksOne correct option

Scenario 2: Smart Manufacturing Quality Control System
An automotive manufacturer implements an IoT-based quality control system that monitors production line metrics, detects defects in real-time, and optimizes manufacturing processes across multiple assembly plants.
System Architecture:
● IoT sensors at production stations (coordinates provided for each plant)
● Quality control hub: (42.3601^(o) N, 71.0589^(o) W)
● Real-time data streams: temperature, pressure, vibration, visual inspection
● ML models for defect prediction and process optimization
Based on the above data, answer the given subquestions.

Quality engineers need to analyze sensor data to identify equipment performance degradation patterns. Which command-line approach efficiently processes large sensor log files to extract anomalous readings?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 18

+2 marksOne correct option

Scenario 2: Smart Manufacturing Quality Control System
An automotive manufacturer implements an IoT-based quality control system that monitors production line metrics, detects defects in real-time, and optimizes manufacturing processes across multiple assembly plants.
System Architecture:
● IoT sensors at production stations (coordinates provided for each plant)
● Quality control hub: (42.3601^(o) N, 71.0589^(o) W)
● Real-time data streams: temperature, pressure, vibration, visual inspection
● ML models for defect prediction and process optimization
Based on the above data, answer the given subquestions.

For deploying the quality control system across geographically distributed manufacturing plants with strict latency and reliability requirements, which architecture approach ensures optimal performance?

  1. A

    Centralized cloud-only deployment

  2. B

    Edge computing with local ML inference, container orchestration, and federated data synchronization

  3. C

    Single server per plant without redundancy

  4. D

    Manual quality control without automated systems

Show answer

Correct answer

  • B

    Edge computing with local ML inference, container orchestration, and federated data synchronization

Question 19

+1 markOne correct option

Scenario 2: Smart Manufacturing Quality Control System
An automotive manufacturer implements an IoT-based quality control system that monitors production line metrics, detects defects in real-time, and optimizes manufacturing processes across multiple assembly plants.
System Architecture:
● IoT sensors at production stations (coordinates provided for each plant)
● Quality control hub: (42.3601^(o) N, 71.0589^(o) W)
● Real-time data streams: temperature, pressure, vibration, visual inspection
● ML models for defect prediction and process optimization
Based on the above data, answer the given subquestions.

When detecting defects in real-time during high-speed production, which algorithmic approach best balances accuracy with processing speed requirements?

  1. A

    Data based statistical analysis

  2. B

    Optimized computer vision pipeline with cascaded classifiers and early rejection mechanisms

  3. C

    Manual visual inspection only

  4. D

    Random sampling for quality checks

Show answer

Correct answer

  • B

    Optimized computer vision pipeline with cascaded classifiers and early rejection mechanisms

Question 20

+1 markOne correct option

Scenario 2: Smart Manufacturing Quality Control System
An automotive manufacturer implements an IoT-based quality control system that monitors production line metrics, detects defects in real-time, and optimizes manufacturing processes across multiple assembly plants.
System Architecture:
● IoT sensors at production stations (coordinates provided for each plant)
● Quality control hub: (42.3601^(o) N, 71.0589^(o) W)
● Real-time data streams: temperature, pressure, vibration, visual inspection
● ML models for defect prediction and process optimization
Based on the above data, answer the given subquestions.

The system uses GPS coordinates to optimize supply chain logistics between plants. What is the computational advantage of using the Haversine formula in manufacturing logistics?

  1. A

    Accurate distance calculations for optimizing transportation routes and delivery scheduling

  2. B

    Calculating exact production times

  3. C

    Determining equipment maintenance schedules

  4. D

    Measuring network latency between plants

Show answer

Correct answer

  • A

    Accurate distance calculations for optimizing transportation routes and delivery scheduling

Question 21

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

Which log entry correctly represents a successful console objective action during the tournament window?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • A

Question 22

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

For analyzing "competitive gaming actions during tournament hours with successful responses", which log fields are essential?

  1. A

    PlayerIP, PlayerID, Platform, MatchID

  2. B

    Timestamp, ACTION, GameMode, StatusCode, ActionType

  3. C

    PlayerID, ResponseTime, UserAgent, Level

  4. D

    PlayerIP, Timestamp, Platform, ResponseTime

Show answer

Correct answer

  • B

    Timestamp, ACTION, GameMode, StatusCode, ActionType

Question 23

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 24

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

To filter gaming actions between 14:00 and 20:59 tournament hours, which condition correctly validates the time range?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 25

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • A

Question 26

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

Which approach most accurately identifies console gaming platforms from the Platform field?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 27

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

For identifying successful gaming events, which status code condition is most appropriate?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • C

Question 28

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

To efficiently count different action types (KILL, DEATH, OBJECTIVE) from filtered tournament data, which approach is optimal?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 29

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

If tournament action counts appear inconsistently high, which systematic debugging approach identifies the issue?

  1. A

    Assume tournament data corruption and exclude results

  2. B

    Validate each filter systematically: time range → game mode → action type → status codes → platform detection

  3. C

    Reduce dataset randomly and extrapolate

  4. D

    Focus only on successful status codes

Show answer

Correct answer

  • B

    Validate each filter systematically: time range → game mode → action type → status codes → platform detection

Question 30

+1 markOne correct option

Scenario 3: Gaming Platform User Behavior Analysis
You're analyzing server logs from a multiplayer gaming platform during a major tournament event. The logs contain player actions, performance metrics, and system resource utilization data.

Analysis Requirements:
●Filter competitive gaming actions (kills, deaths, objectives) during tournament hours (14:00- 20:59)
●Differentiate between PC and console gaming patterns
●Track successful game events (status codes 200-299)
●Analyze player performance across different game modes
Based on the above data, answer the given subquestions.

For processing massive gaming log files (100GB+) with memory constraints, which Python approach provides optimal performance?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • B

Question 31

+1 markOne correct option

Scenario 4: Supply Chain Optimization RAG System.
A global logistics company implements an advanced RAG system that integrates supplier data, transportation networks, demand forecasting, and regulatory information to optimize supply chain decisions across multiple industries and geographical regions.
Multi-Modal Supply Chain RAG Architecture:
●Supplier Intelligence: Vendor profiles, performance metrics, capacity data, compliance records ●Transportation Networks: Route optimization, carrier performance, fuel costs, delivery tracking ●Market Analysis: Demand forecasting, price volatility, seasonal patterns, economic indicators ●Regulatory Compliance: Trade regulations, customs requirements, sustainability standards ●Risk Assessment: Supply disruptions, geopolitical factors, weather impacts, financial stability Based on the above data, answer the given subquestions.

What is the primary advantage of multi-modal RAG systems for supply chain management compared to traditional ERP systems?

  1. A

    Lower implementation costs and simpler maintenance

  2. B

    Real-time integration of supplier performance, market dynamics, and regulatory changes for adaptive supply chain optimization

  3. C

    Exclusive focus on historical transaction data

  4. D

    Reduced data storage requirements

Show answer

Correct answer

  • B

    Real-time integration of supplier performance, market dynamics, and regulatory changes for adaptive supply chain optimization

Question 32

+1 markOne correct option

Scenario 4: Supply Chain Optimization RAG System.
A global logistics company implements an advanced RAG system that integrates supplier data, transportation networks, demand forecasting, and regulatory information to optimize supply chain decisions across multiple industries and geographical regions.
Multi-Modal Supply Chain RAG Architecture:
●Supplier Intelligence: Vendor profiles, performance metrics, capacity data, compliance records ●Transportation Networks: Route optimization, carrier performance, fuel costs, delivery tracking ●Market Analysis: Demand forecasting, price volatility, seasonal patterns, economic indicators ●Regulatory Compliance: Trade regulations, customs requirements, sustainability standards ●Risk Assessment: Supply disruptions, geopolitical factors, weather impacts, financial stability Based on the above data, answer the given subquestions.

Which system prompt design best supports strategic supply chain decision-making across multiple stakeholders?

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • C

Question 33

+1 markOne correct option

Scenario 4: Supply Chain Optimization RAG System.
A global logistics company implements an advanced RAG system that integrates supplier data, transportation networks, demand forecasting, and regulatory information to optimize supply chain decisions across multiple industries and geographical regions.
Multi-Modal Supply Chain RAG Architecture:
●Supplier Intelligence: Vendor profiles, performance metrics, capacity data, compliance records ●Transportation Networks: Route optimization, carrier performance, fuel costs, delivery tracking ●Market Analysis: Demand forecasting, price volatility, seasonal patterns, economic indicators ●Regulatory Compliance: Trade regulations, customs requirements, sustainability standards ●Risk Assessment: Supply disruptions, geopolitical factors, weather impacts, financial stability Based on the above data, answer the given subquestions.

A supply chain manager asks: "Given current semiconductor shortages, rising fuel costs, and new sustainability regulations, how should we restructure our electronics component sourcing strategy for the next quarter?" Which response demonstrates optimal supply chain synthesis?

  1. A

    "Semiconductor shortages require finding alternative suppliers and adjusting inventory levels."

  2. B

    "Here are 20 suppliers with current pricing and availability data: [lists suppliers with specifications]"

  3. C

    "Let's analyze this systematically: Current semiconductor lead times average 16-24 weeks (vs. normal 4-6 weeks). Three strategic options emerge: 1) Dual-sourcing with 60% Asian suppliers, 40% nearshore (reduces risk but increases costs 12-18%), 2) Forward buying with 90-day inventory (capital impact: $2.3M, storage costs: $45K/month), 3) Design modifications using available components (6-week timeline, engineering costs). Fuel cost increases affect logistics by 8-15%. New EU sustainability regs require supplier carbon disclosure. Which risk tolerance and capital constraints guide your preference?"

  4. D

    "Supply chain restructuring requires comprehensive analysis of multiple interdependent factors."

Show answer

Correct answer

  • C

    "Let's analyze this systematically: Current semiconductor lead times average 16-24 weeks (vs. normal 4-6 weeks). Three strategic options emerge: 1) Dual-sourcing with 60% Asian suppliers, 40% nearshore (reduces risk but increases costs 12-18%), 2) Forward buying with 90-day inventory (capital impact: $2.3M, storage costs: $45K/month), 3) Design modifications using available components (6-week timeline, engineering costs). Fuel cost increases affect logistics by 8-15%. New EU sustainability regs require supplier carbon disclosure. Which risk tolerance and capital constraints guide your preference?"

Question 34

+1 markOne correct option

Scenario 4: Supply Chain Optimization RAG System.
A global logistics company implements an advanced RAG system that integrates supplier data, transportation networks, demand forecasting, and regulatory information to optimize supply chain decisions across multiple industries and geographical regions.
Multi-Modal Supply Chain RAG Architecture:
●Supplier Intelligence: Vendor profiles, performance metrics, capacity data, compliance records ●Transportation Networks: Route optimization, carrier performance, fuel costs, delivery tracking ●Market Analysis: Demand forecasting, price volatility, seasonal patterns, economic indicators ●Regulatory Compliance: Trade regulations, customs requirements, sustainability standards ●Risk Assessment: Supply disruptions, geopolitical factors, weather impacts, financial stability Based on the above data, answer the given subquestions.

Which processing sequence correctly describes the supply chain RAG system's comprehensive optimization workflow?

  1. A

    Supply Chain Query → Supplier Database Search → Cost Comparison Report

  2. B

    Supply Chain Query → Keyword Matching → Return Cheapest Options

  3. C

    Supply Chain Query → Multi-Modal Analysis (supplier performance + market conditions + regulatory requirements + risk factors) → Scenario Modeling → Optimization Recommendations with Risk-Adjusted Trade-offs

  4. D

    Supply Chain Query → Historical Data Retrieval → Standard Report Generation

Show answer

Correct answer

  • C

    Supply Chain Query → Multi-Modal Analysis (supplier performance + market conditions + regulatory requirements + risk factors) → Scenario Modeling → Optimization Recommendations with Risk-Adjusted Trade-offs