question #1\nmultiple choice\nwhat will the output be from the following program?\nprint(\hi\)\nprint(3 +…

question #1\nmultiple choice\nwhat will the output be from the following program?\nprint(\hi\)\nprint(3 + 4)\nprint(\bye\)
Answer
Explanation:
Step1: First print statement
The first print("hi") will output the string "hi".
Step2: Second print statement
The second print(3 + 4) will perform the arithmetic operation 3+4 which equals 7 and then output 7.
Step3: Third print statement
The third print("bye") will output the string "bye".
Answer:
"hi" 7 "bye"