Answer:
The "Hello World!" program
Step-by-step explanation:
Options are not given, However, the answer to the question is the "Hello World!" program.
For almost all (if not all) programming language, this program is always the test program.
In Python, it is written as:
print("Hello World!")
In C++, it is:
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0; }