InterviewSolution
Saved Bookmarks
| 1. |
(0) c. Give the output of the following programs:CLSCLSPRINT INT(46.34)A$= "String Functions"PRINT INT(46.97)PRINT RIGHT$(A$,4)PRINT INT(-46.33)PRINT MID$(A$,9,3)ENDEND(iii)(iv) CLSPRINT ASC("C")PRINT CHR$(122)PRINT CHR$(ASC("C")+32)PRINT CHR$(ASC("a")-32)ENDC CLSA$ = "32"B$ = "32.36"C$ = "32A1"D$ = "3205"E$ = "D22"PRINT VAL(A$)PRINT VAL(B$)PRINT VAL(C$)PRINT VAL(D$)PRINT VAL(E$)END |
| Answer» KYA YE AK QUESTION he?????? | |