204k views
3 votes
This function whose primary purpose is to display information to the user can only display one value at a time.

Select one:
True
False

User Shpigford
by
7.4k points

1 Answer

3 votes

Answer:

False

Step-by-step explanation:

The functions that was made for display content can get arguments of different type e.g. (Int, string, Array, Objects) and if you want to display n values you only have to check the syntax of your programming language to separate one of each other

# Python example

a = "Hello-"

b = "World"

c = 10

print(a,b,c)

#Out: Hello-World10

I hope it's help you.

User Donaldo
by
8.1k points