Java String interview Questions and Answers with example| Immutable | Most Asked | Code Decode

  Рет қаралды 103,224

Code Decode

Code Decode

Күн бұрын

In this video of code decode i.e. Java String Interview Questions and Answers for freshers and experienced.
Udemy Course of Code Decode on Microservice k8s AWS CICD link:
openinapp.co/udemycourse
Course Description Video :
yt.openinapp.co/dmjvd
We have taken some most commonly asked Interview questions along with their answers
This string Interview questions are asked in almost every interview of Java whether it would be freshers java interview or experienced java interview
Please watch this video of Most Asked String Interview Question as it cover very important string interview questions and answers.
Relevel link :
relvl.co/ur3k
What are the different ways to create string objects?
String objects can be created in two ways:
Using the ‘new’ operator.
Using double-quotes.
String S1 = new String("code");
String S2 = "decode";
When the String is created with the double quotes, JVM searches it for in the string pool; if the same value is found, it returns the reference to that String else creates a new object with the new value provided.
In the other case, if the String is created with the ‘new’ operator, then JVM creates a new object but not in the string pool. If we want to create the object in the string pool, we can use the intern() method.
What is a string constant pool?
The memory space allocated in the heap memory to store the string literals is called the string constant pool.
No two string objects can have the same value in a string constant pool.
Why is Java provided with String constant pool as we can store the objects in heap memory?
String constant pool provides the facility of reusability of the existing string objects.
When a new string object is created using the string literals, then JVM first checks in the pool if this String already exists or not.
If it exists, then it will reference the existing String rather than creating a new object.
This will help in the speeding up of the application and also helps in saving the memory as no two objects will have the same content.
Most Asked Core Java Interview Questions and Answers : • Core Java frequently a...
Advance Java Interview Questions and Answers : • Advance Java Interview...
Java 8 Interview Questions and Answers : • Java 8 Interview Quest...
Hibernate Interview Questions and Answers : • Hibernate Interview Qu...
Spring Boot Interview Questions and Answers : • Advance Java Interview...
Angular Playlist : • Angular Course Introdu...
SQL Playlist : • SQL Interview Question...
GIT : • GIT
Subscriber and Follow Code Decode
Subscriber Code Decode : kzbin.info?...
LinkedIn : / codedecodeyoutube
Instagram : / codedecode25
#codedecode #javainterviewquestion #stringinterviewquestion

Пікірлер: 160
@anooppressboltme2477
@anooppressboltme2477 2 жыл бұрын
I am mother of 2 year old toddler and 4 years gap in software field. Because of ur videos I have cracked interviews. Thanks a lot 🙏
@CodeDecode
@CodeDecode 2 жыл бұрын
So glad to have you back in IT industry 🎊🎊🎊🎊many congratulations on clearing interviews. M sure u will rock 🤘🤘thanks a lot 🙂🙂
@Rajshimishra123
@Rajshimishra123 2 жыл бұрын
Same case with me hope your videos help me to clear interview plz pray for me
@deepat2272
@deepat2272 Жыл бұрын
So happy to know that a mother with gap has cracked it. Thanks for sharing and inspiring others as well.
@nirvikajewellers2390
@nirvikajewellers2390 Жыл бұрын
hi dear am trying to join as how u prepared pls let me know
@rupadevigujjari2202
@rupadevigujjari2202 Жыл бұрын
Yes...True..your videos are very helpful and easily understandable .Great Job. Many Thanks :)
@kalekar100
@kalekar100 2 жыл бұрын
I have cracked multiple interviews purely based on your videos only. Be it core java, streams, spring , boot, hibernate. Since then I have been watching your videos as soon as they are uploaded and have recommended my friends to do so. I think what offer I have earned today is entirely based on your efforts and credit goes to you.Very grateful to you mam 🙏🙏and excited to watch your new initiatives. Please keep going.
@CodeDecode
@CodeDecode 2 жыл бұрын
Many congratulations Sourabh. Well deserved Man 👏👏👏👏👍🙂🙂. Keep shining keep rocking. Thanks for supporting us 🙂🙂
@kalekar100
@kalekar100 2 жыл бұрын
@@CodeDecode all thanks to you maam 🙏🙏
@CodeDecode
@CodeDecode 2 жыл бұрын
Anytime Sourabh. U are a champ 👏👏
@rajatsahu8767
@rajatsahu8767 2 жыл бұрын
++1 even i am in similar in a similar position thanks @CodeDecode ... my JAVA knowledge has been improved a lot.
@kalavaguntahridayasaivalli4867
@kalavaguntahridayasaivalli4867 17 күн бұрын
I never comment on yt videos but I want to say I became a fan of your teaching... I'm on a spree watching your videos and it is helping me a lot in my professional upskilling. Thanks a lot Mam! ❤❤
@CodeDecode
@CodeDecode 16 күн бұрын
Thanks for such a beautiful comment 😊 all hard work is paid off seeing such nice words 😊 keep learning keep shining 🌟🌟
@Sunilkumar-jn7ci
@Sunilkumar-jn7ci 2 жыл бұрын
Very Well explained !. Just want to add for last example , when you do concatenation of s1 + "decode" , it actually creates a new object for "decode" and than "CodeDecode" , after the 2nd line there will be 3 objects in string pool. Thanks for reading , correct me if you think differently.
@vasundharachintha5037
@vasundharachintha5037 5 ай бұрын
This is really really helpful. Got all my doubts cleared related to Strings in java with this one.
@firdousbelim581
@firdousbelim581 Жыл бұрын
Very very Nice Explanation mam. Please make series of java interview questions Array. Loops. Oop and collection framwork.
@evgeniyazaynulina1930
@evgeniyazaynulina1930 10 ай бұрын
Hello! Thank you very much for your videos! I have one question, because I didn't quite catch while watching it. Why is an unreferenced object in String poll, which is created by the "new" keyword along with its value in heap memory, not collected by the Garbage Collector?
@hoshiyartewatia4959
@hoshiyartewatia4959 2 жыл бұрын
Hi There I have one question here, if we create any object using new keyword then it will allocate memory in heap area and in SCP also. So that for further use it will pick that value from SCP means for reasubality. Then my question is why we are storing that value in heap. Why we are allocating two memories for same value. Will it not consume the memory? Please suggest.
@hakunamatata4880
@hakunamatata4880 Жыл бұрын
@8:25 If it creates one more object in string constant pool, will it be a extra memmory consumption if i don't use it in the future?
@nagapradeepvankayala7301
@nagapradeepvankayala7301 2 жыл бұрын
Excellently covered end to end complete string concept...
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks 🙂🙂👍
@mdumarreza3072
@mdumarreza3072 Жыл бұрын
We need to some other videos Please make on the toString topic immediately Topic should be string, stringbullder, stringbuffer , immutable and mutable Etc
@indirarani2368
@indirarani2368 Жыл бұрын
Thank you for the detailed explanation, please help with my interview question, for String input “hello world” and increment counter=2 , output will be - “jgnnq yqtnf”
@manishagarwal1505
@manishagarwal1505 2 жыл бұрын
Thank you for your Great work!! These videos are short and to the point and good to brush up concepts before interviews, keep up the good work!!
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a lot Manish 🙂🙂👍👍
@shwetabhat9981
@shwetabhat9981 2 жыл бұрын
Thank You so much ma'am . Can't really appreciate you guys enough for all the efforts that you put in . Helps so so much for interviews , pretty much looks like interviewers too just pick up questions from your channel 😅 . Thank you again and as usual looking forward to many more videos .. 🙂
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a lot Shweta 🙂🙂👍👍
@vgasagar
@vgasagar Жыл бұрын
When was string constant pool introduced? Or is it der from beginning of java?
@gautamagarwal9761
@gautamagarwal9761 10 ай бұрын
Excellent video! Just to the point and lots of important learnings to take away from this video! 👍👍
@CodeDecode
@CodeDecode 9 ай бұрын
Thanks a lot
@suyashgupta6480
@suyashgupta6480 2 жыл бұрын
please cover the most asked string coding interview questions. Your content is awesome!! Thanks for the hardwork
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks for showing us thr path Suyash. We will cover it in next video now 🙂🙂👍👍
@shyamalirani8478
@shyamalirani8478 2 жыл бұрын
Appreciate your way of explaining everything is really unique and easily understandable
@CodeDecode
@CodeDecode 2 жыл бұрын
M glad it is Rani. Thanks a lot 🙂🙂👍👍
@jainamdesai4230
@jainamdesai4230 2 жыл бұрын
Thank you..very informative, helpfull tutorial with easy explanation and best examples 👍👌
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Jainam 🙂🙂👍👍
@shyamalirani8478
@shyamalirani8478 2 жыл бұрын
please make one video on string coding interview questions
@akashsaha9366
@akashsaha9366 2 жыл бұрын
Awesome. Please make us more strong to clear any java interview question without going to any other channels.
@CodeDecode
@CodeDecode 2 жыл бұрын
We hope n target the same Akash 🙂🙂👍👍
@nomadicnorthern
@nomadicnorthern 7 ай бұрын
Very informative. Thank you!
@CodeDecode
@CodeDecode 7 ай бұрын
thanks
@SaiTeja-ym2er
@SaiTeja-ym2er 2 жыл бұрын
thanks for sharing knowledge.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Sai 🙂🙂👍👍
@harshsanmukhani5690
@harshsanmukhani5690 2 жыл бұрын
Your concepts are very clear.. You are making really great videos for everyone. Pls do make the video on string coding questions as well. I want to suggest one example as well which i have been asked in my interview. I had to replace the vowel with the number of occurrences let me explain with example... Suppose there is a string as opportunity so i have to replace o with 2, u with 1 and i with 1 as well because, as you can see that the vowel has been replaced with the number of occurrence, i was also asked to iterate an string using map for this logic. These type of questions can also clear many concepts and help to think big and build the logical thinking. I belive you will be making a video on that as well with great examples. Thanks for making such a great content for everyone. Really appreciated. 😄😄🙌
@CodeDecode
@CodeDecode 2 жыл бұрын
Nice question harsh. Sure we will put video on that. Thanks 🙂🙂👍👍
@afzaluddinmd7755
@afzaluddinmd7755 9 ай бұрын
Awsome Explanation..Great job🎉
@CodeDecode
@CodeDecode 9 ай бұрын
Thanks
@pradeeppathak4533
@pradeeppathak4533 Жыл бұрын
Ma'am plz tell me one thing , if SCp method is superior..then why do we use of new keyword object ?? Plz reply ..it is interview question
@vishnushinde281
@vishnushinde281 6 ай бұрын
Where does it says String s = new String("hello"); creates 2 objects one in Heap memory and another copy in string constant pool. Is there any proof to it (like in java doc)? I just want to clarify it. I am learning this concept from many coders saying it created two objects but how can i be sure it creates 2 objects?
@PraneshJoshi23
@PraneshJoshi23 2 жыл бұрын
Thanks for such awesome content 🙏🏻👍🏻
@CodeDecode
@CodeDecode 2 жыл бұрын
You're welcome pranesh
@maksimmakarov9541
@maksimmakarov9541 Жыл бұрын
thx a lot for explanation, watched a bunch of videos, your's was the best
@CodeDecode
@CodeDecode Жыл бұрын
Thanks 😇👍
@priyankau1982
@priyankau1982 2 жыл бұрын
hi mam..what a clarity! Am one of ur great fan...love to study your videos... Please add string programming interview qwestions also..
@CodeDecode
@CodeDecode 2 жыл бұрын
It's live Priyanka. Thanks for suggestions. It really helps 🙂🙂
@kavitakumawat4929
@kavitakumawat4929 8 ай бұрын
Ditto same questions were asked to me in one of the interview, 👌👌
@CodeDecode
@CodeDecode 7 ай бұрын
Sure that Kavita. Thanks for letting us know and helping the community
@hasimhsm9731
@hasimhsm9731 Жыл бұрын
Thanks for this valuable information
@CodeDecode
@CodeDecode Жыл бұрын
You're welcome
@sabir7788
@sabir7788 2 жыл бұрын
Excellent question
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks
@rishabhgupta5460
@rishabhgupta5460 11 ай бұрын
If scp not eligible for garbage collection then is there a limit how many literals we can create bcz it also takes memory can you vlear it ?
@nidhichhabra2470
@nidhichhabra2470 2 жыл бұрын
very informative and useful video.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Nidhi
@pradeeppathak4533
@pradeeppathak4533 Жыл бұрын
Thank you so much ma'am...it's ultimate explanation 🫡
@CodeDecode
@CodeDecode Жыл бұрын
Thanks pradeep
@mayurishinde4968
@mayurishinde4968 Жыл бұрын
Appreciate your way of explaining everything is really unique and easily understandable....Thank YOU😇
@CodeDecode
@CodeDecode Жыл бұрын
Thanks Mayuri ❤️❤️
@start1learn-n171
@start1learn-n171 3 ай бұрын
Tq
@shashankmishara2946
@shashankmishara2946 2 жыл бұрын
Yes mam make this type of video
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure Shashank 🙂🙂👍👍
@Shankar-lz7zs
@Shankar-lz7zs Жыл бұрын
Nice explanation Mam
@CodeDecode
@CodeDecode Жыл бұрын
Thanks
@supriyapandey9339
@supriyapandey9339 2 жыл бұрын
Very informative video
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Supriya 🙂🙂👍👍
@manognajoshik8465
@manognajoshik8465 2 жыл бұрын
Awesome content as always.. waiting for Executor tutorial. There is really no good and understandable tutorial on this topic. It will be very useful for us. Request you to make a video on that topic.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a lot Manogna. Sure we will put video on threads soon 👍🙂
@akashchoudhary5895
@akashchoudhary5895 9 ай бұрын
Thanks a lot
@CodeDecode
@CodeDecode 9 ай бұрын
You're welcome
@venkateshlam8818
@venkateshlam8818 Жыл бұрын
Nice information..
@CodeDecode
@CodeDecode Жыл бұрын
Thanks 🙂
@ahila5771
@ahila5771 10 ай бұрын
If new keyword creates string in both heap and scp then qhat is the purpose of intern?
@nrk7772
@nrk7772 2 жыл бұрын
That's why usernames & passwords can't be as Strings as they can be hacked from String constant pool 🙂
@CodeDecode
@CodeDecode 2 жыл бұрын
Yes i was about to cover that in next part 🙂👍
@ajith_shetty17
@ajith_shetty17 2 жыл бұрын
Thank you
@CodeDecode
@CodeDecode 2 жыл бұрын
🙂🙂👍👍
@antaraghosh19
@antaraghosh19 Жыл бұрын
Thank you ...
@CodeDecode
@CodeDecode Жыл бұрын
Thanks Antara
@shubhamkhune3132
@shubhamkhune3132 2 жыл бұрын
Nice work mam, Plz you will make a video in string interview questions and program
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Shubham 🙂🙂👍👍 we will do that in next video 👍👍
@rajashekar-bu8xd
@rajashekar-bu8xd 2 жыл бұрын
Good video, keep up the good work
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks Raja 🙂👍
@dineshthedarkprince
@dineshthedarkprince 6 ай бұрын
Thanks.
@CodeDecode
@CodeDecode 6 ай бұрын
You're welcome
@rishiraj2548
@rishiraj2548 Жыл бұрын
Thanks
@CodeDecode
@CodeDecode Жыл бұрын
🙂🙂
@ravikumarkuruba9587
@ravikumarkuruba9587 2 жыл бұрын
Thanks Medam
@CodeDecode
@CodeDecode 2 жыл бұрын
🙂🙂👍👍
@shubhamgore4320
@shubhamgore4320 2 жыл бұрын
thank you ... please make a video for the array as well.
@CodeDecode
@CodeDecode 2 жыл бұрын
Thanks a lot for helping us in deciding priority Shubham 🙂🙂👏👏
@mayuryadav1561
@mayuryadav1561 2 жыл бұрын
Yes please create video on array interview questions
@komalkasyap7104
@komalkasyap7104 2 жыл бұрын
Mam, I have one question. As u said in string constant pool, garbage collector doesn't work then how memory are managed in scp?
@CodeDecode
@CodeDecode 2 жыл бұрын
It will be cleaned as soon as your jvm stops
@chinmaybhat9132
@chinmaybhat9132 2 жыл бұрын
But if I have an enterprise application where the app is never stopped, in that case will it not lead to memory issue?
@codingshashtra9091
@codingshashtra9091 Жыл бұрын
गुरू ब्रह्मा गुरू विष्णु, गुरु देवो महेश्वरा गुरु साक्षात परब्रह्म, तस्मै श्री गुरुवे नमः
@CodeDecode
@CodeDecode Жыл бұрын
@lavishdaksh6327
@lavishdaksh6327 2 жыл бұрын
Ma'am please make videos on string and array coding questions. I have given many interviews. Just because of array and string coding I couldn't clear any of them.
@CodeDecode
@CodeDecode 2 жыл бұрын
True Lavish. We will now start with coding interview questions on string n arrays
@lavishdaksh6327
@lavishdaksh6327 2 жыл бұрын
@@CodeDecode Thank you 😊
@venkataraghava3173
@venkataraghava3173 2 жыл бұрын
nice exp
@CodeDecode
@CodeDecode 2 жыл бұрын
thanks
@saansimple
@saansimple 2 жыл бұрын
I will be great work for developers
@CodeDecode
@CodeDecode 2 жыл бұрын
Ok sure 👍👍🙂🙂
@user-bk8kz5fg8r
@user-bk8kz5fg8r 7 ай бұрын
String a="abcdef"; String b="dghijk"; String c= "lmnopa"; can any one help me from these 3 strings to be compared and find duplicates in java8
@akhileshkb9418
@akhileshkb9418 Жыл бұрын
Thnk u mam
@CodeDecode
@CodeDecode Жыл бұрын
🙂🙂👍👍
@avengerblack2042
@avengerblack2042 2 жыл бұрын
Make Video On Android Developer 1 Year' Ex Questions And Answers ..
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure
@vivekvivek-nn1xo
@vivekvivek-nn1xo 2 жыл бұрын
One crappy interviewer asked me exactly same questions. She at the end said that these are most important fundas of java and didn’t selected me 🤨
@CodeDecode
@CodeDecode 2 жыл бұрын
Happens Vivek. It's part of our journey. Keep giving interviews and m sure u will clear it. 🙂🙂👍👍keep learning prepare well and things are just at one hand distance for u Man 👍👍
@ArjunSingh-is1bg
@ArjunSingh-is1bg 2 жыл бұрын
Daily upload karo core java interview questions
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure Arjun. We will try to do that. It's just that we all are working IT professionals. We have hectic sprints in agile format. It's difficult to spare time at late hours in night. But sure we wil try to put more videos. Sorry for the inconvenience. 🙂🙂
@ArjunSingh-is1bg
@ArjunSingh-is1bg 2 жыл бұрын
@@CodeDecode Hey Thank you for response i know about IT Working schedule , try to upload videos when you have free becoz i will regularly follows you
@CodeDecode
@CodeDecode 2 жыл бұрын
Yes will try to increase video frequencies 👍👍thanks for the nice suggestion Arjun 🙂🙂
@techNik94
@techNik94 Жыл бұрын
What happened in below case In memory String s="abc"; s="xyz";
@rishabhthakur7245
@rishabhthakur7245 2 жыл бұрын
thanx
@CodeDecode
@CodeDecode 2 жыл бұрын
🙂🙂👍👍
@rishabhthakur7245
@rishabhthakur7245 2 жыл бұрын
This channel is really a true gem.... The way you explain things makes it to easier to understand, i guess i almost spend 5 hours a day learning over your channel . Thanks allot for all of this efforts that you put❤❤
@rishabhthakur7245
@rishabhthakur7245 2 жыл бұрын
@@CodeDecode i really don't know your name mam😊 but m sure this channel will grow as hell if you keep doing this🤗
@nainagupta4949
@nainagupta4949 Жыл бұрын
i didnt undersatnd why String str = new String("Decode") creates 2 object?
@saansimple
@saansimple 2 жыл бұрын
Can you make core java course on udmey platform.
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure we can do that saan 👍👍
@rishabanand5318
@rishabanand5318 Жыл бұрын
Please cover string coding interview questions
@CodeDecode
@CodeDecode Жыл бұрын
Sure 👍👍
@saansimple
@saansimple 2 жыл бұрын
Can you make video on Executor Service . Please
@CodeDecode
@CodeDecode 2 жыл бұрын
Ok sure we will do that 🙂🙂👍👍
@harshalsamgir697
@harshalsamgir697 Жыл бұрын
String S1 = "Code "; String S2 = "Decode"; I just wanted to know that in this case how many objects are created? For string s1 in String Constant Pool. For, string s2 it will create an object in heap memory and the literal is stored in String Constant Pool as well is it right?
@shubhamsurve3296
@shubhamsurve3296 Жыл бұрын
Only in SCP..Not in heap .As it's not created with new keyword
@kasaramyogesh5166
@kasaramyogesh5166 2 жыл бұрын
Can u make core and advance java video from scratch. It will be very helpful. I am suggesting ur videos to friends too
@CodeDecode
@CodeDecode 2 жыл бұрын
kzbin.info/aero/PLyHJZXNdCXsfqAkteaQ6JfZ_IHvxX-Hj3 Here you go Kasaram 👍
@AVINASHSHARMA-hu3vm
@AVINASHSHARMA-hu3vm 11 күн бұрын
Hi everyone please read this Last March 2024 I layoffs from company and I have only 1 year experience in java developer. I try to many companies but not scheduled my interview please help me. it's been 2.5 months
@shrikantsavita6614
@shrikantsavita6614 2 жыл бұрын
Please upload coding interview questions.... It's a request... Pls
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure Shrikant. Thanks for helping us in deciding what's important next 🙂🙂👏👏
@kameshlekkala1571
@kameshlekkala1571 Жыл бұрын
I was recently asked this question in interview. Can you pease help me with answer. Question: what check is happening internally to decide to create new object in string constant pool or to return the reference of object. Also what design pattern is used by string.
@kameshlekkala1571
@kameshlekkala1571 Жыл бұрын
I have answered it as equals() method. But the interviewer asked me, if I have many literals in string constant pool then doesn't it take time to check equals() method against each literal to identify the matched value. I didn't have answer for it
@saansimple
@saansimple 2 жыл бұрын
Please make video on Executors
@CodeDecode
@CodeDecode 2 жыл бұрын
Ok we will put video on Executor framework Saan 🙂🙂👍👍
@hepsiba1237
@hepsiba1237 2 жыл бұрын
Hi Ma'am ..I have one project with errors wil u help to sort it out
@CodeDecode
@CodeDecode 2 жыл бұрын
What's the error ?
@user-tw9oy3em9e
@user-tw9oy3em9e Жыл бұрын
Really it is 38 degrees celsius in your area?
@CodeDecode
@CodeDecode Жыл бұрын
Yeah. It was hot here at that time. 🙂😀
@manognajoshik8465
@manognajoshik8465 2 жыл бұрын
I would like to suggest some topics on which I haven't found simple and easily understandable videos inspite of rigorous searching. 1) Executor framework 2) Microservices design patterns like CQRS using Axon framework, event sourcing. 3) Resilience4j for Microservices (specifically bulkhead. I couldn't find a single video which could make the concepts clear). 4) Reactive programming in java. I am really waiting for these. And I very much trust it's possible for you alone to make us understand it from grass root level. I haven't found appreciable content on KZbin. I am a regular follower of your content.
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure we will put video on them👍🙂
@saaiidubbings1126
@saaiidubbings1126 Жыл бұрын
Can you make videos in Hindi or telugu aslo mam
@CodeDecode
@CodeDecode Жыл бұрын
🙂👍
@shubhamkhune3132
@shubhamkhune3132 2 жыл бұрын
Plz mam soft copy provide this video
@CodeDecode
@CodeDecode 2 жыл бұрын
Sure. We will put how much are allowed in description below
5 New AI Tools You Should Try
9:18
Skill Leap AI
Рет қаралды 9 М.
Can you beat this impossible game?
00:13
LOL
Рет қаралды 42 МЛН
Joven bailarín noquea a ladrón de un golpe #nmas #shorts
00:17
NO NO NO YES! (50 MLN SUBSCRIBERS CHALLENGE!) #shorts
00:26
PANDA BOI
Рет қаралды 102 МЛН
What is String Immutable || Why String Object Is Immutable In Java (Hindi)
17:36
Istio & Service Mesh - simply explained in 15 mins
16:09
TechWorld with Nana
Рет қаралды 631 М.
What is JWT? JSON Web Tokens Explained (Java Brains)
14:53
Java Brains
Рет қаралды 1 МЛН
Java Strings are Immutable - Here's What That Actually Means
7:06
Coding with John
Рет қаралды 601 М.
Redis Crash Course
27:31
Web Dev Simplified
Рет қаралды 592 М.
Can you beat this impossible game?
00:13
LOL
Рет қаралды 42 МЛН