Coding Interview Questions And Answers | Programming Interview Questions And Answers | Simplilearn

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

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

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

    🔥 Post Graduate Program In Full Stack Web Development: www.simplilearn.com/pgp-full-stack-web-development-certification-training-course?Programming-owtO0cKwtk4&Comments&

  • @brfreddy
    @brfreddy 2 года назад +13

    #26 Matching values in an integer array could be a linear execution if you build a key, value index and count the number of keys that appear. O(n) versus O(n²).

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

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

  • @priyankarauthan1225
    @priyankarauthan1225 3 года назад +32

    This is amazing ❤️. I have faced many of these questions in my interviews.

  • @CromaCampusOfficial
    @CromaCampusOfficial 3 года назад +20

    Thanks for sharing these coding interview question really helpful for beginners.

  • @mykasoda
    @mykasoda 2 года назад +15

    Thanks for this! I wish you were my data structures professor!

  • @shaswatadas8254
    @shaswatadas8254 3 года назад +11

    In binary tree, parent can have max of 2 child. But in this video they said always have 2 child. Not expected.

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

      Binary only have two nodes but those two nodes may have another two child nodes

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

    Perfect video whatever I want to know everything is in this....

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

      Hope you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!

  • @shailusingh9064
    @shailusingh9064 3 года назад +8

    All programming questions were easy.

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

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

  • @franktheballer23
    @franktheballer23 3 года назад +12

    #25 doesnt account for possible non letter items. For example "Mike's". In this your program would count the apostrophe as a consonant.

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

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

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

      for those wondering a simple work around would be to start an else conditional and use if (c>'a' && c

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

    Thank you so much sir... Helped me a lot... 👍👍👍

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

    Thankyou for the video❤️

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

    Thank you!! Great work 👍

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

    Nice video 👍😊👍

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

    Thanks for this wonderful video

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

    Thankyou for this video sir❤️

  • @dheerajkhushalani2619
    @dheerajkhushalani2619 3 года назад +27

    Reverse a string problem answer is not looking right. Must be corrected.

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

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

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

      Noticed it right away. Probably a question you want to get right when interviewing.

    • @ChrisCox-wv7oo
      @ChrisCox-wv7oo 2 года назад

      Looks good to me. What's the issue? Runs fine (written in c++ and Java)
      Problem 21, yeah?
      23 hasn't defined length, yet.

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

      I ran it cuz it didn't look right but it is.

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

    Which is best java or python as a beginner I am little confused and I am ECE background?

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

    Write a program in java to accept perpendicular and base of a right angle triangle.
    Calculate and display hypotenuse, area and perimeter of the triangle

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

      Hey, thank you for watching our video. We will definitely look into your suggestions. Do subscribe and stay tuned for updates on our channel. Cheers :)

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

    code for Bubble sort algorithm shown is wrong .

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

      Thank you for bringing this to our attention. We’re sorry you had a bad experience. We’ll strive to do better

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

    All questions are too easy and the are never ask in the interview some time they can but not for always

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

      Keep learning with us .Stay connected with our channel and team :) . Do subscribe the channel for more updates : )

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

    Will anyone provide the slide of this video :-)

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

      For slides, you can check out our SlideShare profile: www.slideshare.net/Simplilearn"

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

      ​@@SimplilearnOfficial can't find it there though. Tried everything. Could you please provide a direct link? Thanks once for the great video! :)

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

      Find 300+ interview questions on core java ....watch series here.....

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

    Great material:
    Bubble sort update...
    Java:
    int[] a = {1, 2, 7, 6, 4, 9, 12};
    for(int k = 0; k < a.length; k++) {
    for(int l = 0; l < a.length - k - 1; l++) {
    if(a[l] > a[l + 1]) {
    int t = a[l];
    a[l] = a[l + 1];
    a[l + 1] = t;
    }
    }
    }
    JavaScript:
    var a = [1, 2, 7, 6, 4, 9, 12];
    for(var k = 0; k < a.length; k++) {
    for(var l = 0; l < a.length - k - 1; l++) {
    if(a[l] > a[l + 1]) {
    var t = a[l];
    a[l] = a[l + 1];
    a[l + 1] = t;
    }
    }
    }
    console.log(a);

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

      We're thrilled to have been a part of your learning experience, and we hope that you feel confident and prepared to take on new challenges in your field. If you're interested in further expanding your knowledge, check out our course offerings in the description box.

  • @Arcanix
    @Arcanix 3 года назад +21

    Please don't just read off your slides. I already know how to read! This is a terrible way of presenting information.

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад +10

      Thank you for your review. We are sorry to hear you had such a frustrating experience, but we really appreciate you bringing this issue to our attention

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

    If someone wants to work in abroad in a tech industry how should he or she apply for that

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

    Codes are not clear. Can u send the codes in description or any google Drive? Pls

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

      Hello, thanks for viewing our tutorial. You can find your requested dataset in the video description. Hope that helps.