Computer Science, asked by Ahmedsharifkhan, 7 months ago

1. In the following code,

1 print(98.6)

What is "98.6"?

1. A conditional statement
2. A constant
3. An iteration / loop statement
4. A variable​

Answers

Answered by yeshz73
5

Answer:

2. A constant

Explanation:

it hasn't been stored and it is arbitrary constant

Answered by adventureisland
2

Option (B)

98.6is Constant.

Constant value:

  • A constant is a sort of variable that has a fixed value.
  • Constants can be thought of as containers for information that cannot be modified afterward.
  • Constants might be thought of as a bag in which to store some books that cannot be replaced once placed inside. Constants are commonly declared and assigned in a module in Python.
  • The module is a new file that contains variables, functions, and other information that is imported into the main file.
  • Constants are written in all capital letters within the module, with underscores between the terms.

Similar questions