.If C2 holds "Hello" and C3 holds 1. What will be displayed in C4, if C4 holds =C2+C3 formula.
#Value!
#DIV/0!
Hello1
None of these
Answers
Answered by
0
Answer:
Hello1
Explanation:
What happening here is concatenation of string
c2="Hello"
c3=1
c4=c2+c3
print(c4)
will give you
"Hello1"
This program is in python.Same will be the case for other languages
Similar questions