Make sure you know Java and C++ to understand the basic syntax as many technical MCQs are based on these languages. If possible, do the daily problems onLeetcodeandGFG. Have a clear idea if you want to pursue masters or sit for placements if your university doesn't allow you to reject ...
str1 = 'hello javatpoint' #string str1 str2 = 'how are you' #string str2 print (str1[0:2]) #printing first two character using slice operator print (str1[4]) #printing 4th character of the string print (str1*2) #printing the string twice print (str1 + str2) #printing the ...