What will be the output of the program? *
1 point
Captionless Image
8 2
8 5
8 3
5 3
Answers
Answered by
2
Answer:
for quick answer search on Google
Answered by
0
Answer:
Data input for programmes is necessary. As a result of the software using (processing) this data, data (or information) is output.
Explanation:
What is output of the program?
- Various methods of data entry are available.
- Programmatically recorded. Hard coding refers to this.
- Whenever the programme is in use, by the user.
- From a file or another source while the programme is executing.
- In order to determine a square's perimeter, take a look at this Python (3.x) programme.
- side length is 5 and the perimeter is side length multiplied by 4. (perimeter)
- The information contained in the variable "side length" has been hard coded, or written directly into the programme. It would need going back and changing the programme if we wanted to update this data.
- Since it can be challenging and time-consuming to completely rebuild a computer programme in order to modify a single value, it is generally desirable to avoid hard coding as much as possible.
- The following Python (3.x) programme is an alternative:
side length equals input ("Type in the side length: ")
side length equals to int(side length)
perimeter = side length * 4 printed (perimeter)
- This time, the user enters information while the application is running for the variable "side length." When a user must provide data before a programme can continue, the computer is informed using the term "input".
To Learn more About output Refer To:
https://brainly.in/question/512948
https://brainly.in/question/642691
#SPJ2
Similar questions