Correct Answer: A
C++ is an example of a compiled language. A compiled language is a programming language that requires a compiler to translate the source code into executable code before running the program. A compiler is a program that converts the entire source code into machine code or intermediate code that can be executed by the processor or another program. A compiled language usually offers faster performance and lower memory usage than an interpreted language, but it also requires more time and effort to compile and debug the code.
SQL is not a programming language, but a query language that is used to interact with databases. SQL statements are usually executed by a database management system (DBMS) that interprets and processes them.
Python is an example of an interpreted language. An interpreted language is a programming language that does not require compilation before running the program. An interpreter is a program that reads and executes the source code line by line at runtime. An interpreted language usually offers more flexibility and portability than a compiled language, but it also requires more memory and CPU resources to run the program. XML is not a programming language either, but a markup language that is used to define and structure data in a human-readable and machine-readable format. XML documents are usually parsed by another program that uses them for data exchange or presentation. References: CompTIA IT Fundamentals (ITF+) Study Guide:
Exam FC0-U61, Second Edition, Chapter 4: Software Development Concepts, pages 134-135