InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    Find output generated by line1 and line 2: >>>String Str=”Computer” >>>Str[‐4:] #line1 >>>Str*2 #line2 | 
                            
| Answer» STRING STR=”COMPUTER”str[-4:]OUTPUT : uterstr*2output: computer, computer | |