Text that you wish to appear on the screen while your program runs must appear inside of ---------------------
Answers
Answer:
Explanation:
command or screen
Answer: Text that you wish to appear on the screen while your program runs must appear inside of double quotes .
Concept : Fundamental of Programming
Given : Text that you wish to appear on the screen while your program runs must appear inside of ---------------------
To find : Text that you wish to appear on the screen while your program runs must appear inside of ---------------------
Explanation :
In any programming language, like C, C++, Java, Python , Javascript, the text which one wants to appear on the screen, while the program runs must appear inside double quotes. The text which is to be displayed on screen is written inside double quotes. Different programming language have different syntax for printing a sentence, so inside a print() function, the text is written in double quotes.
For C, printf("Hello World !");
For C++, cout << "Hello World!";
For Java, System.out.println("Hello World !");
For Python , print('Hello World !')
These are the different syntax for different programming language to print the text on screen.
#SPJ3