Computer Science, asked by choudharypratibha200, 4 months ago

Q8) What is the output of the following code?
fred=100
print(fred)
a) Fred
b) 100
c) fred=100
d) None of the above​

Answers

Answered by rishirajs182
3

Answer:

b is correct

Explanation:

mark me as brainliest

Answered by adventureisland
0

Option b) is Correct.

The following program returns a value of 100.

About "Print" :

  • Print is a function in various programming languages that delivers text, variables, or another object to the screen.
  • If you're familiar with the Scratch programming language, print is the equivalent of say.
  • "print" stands for "print formatted" and is the name of one of the basic C output functions. Scanf format strings give formatted input, whereas print format strings provide formatted output.
Similar questions