Computer Science, asked by dsbshah, 6 months ago

what is the output of the following code p q r = 10 20 30 print(p q r)​

Answers

Answered by 11629ahana
4

Answer:

10  20  30

Explanation:

pls mark as brainliest

may you have a great day

Answered by priyadarshinibhowal2
1

10 20 30

  • Data input is required for programmes. The programme uses (processes) this data, and as a result, data (or information) is output. Programs are created to address issues. A software requires data input and data output to solve a problem.
  • Different methods can be used to enter data. They might be incorporated right into the programme. We refer to this as hard coding. When the software is running, the user may also write them. When the programme is running, they can also be written from a file or another source. Programs frequently need to output the data they have generated after processing data. The 'print' statement in Python is used to output data.

Here, according to the given information, we are given that,

p q r = 10 20 30

This means that the value of p, q and r is 10, 20 and 30 respectively.

Then, when the statement print(p q r)​ is incorporated, the output is given as,

10 20 30

Hence, the output is given as,

10 20 30

Learn more here

https://brainly.in/question/8351855

#SPJ3

Similar questions