India Languages, asked by meenakumari975312468, 2 days ago

3. Write 'T' for true and 'F' for false.
a. The print() function allows to display output on the screen while a program executes.
b. Assignment operators are used to perform arithmetic operations between two operands.
c. a variable can hold different types of value
d. comments are most helpful part of any program
e. The relational operators are used primarily in the expression evaluation to make a decision​

Answers

Answered by honey33340
16

Answer:

True, False, True, False, True

Answered by presentmoment
10

a) True.

b) False.

c) True.

d) True.

e) True.

Explanation:

a) Print() function is used to print the statement. example

Print ("hello world")

hello world.

b) Arithmetic operations are used to perform arithmetic operations, not assignment operators.

C. Variable holds a different types of data like integer, float , string.

D. Comments are used to understand the program, so it's a helpful one.

E. Relational operator are used to perform relational operations by using the operators >,<,>=,<=,==.

Similar questions