Rewrite the following statements after correcting them.
1)>>>10=c
2)>>>Print('India')
Answers
Answered by
8
Question:-
- Rewrite the following statements after correcting them.
Solution:-
Question 1,
Given code,
10=c
After correction,the statement will be,
c=10
Question 2,
Given code,
Print('India')
After correction, it will be,
print('India')
Answered by
7
Question:
Rewrite the following statements after correcting them.
1)>>>10=c
2)>>>Print('India')
Corrected answer:-
1) >>>c=10
2) >>>print("India")
Similar questions