Learn from Leaders, Learn from ABC. Watch our latest technical videos in your language: For Hindi:- bit.ly/2TRuGVP For Kannada:- bit.ly/31NH63M For Telugu:- bit.ly/2MuYRRP For Tamil:- bit.ly/2Num5Hz
@rajafahadmehdi13943 жыл бұрын
Editing, Power to deliver lecture and Style is Cool and superb.
@nandishsg98055 жыл бұрын
Even non thechincal people can also understand the technical concepts that is called ARADHYA Tutorial
@venkateshvenkatesh-xg5cq5 жыл бұрын
I am big fan of you sir.You are way of teaching is excellent even a non cse students can understand concepts very well.please make complete videos on c and c++ programming languages
@ABCforTechnologyTraining5 жыл бұрын
Thanks for your feedback, Venkatesh! You can also access all the Java Tutorial Videos in the playlist here, kzbin.info/www/bejne/bqqbXnWmaatpeLc Subscribe to our channel and press the BELL icon for not missing another update.?
@Sacha61005 жыл бұрын
slow claps for the production value..
@jackiefighter5 жыл бұрын
Why can't we just use *x=x.toUppercase()* rather than converting each and every alphabet using ASCII code... Please explain it Sir..
@saiaravind77655 жыл бұрын
Sir please explain this logic for Dynamic concept of input
@SAURABHSINGH-od7vp5 жыл бұрын
Sir this program will also work on string with space because ASCII value of space is 32.and (char)(32-32)=(char)(0) AND IT WILL GIVE SPACE IN OUR x[ ].so we can use it..
@feelthemusicg25045 жыл бұрын
Sir please upload different c programs
@deepikaghanta40734 жыл бұрын
sir i want to change some are into uppercase and some are should be in lowercase only how can i do sir can you please explain sir for example automation i want output like "AuToMaTiOn"
@anavaratha70205 жыл бұрын
sir, what if the string is like this "araDHya" when we converting whole string to uppercase like "ARADHYA". I will look forward for your reply.
@danielson85225 жыл бұрын
use a loop to go over every character and do if (character
@umarwani48105 жыл бұрын
But sir...how then this statement works Char c = 65;
@SAURABHSINGH-od7vp5 жыл бұрын
Sir i ran this program for string with blank spaces but it it working correctlly ..i have given input "aradhya brilliance center" and the output will come "ARADHYA BRILLIANCE CENTER"..what is the reason sir..
@RohitKumar_jijju4 жыл бұрын
Hi @saurabh, because Spare has ASCII value as 32 which means it gives 32-32=0, 0 ASCII value is for null. that's it
@RohitKumar_jijju4 жыл бұрын
*space
@kamalas65625 жыл бұрын
Sir , how 'a' converted to its ASCII code as 97 automatically while subtracting (a-32) if the normal java program cannot understand the ASCII code
@sthitaprajnamishra98314 жыл бұрын
Java performs implicit type casting/widening casting automatically when converting a smaller datatype to a larger datatype. Since int is a larger datatype than char, Java performs type casting automatically. But when converting from int (larger datatype) to char (smaller datatype), we have to perform type casting manually, also called as explicit type conversion or narrowing casting.
@business1875 жыл бұрын
CAN U plzzz MAKE TUTORIALS ALGORITHM?? Plzzzzzzzzzzz
@umarwani48105 жыл бұрын
Even this statement works Char a = 'a'-32;
@XprohodimecX4 жыл бұрын
You beautiful!! From Russia with love)
@ABCforTechnologyTraining4 жыл бұрын
Thank you so much! 😊
@ABCforTechnologyTraining5 жыл бұрын
Do you have any questions on this topic? Please share your feedback in the comment section below and we'll have our experts answer it for you. Thanks for watching the video
@business1875 жыл бұрын
CAN U plzzz MAKE TUTORIALS ALGORITHM?? Plzzzzzzzzzzz
@preetisheelavanthmath34364 жыл бұрын
can we do this by using inbuilt method toUpperCase()