Most Asked Multithreading Interview Questions and Answers in Java | Code Decode

Поделиться
HTML-код
  • Опубликовано: 19 авг 2024
  • In this video of code decode, you will learn Multithreading Interview Questions and Answers in Java for experienced and freshers which is important in Java Interview Questions and Answers
    Udemy Course of Code Decode on Microservice k8s AWS CICD link:
    openinapp.co/u...
    Course Description Video :
    yt.openinapp.c...
    ---------------------------------------------------------------------------------------------------------------------------------------
    Q) What is MultiTasking And Its types. In java interview question and Answers
    Performing multiple tasks at one time . There are 2 types of multitasking :
    Process based multitasking
    Thread based multitasking
    Q) What is Multi threading & how is it diff from multi tasking asked In java interview question and Answers
    Multithreading is a specialized form of multitasking.
    Process-based multitasking is executing several tasks simultaneously where each task is a separate independent process is Process-based multitasking .
    For example, process based multitasking enables you to run the Java IDE at the same time that you are using a text editor or visiting a web site using chrome.
    Thread-based multitasking is executing several tasks simultaneously where each task is a separate independent part of the same program (called Thread).
    For instance,JUnit uses threads to run test cases in parallel. As an application, you can have computer games. You see objects in games like cars, motor bikes etc. They are just threads that run in the game application.
    Thus, process-based multitasking deals with the “big picture,” and thread-based multitasking handles the details
    Q) Which is better process based multitasking or thread based multitasking and why is one of the most asked java interview question and Answers?
    Thread based multitasking is better.
    Multitasking threads require less overhead than multitasking processes.
    Processes are heavyweight tasks that require their own separate address spaces.
    Threads, on the other hand, are lighter weight. They share the same address space and cooperatively share the same heavyweight process.
    Interprocess communication is expensive and limited. Context switching from one process to another is also costly. In java interview
    Q) Which is better process based multitasking or thread based multitasking and why?
    Inter Thread communication is inexpensive, and context switching from one thread to the next is lower in cost.
    While Java programs make use of process-based multitasking environments, process-based multitasking is not under Java’s direct control. However, multithreaded multitasking is.
    Q) What is a Thread
    Threads are light-weight processes within a process.
    Java creates threads by using a "Thread Class".
    All Java programs have at least one thread, known as the main thread, which is created by the Java Virtual Machine (JVM) at the program’s start, when the main() method is invoked with the main thread.
    Q) Types of Thread in java
    There are two types of thread - user thread and daemon thread.
    Q) How to create a user thread in Java
    Thread implementation in java can be achieved in two ways:
    Extending the java.lang.Thread class
    Implementing the java.lang.Runnable Interface
    When the JVM starts, it creates a thread called “Main”. Your program will run on this thread, unless you create additional threads yourself. The first thing the “Main” thread does is to look for your static void main (String args[]) method and invoke it. That is the entry-point to your program. If you create additional threads in the main method those threads would be the child threads of main thread.
    ----------------------------------------------------------------------------------------------------------------------------------------
    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...
    GIT : • GIT
    -------------------------------------------------------------------------------------------------------------------------------------
    Subscriber and Follow Code Decode
    Subscriber Code Decode : www.youtube.co...
    Linkedin : / codedecodeyoutube
    Instagram : / codedecode25
    #javainterviewquestions #multithreadinginterviewquestions #codedecode

Комментарии • 220

  • @earthcitizen7156
    @earthcitizen7156 3 года назад +7

    Hi Madam, Ur videos are very clearn and gr8. Gr8 job yr doing. keep doing madam ji.
    I would like to see more videos..
    1. Muti Threading -- more detailed one.
    2. MicroSevices
    3. Spring Data JPA & Spring Data Rest
    4. Deep Cloning & Shallow Cloning.

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure SreeRaam. These are really nice topics. We will create videos on them too 👍👍

  • @sproutboot
    @sproutboot Год назад +7

    Hi code decode, today I passed 2nd round interview. Thank you. I hope you make tech video until I retire. And I am a recent graduate with 1 year of experience.

    • @CodeDecode
      @CodeDecode  Год назад +2

      Many congratulations 🎉🎉🎉👏👏👏👏👏. Well deserved man 👍👍👍👍

  • @karishmarawat1359
    @karishmarawat1359 3 года назад +14

    Watched several videos and it was great learning. The way you explain difficult topics in a simple way is commendable. You are amazing and really talented mentor. Keep up the good work and I am sure within no time your channel will grow so fast 😊😊

    • @CodeDecode
      @CodeDecode  3 года назад +3

      Thank u so much Karishma. This means a lot 🙏👍.

  • @sahilbhasin2112
    @sahilbhasin2112 3 года назад +13

    Yes go for more thread topics, wait notify executor api , future, CF etc

  • @SahiMehta
    @SahiMehta 2 года назад +2

    One of the best tutor on youtube , explain topics with real life problems .
    Big Fan 😁😁😁😁

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks Sahil 🙂🙂👏👏

  • @poojakumarisingh5506
    @poojakumarisingh5506 Год назад +1

    The time you explained a thread with example... I couldn't resist myself to write a comment..... Thanks for sharing the knowledge.... 🥰please keep making videos like this

    • @CodeDecode
      @CodeDecode  Год назад +1

      Means a lot to us Pooja. These comments keeps us motivated to put more such videos 🙏🙂. Thanks ❤❤

  • @AA-dl8jw
    @AA-dl8jw 3 года назад +7

    Thank you so much for being the part of our professional journey. Your videos are helping so much for clearing interviews. Please do more videos on core java. This channel is going to become reference for java interviews(Please make note of it).

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks for being a part of team code decode Mallikarjuna . sure we will upload more videos on core Java

  • @rajashekarreddy3505
    @rajashekarreddy3505 Год назад +2

    fast of all, you have a nice voice and your explanation was awesome,thank you keep doing more like this.👍❤

  • @iloradas6387
    @iloradas6387 3 года назад +13

    Great explaination, please make a part 2 which covers some advanced topics such as ExecutorService

    • @CodeDecode
      @CodeDecode  3 года назад +3

      Sure, we will cover that too soon 👍👍

  • @yourstrulyAdrija
    @yourstrulyAdrija Год назад +1

    Very accurate elaborate explanation.. helps to clear basics again when we tend to forget day to day work. Thanks for taking this effort and making the video

    • @CodeDecode
      @CodeDecode  Год назад

      Thanks Adrija 👍👍🙂🙂

  • @nibeditasahu6047
    @nibeditasahu6047 2 года назад +1

    Your explanations are simple , crisp and easy to understand the core concepts. Thank you so much for the good work.

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks Nibedita 🙂👍

  • @madhanmmm6383
    @madhanmmm6383 2 года назад +2

    I agree with @Karishma Rawat. Please make a content on Context Switching.
    Thank you for the well detailed series of videos on java and rest of the technologies.
    🙏

    • @CodeDecode
      @CodeDecode  2 года назад

      Sure Madhan. We will put video on that soon 🙂🙂👍👍

    • @phanikiranbodavula5523
      @phanikiranbodavula5523 2 года назад

      yes @Karishma , Can you please do it

  • @amanabhishek8998
    @amanabhishek8998 9 месяцев назад +1

    please make video on join ,wait,sleep as well .there are so much scenarios based question are asked by interviewer.
    And also on Locking and Executor framework

  • @kaushikigoel759
    @kaushikigoel759 2 года назад +1

    Lucky to come across your channel during my interview preparation❤️❤️..

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks Kaushiki 🙂🙂👍👍

  • @sira2757
    @sira2757 Год назад +1

    Great video! One small thing is that you were mentioning as context switching. It’s not so, actually both main and thread runs in parallel. That’s both sysout getting printed in random order

    • @CodeDecode
      @CodeDecode  Год назад

      What if there is only 1 core ? Parallel processing is not possible then right?

  • @travel2explore627
    @travel2explore627 3 года назад +2

    The content and way of explaining is really great !!

  • @karthickselvam3938
    @karthickselvam3938 3 года назад +1

    Very much Useful Video...am waiting for this video.... thank you very much.... explanation is very much clear... thanks for sharing this...😊

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks Karthick 👍👍

  • @rajatmahajan5112
    @rajatmahajan5112 3 года назад +4

    Hi Mam, First of all thank you for this crystal clear explanation. Could you please make videos on sorting like (Merge, Heap, Quick, Bubble), I mean how exactly these sorting algorithm internally works, what are their complexities & performance & in which scenario we should use which one? As this is the most asked interview questions. Also in Collections.sort & Arrays.sort which sorting algorithm uses & why?

    • @CodeDecode
      @CodeDecode  3 года назад +2

      Sure Rajat. We will do that sure 👍👍

    • @rajatmahajan5112
      @rajatmahajan5112 3 года назад +1

      @@CodeDecode Thanks for the response mam. Could you please make video on SOLID Principles & where & how can we use this principles in our project. As it is also asked many times in interview?

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure Rajat. We will create a video on solid principles too 👍. It's a nice topic 👍👍

  • @basavarajnv1017
    @basavarajnv1017 3 года назад +1

    Your doing a great job madam 🙏🙏🙏 your videos are really helping a lot to me..Thank you Madam

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks for writting back to us Basavaraj. M glad it helps 👍👍

  • @Rimanshu001
    @Rimanshu001 2 года назад +1

    Going Good, keep uploading such interview questions

    • @CodeDecode
      @CodeDecode  2 года назад

      Sure we will upload more

  • @saurabhbhende4231
    @saurabhbhende4231 Год назад +1

    Thanks a lot, it was so easy but it took me so much time to understand, thanks a lot again

    • @CodeDecode
      @CodeDecode  Год назад

      🙂🙂👍👍 glad it helps

  • @pratik_code
    @pratik_code 10 месяцев назад +1

    Mam after watching you video my all concept all clear 😊😊

    • @CodeDecode
      @CodeDecode  10 месяцев назад

      All the best pratik

  • @dope_sheesh
    @dope_sheesh 2 года назад +1

    Love the way you explain so easily!! Thank you so much!

  • @realnileshpawar
    @realnileshpawar 2 года назад +1

    Please make full video multithreading and cover all methods of Thread class.

  • @VikiSangani
    @VikiSangani 2 года назад +1

    Hi, your videos are good source of learning. Keep up good work. My request to you please make videos on Threading from concurrent package i.e. ExecutorService, ReentranctLock, Semaphore etc.

    • @CodeDecode
      @CodeDecode  2 года назад

      Sure Viki. We will do that soon 🙂👍. Nice topics

  • @ssshanmugam4514
    @ssshanmugam4514 3 года назад +1

    Your videos are useful for me....thanks a lot. expecting more videos

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure. We will upload more videos 👍👍🙏🙏

  • @souvikpodder9515
    @souvikpodder9515 3 года назад +3

    Hey please create a 2nd part of this video with the details on thread scheduling and other concept like joining 2 threads etc etc.
    This really helps in quickly brushing up the concepts.

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure Souvik, we will upload next part very soon 👍👍

  • @simran1041
    @simran1041 3 года назад +3

    Video is super useful.Please dont move ur curson.

    • @CodeDecode
      @CodeDecode  3 года назад +2

      Thanks Simran. 😊👍. We are really sorry that this disturbs you but we needed to keep us concentrated on the slides as it's very difficult to shoot 30 mins long video talking alone without getting distracted 😅😅😁😁. We will try to reduce it. Thanks for the suggestion 👍👍

  • @ahmettachmuradov8630
    @ahmettachmuradov8630 3 года назад +1

    Hello, your videos are very helpful because they are informative . Please make the second part as well so this topic will be covered fully. Thanks.

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure Ahmet 👍. Thanks for helping us in deciding the priorities.

  • @shraddha6654
    @shraddha6654 3 года назад +1

    Very well explained. Please do make second part of multithreading

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks . Sure we will make it soon....

  • @Alone-mr6is
    @Alone-mr6is Год назад

    really a big gift for beginners, tq maam

  • @nitigyasahu8402
    @nitigyasahu8402 3 года назад +2

    Very good content. Please make a second part with Multithreading with the collection. Also, make videos on Data structure and algorithm interviews question. Also on spring boot annotations

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure Nitigya, we will create a video covering this 👍👍

  • @shwetamote3966
    @shwetamote3966 3 года назад +1

    Hi Madam
    Please create a second video which is include all remainng parts of thread
    .your videos are very helpful
    Thank you

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure Shweta, we will do that very soon 👍

  • @vaibhavgarg4267
    @vaibhavgarg4267 2 года назад +1

    Excellent Explanation. Appreciate your efforts. Are you working with some organisation?

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks Vaibhav, yes we all are working IT professionals.

  • @shanawajmansuri8640
    @shanawajmansuri8640 2 года назад +1

    Thank you so much,
    your tutorials has helped me a lot and all of my concepts get cleared with which I was having difficulty :)

    • @CodeDecode
      @CodeDecode  2 года назад +1

      We are so glad to hear that Shanawaj 🙂🙂👍👍thanks a lot

  • @priyankachougule4334
    @priyankachougule4334 3 года назад +1

    Please upload the next video of multithreading. I need it. Appreciate your hard work.

    • @CodeDecode
      @CodeDecode  3 года назад

      It is live now please check
      ruclips.net/video/tLF1wYZs4Bk/видео.html

  • @tejsinghchaudhary639
    @tejsinghchaudhary639 Год назад +1

    your work is amazing. could u please make some more videos on multithreading?

  • @bandollahareesh5854
    @bandollahareesh5854 10 месяцев назад +1

    u r telling excellent content . but my small suggest is u r telling too fast keep some slow.

    • @CodeDecode
      @CodeDecode  10 месяцев назад

      Very true. Sure in upcoming videos we will take things slow

  • @Ravikumar-gj6qw
    @Ravikumar-gj6qw 2 года назад +1

    Hi code decode do more videos on multithreading keep it up

  • @naveen00755
    @naveen00755 2 года назад +1

    Thanks for ur efforts on this ..can you please make vide on memory management

    • @CodeDecode
      @CodeDecode  2 года назад

      Sure Naveen we will create it soon

  • @jiteshbhardwaj5730
    @jiteshbhardwaj5730 Год назад +1

    Please make a video about Thread Scheduler !!!

  • @pinkypatel1401
    @pinkypatel1401 3 года назад +1

    Please continue with second video. Nice explanation

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure. Thanks Pinky for helping us in deciding the priority

  • @balasubramanian4620
    @balasubramanian4620 2 года назад

    Please add more videos for multithreading .Can you cover all the topics in multithreading

  • @sankarasubramanian568
    @sankarasubramanian568 Год назад +1

    Great explanation, Thank you :)

  • @nisithpanda7506
    @nisithpanda7506 Год назад +1

    Great content and very helpful. Could you please provide a session on Executor Pattern? That would really help 🙏🙏

    • @CodeDecode
      @CodeDecode  Год назад

      Sure nisith we would make it soon

  • @sachintha49
    @sachintha49 3 года назад +2

    This is so helpful. Thank you!

    • @CodeDecode
      @CodeDecode  3 года назад

      We are glad it is Sachintha. 👍👍😊😊

  • @kazaasekhar
    @kazaasekhar 3 года назад +1

    really good one like it

  • @mnaresh12
    @mnaresh12 3 года назад +1

    tq madam...keep going...its very helpful

    • @CodeDecode
      @CodeDecode  3 года назад +1

      You are welcome Naresh .....

  • @namratasvlog3650
    @namratasvlog3650 9 месяцев назад +1

    complex things you are making easy

  • @robinjaison8947
    @robinjaison8947 3 года назад +1

    Perfect!! Keep the good work💯💯

  • @whatsappvideos4521
    @whatsappvideos4521 3 года назад +4

    Hey Code Decode Team,
    Appreciate your efforts!!
    Please make a list of all the annotations used in spring framework from spring core to all other useful modules and make a video on it with example.
    Interviewers asks most of the annotations in interview so it will help to many people to go through all annotations at one place...
    Thanks for sharing knowledge...

    • @CodeDecode
      @CodeDecode  3 года назад +2

      Sure. we will make that video too

  • @Ravikumar-gj6qw
    @Ravikumar-gj6qw 2 года назад +1

    Continue make videos on this session plz

  • @shamsheeruhani4192
    @shamsheeruhani4192 3 года назад +2

    Thank you for the great content... Can we create a thread by using callable Interface ...?

    • @CodeDecode
      @CodeDecode  3 года назад

      no it cannot be done. only runnable interface can create thread

  • @savitarohra3905
    @savitarohra3905 3 года назад +1

    Such an awesome explanation! Thank you

  • @simplegirl2218
    @simplegirl2218 2 года назад +1

    nice, please do detailed videos on multi threading with examples mam

    • @CodeDecode
      @CodeDecode  2 года назад

      Sure we will upload them soon 👍🙂

  • @dhananjoyjena6231
    @dhananjoyjena6231 3 года назад +1

    Great explaination,
    Could you please do one video of HashSet in Java and internal DS implement HashSet in Java

    • @CodeDecode
      @CodeDecode  3 года назад

      Sure, in next video, we will cover that👍👍

  • @basavarajnv1017
    @basavarajnv1017 3 года назад +1

    Thank u very much for the video madam..your videos really helping me to attend the interviews..could u plz make a video on springboot annotations and also on exception handling only 1 video is there..plz make a another video on expection handling.

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure Basavaraj 👍👍we will upload them soon 👍👍👍

    • @basavarajnv1017
      @basavarajnv1017 3 года назад +1

      @@CodeDecode Thank you 😊

    • @CodeDecode
      @CodeDecode  3 года назад

      👍👍all the best for your interviews 🙂🙂

  • @gyanaranjanbarik411
    @gyanaranjanbarik411 3 года назад +1

    so nice of you for helping.

    • @CodeDecode
      @CodeDecode  3 года назад

      M glad it helps Gyanaranjan 👍👍

  • @arinbose6366
    @arinbose6366 2 года назад +1

    Yes threading is much important.

  • @shivamjaiswal829
    @shivamjaiswal829 2 года назад

    Mam please make video on comparable future and other advance topics🙏🏻 you are amazing. Thank you so much❤️

    • @CodeDecode
      @CodeDecode  2 года назад

      sure we will create video on it

  • @sunshinemeadows9462
    @sunshinemeadows9462 Год назад +1

    Girl you rock thanks !

  • @sureshgarine
    @sureshgarine 3 года назад +1

    thank you, madam, nice explanation 😊😊😊

    • @CodeDecode
      @CodeDecode  3 года назад

      You're welcome suresh.....

  • @ManvendraSingh-xh2ry
    @ManvendraSingh-xh2ry 11 месяцев назад +1

    love love love !!! thankyou !!!

  • @mazeedmahammad9508
    @mazeedmahammad9508 2 года назад +1

    Your explanation is awesome.. it's really refreshment course with solid details... Appreciate it

    • @CodeDecode
      @CodeDecode  2 года назад

      Thanks for the nice words

  • @iDeveloper92
    @iDeveloper92 Год назад +1

    Excellent content!

  • @amanvikram04
    @amanvikram04 4 месяца назад +1

    we can call the run method on class which is implemented by runnable right

  • @madhu56236
    @madhu56236 3 года назад +1

    Please continue with second video also thanks for the great content 😃

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Thanks Madhuri. It will help us in understanding what next video should be on

    • @lakshaygupta6180
      @lakshaygupta6180 3 года назад +1

      Waiting for the 2nd Video

    • @CodeDecode
      @CodeDecode  3 года назад

      It's almost ready. We will upload soon 👍👍

    • @madhu56236
      @madhu56236 3 года назад

      @@CodeDecode Thank you

    • @athithirajesh4u
      @athithirajesh4u 3 года назад

      Waiting for multithreading part 2

  • @vaishnavi_cholli
    @vaishnavi_cholli 2 года назад

    Excellent explanation

  • @sachinjadhav8759
    @sachinjadhav8759 2 года назад +1

    nice explanation

  • @kumarjadhav6106
    @kumarjadhav6106 2 года назад +1

    Please make video on unit testing..

    • @CodeDecode
      @CodeDecode  2 года назад

      Yes it's in pipeline for us Kumar 🙂👍

  • @aparnawarade1159
    @aparnawarade1159 Год назад

    Thank you so much for the video . Can you please explain Executer framework and why and when it should be used ?

  • @shriharihkulkarni3604
    @shriharihkulkarni3604 3 года назад +1

    yes please make a continuation video

  • @aniketchavan8443
    @aniketchavan8443 3 года назад +1

    Well explained!

  • @swarajprakash6021
    @swarajprakash6021 3 года назад +1

    Please make os vedio for us..🖥️💛

  • @amanvikram04
    @amanvikram04 4 месяца назад +1

    great video

  • @jaikishanpatel7597
    @jaikishanpatel7597 3 года назад +1

    Great content, clear explanations.
    Are you a Gujarati? :)

    • @CodeDecode
      @CodeDecode  3 года назад

      Thanks Jai🙃. Yes I am 🙂🙂.But I am an Indian too 😝

    • @jaikishanpatel7597
      @jaikishanpatel7597 3 года назад +1

      @@CodeDecode Right, I should've asked if you are an Indian with Gujarati as your mother tongue. 🙂👍

    • @CodeDecode
      @CodeDecode  3 года назад

      @@jaikishanpatel7597 😝😝😂😂

  • @vickyanand5898
    @vickyanand5898 2 года назад

    Can you just explain what happens to a service when multiple say 1000 requests are sent at the same time. how multithreading can be related here ?

  • @priyankapatil6783
    @priyankapatil6783 2 дня назад

    can you please explain thread life cycle

  • @scienceisareligion2231
    @scienceisareligion2231 3 года назад +1

    Thanks for the info

  • @thinklog3888
    @thinklog3888 3 года назад +1

    Please do the video on completablefuture

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Nice topic 👍 will do that for sure 👍👍

    • @thinklog3888
      @thinklog3888 3 года назад

      @@CodeDecode Thanks and in the last of the tut please just describe solid principles of java .I mean just for 2-3 mntes if possible..👍

  • @piyushrayrikar
    @piyushrayrikar 3 года назад +1

    Good content

  • @venkatasaisowjanya3463
    @venkatasaisowjanya3463 3 года назад +1

    please post a new video with the more details like thread scheduler and deamon threads

  • @UnKnown-id7ih
    @UnKnown-id7ih 3 года назад

    Thank you very much di❤🚩.

  • @gokulaher2476
    @gokulaher2476 3 года назад

    At time line 7:55
    Q which is better (multi tasking) proceess base or thread base?
    Every running program is process
    And one process have multiplex threads to make the process run
    In short thread is a light weight process right? I mean a single thread is a lightweight process
    And a bunch of such thread running together makes a complete process

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Multi threading is better. You can't keep on creating multiple processes for small tasks.

    • @gokulaher2476
      @gokulaher2476 3 года назад

      @@CodeDecode Requesting you to pl. Create top 5 or 10 interview FAQs
      For executor framework and concurrency collection api.

  • @AllUno_italy
    @AllUno_italy Год назад

    Can you write program to design a game like soccer .. which was asked in interviews using threads

  • @RajKumar-ij5rr
    @RajKumar-ij5rr 3 года назад +1

    Hi Mam..Can I post some testing tough questions will you answer in your next video?

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure Raj. You can. We will answer them in upcoming videos

    • @RajKumar-ij5rr
      @RajKumar-ij5rr 3 года назад +1

      @@CodeDecode What are the few interesting defects/bug you have found and got compliment from your manager?
      What are the challenges that we might face while performing Parallel,Cross browser testing?
      Find some general issues/challenges when you move software from UAT environment to Production?
      Once you make a video on these questions I will post remaining questions...

  • @satyanarayanareddyb3052
    @satyanarayanareddyb3052 2 года назад +1

    Can you do a video for changing the default server from tomcat to any other server in springboot application.

  • @jain_sahil
    @jain_sahil 7 месяцев назад

    Time to add completable future in the list?.🤔

  • @shubhamtagalpallewar7125
    @shubhamtagalpallewar7125 3 года назад +1

    Ma'am, microservices interview questions please....

    • @CodeDecode
      @CodeDecode  3 года назад

      Yes we are planning and we will create the videos soon...

  • @ramuselva1208
    @ramuselva1208 3 года назад +1

    Can you explain the internal working of hashmaps

  • @satyanarayanareddyb3052
    @satyanarayanareddyb3052 2 года назад +1

    need more info ThreadScheduler please

  • @Mandeepsingh-ch6hd
    @Mandeepsingh-ch6hd 3 года назад +1

    Can u make vedios on Maven install , maven update related features of maven project

    • @CodeDecode
      @CodeDecode  3 года назад

      Yes we are planning on that .... we will make it soon.....

  • @adityaprakash2781
    @adityaprakash2781 3 года назад +1

    Can we extend run and implement runnable simultaneously, so we can use all methods

    • @CodeDecode
      @CodeDecode  3 года назад

      Extend run? You mean thread class??

    • @adityaprakash2781
      @adityaprakash2781 3 года назад +1

      @@CodeDecode yes like can we extend thread and implemet runnable simultaneously for a new clasa

    • @CodeDecode
      @CodeDecode  3 года назад

      Thread class already internally implements runnable. Why do you need to do it explicitly

    • @adityaprakash2781
      @adityaprakash2781 3 года назад +1

      @@CodeDecode no just was eager

    • @adityaprakash2781
      @adityaprakash2781 3 года назад +1

      Thanks for the reply tough

  • @cinemahal7
    @cinemahal7 Год назад +1

    Wat is ur linkedin profile mam ?

  • @reactjsdeveloper8758
    @reactjsdeveloper8758 3 года назад +1

    Finally👍

    • @CodeDecode
      @CodeDecode  3 года назад

      You commented so many times that we had to 😅😅. Just kidding. Thanks for the nice suggestion, we enjoyed creating it.

    • @reactjsdeveloper8758
      @reactjsdeveloper8758 3 года назад +1

      @@CodeDecode 😆
      now we will wait for the inner class topic

    • @CodeDecode
      @CodeDecode  3 года назад +1

      Sure 😅

  • @krishnareddy163
    @krishnareddy163 3 года назад

    Could you help me with the transient and volatile

  • @nonu43db
    @nonu43db 2 года назад

    where is the second part of the video?

  • @manojkumarpadhi2445
    @manojkumarpadhi2445 2 года назад

    Hi, I found there is a typo in the project name. Decode spelling is a mistake. It should be CodeDecodeThreadDemo instead of CodeDecoedThreadDemo. I know there is not an issue from a code point of view but it is impacting clean code architecture.

  • @satyarupbhanja2503
    @satyarupbhanja2503 Год назад

    19:13