answersLogoWhite

0

Is a program with no input an incorrect program?

Updated: 8/16/2019
User Avatar

Wiki User

14y ago

Best Answer

No, as long as it calculates something, displays something, or otherwise has an output that benefits the user, it is a program. It could be a program that makes a random number, or a program that tells the user a joke from a database.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is a program with no input an incorrect program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which acronym recognizes the fact that computer errors can usually be traced to incorrect input data or unreliable program?

Garbage In, Garbage Out. GIGO.


What is legal input?

In a computer program, a legal input is something that can be put into a program and it will work. An illegal input may crash the program.


Which is not a way to input data into a program?

without understanding the program giving a input


How do you create a program that can input 100 names using flowchart?

create a program that can input 100 names


How do you use the word input in a sentence?

"You only use it in programming".Thank you for your incorrect input!


What is robust on java?

A robust program is a program that will accept junk input and not crash. Example: a program that accepts "pancakes" for a date input and pops up a error box or just uses a date input so that this does not happen is a robust program.


What is input -output bound program?

input output bound program is a program (or process in precise way), which spends most of time allocated to it for execution, on input/output devices and need very small CPU time for it.


What is meant by input stream?

An input stream is a character sequence device or buffer from which input can be gathered. The standard input stream is usually a keyboard, data file or the output stream from another program. The user of the program can normally decide where standard input may be redirected from when launching the program, typically defaulting to the keyboard.


When you input data in a loop within a program the input statement that proceeds the loop is what?

is called a priming input


What is input in TNSDL language?

In TNSDL (Temporal Numerical Stream Description Language), the "input" statement is used to specify the input streams of data that the program will operate on. These input streams can be temporal or non-temporal data sources such as sensors, files, or user input. The input statement helps define the data sources that will be processed by the TNSDL program.


What do you mean by ''GIGO'' in computer education?

GI/GO is a computer programming term for Garbage In/Garbage Out. It means that if you have incorrect data input, then your output will be incorrect


How do you write a function in Turbo C that can run the program without rerunning the whole program?

The execution path of a program can only be affected by the program input. That is, if you change the input, you can alter the way the program behaves (just as changing the arguments to a function can alter the behaviour of the function). Typically you will alter the input via the command line, but you can also alter the input at any time during program execution. Redirecting input via the command line can be achieved by extracting the input from a file (via std::cin) or by implementing command line switches in your main function, or through a combination of the two.