Java Interview For Freshers | Core & Advance Java | Coding Round

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

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

  • @TheKiranAcademy
    @TheKiranAcademy  Месяц назад +2

    Java PLACEMENT Interview Question- ruclips.net/p/PLQU_Gzt0f8XSZAy4cXp80As631CK4G-dx&si=YKzJCLXBGvoNNroK
    👉Fill Out The Form To Schedule Your Offline Mock: forms.gle/od1rmNhyBqPnKDSz8
    🔰Enroll for Advanced Certification Course - bit.ly/jbkgshub7

  • @aditya_IT-q4l
    @aditya_IT-q4l Месяц назад +8

    I am currently a final-year BCA student. Although I'm not in your class, I make it a point to watch every interview you post. Because of you, I try to cover cross-questions for any topic. Thank you so much for your guidance!

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

      Thanks for watching our video and sharing your thoughts. Do subscribe to our channel and stay tuned for more. Cheers!

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

    You are aswsome sir you cover all interview question in every interview

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

      WooHoo! We are so happy you love our videos. Please do keep checking back in. We put up new videos every week on all your favorite topics. Have a good day!

  • @srparida2457
    @srparida2457 Месяц назад +2

    7-THALA FOR A REASON

  • @pranavdaspute906
    @pranavdaspute906 Месяц назад +3

    Rajuuuu ❤

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

    Abstract class have no object means object of abstract class not possible and normal class it's possible this is the main difference okk

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

    You are awesome sir your every video i have seen nd very helpfull for me even your every video boost me day by day thanks a lot for this wonderful video as well thanks for future video related to this…❤❤❤❤❤❤❤

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

      Your satisfaction is our top priority, and we're thrilled to hear that you had a positive learning experience with us! If you're interested in pursuing additional learning opportunities, we encourage you to take a look at certification courses in the description box.

  • @Codingwithamol7
    @Codingwithamol7 Месяц назад +2

    Very Nice Rajuu

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

    Helpful

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

    According to you this is good interview for freshers or not for selection . Like tcs ,infosys

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

    Thanks 😊

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

    thanks you sir it's very helpfull

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

    Your videos have been very helpful and thank you so much for helping people like us, my question is if i know all core java concepts completely should i approach a company and try to give the interview, bcz i get very nervous thinking about it like what if they only ask concepts of spring and microservices and all, although i am a fresher should i try to give the interview with all the knowledge i have or should i first upskill myself for spring and spring boot also? I am confident that i can answer 80% core java and intermediate java concepts perfectly, could you provide some guide or tips

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

      yeah we can conduct your offline mock with kiran sir

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

    helpfull

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

      Your satisfaction is our top priority, and we're thrilled to hear that you had a positive learning experience with us! If you're interested in pursuing additional learning opportunities, we encourage you to take a look at certification courses in the description box.

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

    How much fee for online Advanced Java course OR fullStack developer course ? TheKiranAcademy RUclips videos are very nice/useful for improve my java skills. Thankyou

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

      Fill this Certification Course Form - bit.ly/jbkgshub7
      📱𝗖𝗼𝗻𝘁𝗮𝗰𝘁 𝗨𝘀:- 9075 777 123
      fill this form or call us on this no. our team will guide you

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

      Thank you

  • @Rutuja-d4w
    @Rutuja-d4w Месяц назад

    Static variables means global variables
    both are same??

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

      The main difference between a static variable and a global variable is that a global variable can be accessed from anywhere in a program, while a static variable can have a more limited scope

  • @mr_ravi_ranjan
    @mr_ravi_ranjan 22 дня назад

    I want to meet you sir but how ❤

    • @TheKiranAcademy
      @TheKiranAcademy  19 дней назад +1

      just schedule your offline mock with kiran sir thank you

  • @mr_ravi_ranjan
    @mr_ravi_ranjan 22 дня назад

    How to crack any mnc interview sir

    • @TheKiranAcademy
      @TheKiranAcademy  19 дней назад +1

      Cracking an MNC interview requires a blend of technical proficiency, soft skills, and strategic preparation

    • @mr_ravi_ranjan
      @mr_ravi_ranjan 16 дней назад

      @@TheKiranAcademy I have technical knowledge only problem apitude

  • @Subhamkumar-cq1zw
    @Subhamkumar-cq1zw Месяц назад +1

    50:09 code will compile successfully
    class A
    {
    int a=0;

    void m1() {


    int y;




    }
    }
    The local variable y is declared but not initialized, which is allowed in Java. Since y is not used in the method, there's no issue, and the code will compile successfully.