Question
Which of the following programming language can be used
to process text data for the requirements in various textual data analysis?Solution
Why this is correct:
Python is widely used for text processing and textual data analysis because of its built-in string handling, regular expressions, and powerful libraries (e.g., re , NLTK , spaCy , pandas ) that make tokenization, parsing, and NLP tasks easy and efficient. Why the others are wrong / less suitable: 1. ALGOL is an academic/historical language, not commonly used for modern text analytics. 2. COBOL is business-data oriented and not ideal for text analytics tasks. 3. C can process text but is low-level and lacks the convenient high-level libraries and rapid development ease that Python provides.