Java Spring Boot 3.7 Years Interview Experience

Поделиться
HTML-код
  • Опубликовано: 11 янв 2025

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

  • @genz-career
    @genz-career  3 месяца назад +2

    Interview Preparation Kit: topmate.io/genzcareer/930954
    Get this above Kit and crack any interview

  • @rakeshdesale2363
    @rakeshdesale2363 3 месяца назад +9

    Borther, please share the Interview on project base, real time scnario base questions and also managerial round questions.. Please ....

  • @ShawAnandVlog
    @ShawAnandVlog 3 месяца назад

    Hi Faizal,
    Thanks for your all these hard works & sharing us informative videos. These are very helpful for us. Many thanks.

  • @faheemsyed9481
    @faheemsyed9481 3 месяца назад

    great job sir .

  • @anushiyaarjunan4455
    @anushiyaarjunan4455 3 месяца назад

    very informative...thanks for sharing..

  • @Indian-o2t
    @Indian-o2t 3 месяца назад

    Yes, I think we can modify final reference...like stringjoiner

  • @ankitkumar3010
    @ankitkumar3010 Месяц назад

    Actually object Reference is possible to create final
    Like a : public static final class_name obj =new class_name();

  • @VenkatPolis
    @VenkatPolis 3 месяца назад +2

    @genz-career, you said there is a scenario where dead lock situation happens with in a single threaded application, may i know when it will be?

    • @ameenahmad5986
      @ameenahmad5986 3 месяца назад

      In simple words, deadlock means some action waiting for other activities to complete. A single-threaded application can produce deadlock,
      If we have locks that are not re-entrant and a thread attempts to reacquire a lock that it owns already (or)
      If the same thread is waiting to complete the execution of itself like a recursive call.

    • @pulkitmittal584
      @pulkitmittal584 Месяц назад +1

      ​@@ameenahmad5986 Locks in Java are by default Reentrant.
      You need to create your own custom Non-Reentrant Lock to do something like this

  • @User-i6v2g
    @User-i6v2g 3 месяца назад +2

    Sir please give some idea about salary also

  • @BruceWayne1996-1
    @BruceWayne1996-1 3 месяца назад

    do you give referals in usa as well?

  • @saimanideeep8716
    @saimanideeep8716 3 месяца назад

    Can someone please tell me the unusual scenario where deadlock occurs with a single thread

    • @ameenahmad5986
      @ameenahmad5986 3 месяца назад +4

      In simple words, deadlock means some action waiting for other activities to complete. A single-threaded application can produce deadlock,
      If we have locks that are not re-entrant and a thread attempts to reacquire a lock that it owns already (or)
      If the same thread is waiting to complete the execution of itself like a recursive call.