Computer Science, asked by dinaantony73, 1 day ago

What output would we get if we type the instructions given in the table in shell prompt?
Print("Hello")
print("Hello"+"How are you")
print(20+21)
print("20"+"21")​

Answers

Answered by EnlighteningWorld
21

 \bf{\green{\mathfrak{\dag{\underline{\underline{Question:-}}}}}}

What output would we get if we type the instructions given in the table in shell prompt?

Print("Hello")

print("Hello"+"How are you")

print(20+21)

print("20"+"21")

 \bf{\orange{\mathfrak{\dag{\underline{\underline{Output:-}}}}}}

  1. Print("Hello") = Hello
  2. print("Hello"+"How are you") = HelloHow are you
  3. print(20+21) = 41
  4. print("20"+"21") = 2021
Similar questions