Computer Science, asked by nohichugh, 8 months ago

Q2. Write the output of the following commands
1. >>> 25 + 30 + 2 _________________________________
2. >>> print (“Happy” + “Birthday”) _________________________________
3. >>>print (“Happy”, “Birthday”) _________________________________
4. >>> 400 * 3 _________________________________
5. >>> 1200 / 5 _________________________________
6. >>> print (“abc” * 5) _________________________________
7. >>> 3500 - 2345 _________________________________

Answers

Answered by varinderkarora
0

Answer:

1) 57

2 Happy Birthday

3) Happy birthday

4 1200

5 240

6 abc5

1255

Answered by nathanfromindia
0

Answer:

25 + 30 + 2 _________________________________

2. >>> print (“Happy” + “Birthday”) _________________________________

3. >>>print (“Happy”, “Birthday”) _________________________________

4. >>> 400 * 3 _________________________________

5. >>> 1200 / 5 _________________________________

6. >>> print (“abc” * 5) _________________________________

Similar questions