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

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ม.ค. 2025

ความคิดเห็น • 57

  • @SimplilearnOfficial
    @SimplilearnOfficial  ปีที่แล้ว +2

    🔥Full Stack Java Developer Program (Discount Code - YTBE15) - www.simplilearn.com/java-full-stack-developer-certification?O0cKwtk4&Comments&TH-cam
    🔥Full Stack Developer - MERN Stack Program (Discount Code - YTBE15) - www.simplilearn.com/full-stack-developer-course-mern-certification-training?O0cKwtk4&Comments&TH-cam
    🔥Caltech Coding Bootcamp (US Only) - www.simplilearn.com/coding-bootcamp?O0cKwtk4&Comments&TH-cam

  • @brfreddy
    @brfreddy 2 ปีที่แล้ว +14

    #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 ปีที่แล้ว +35

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

  • @mykasoda
    @mykasoda 2 ปีที่แล้ว +15

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

  • @CromaCampusOfficial
    @CromaCampusOfficial 3 ปีที่แล้ว +20

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

  • @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!

  • @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

  • @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 3 ปีที่แล้ว +1

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

  • @Nik4toon
    @Nik4toon 4 ปีที่แล้ว +4

    Thankyou for the video❤️

  • @manums86
    @manums86 3 ปีที่แล้ว +1

    Thankyou for this video sir❤️

  • @rajsekh1063
    @rajsekh1063 4 ปีที่แล้ว +4

    Nice video 👍😊👍

  • @nithin_in_ireland
    @nithin_in_ireland 3 ปีที่แล้ว +1

    Thanks for this wonderful video

  • @mohanishbhosale7804
    @mohanishbhosale7804 4 ปีที่แล้ว +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  4 ปีที่แล้ว +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 :)

  • @dheerajkhushalani2619
    @dheerajkhushalani2619 3 ปีที่แล้ว +30

    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 3 ปีที่แล้ว

      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.

  • @devhingu4693
    @devhingu4693 3 ปีที่แล้ว +1

    Thank you!! Great work 👍

  • @Susi_sparkle
    @Susi_sparkle ปีที่แล้ว

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

  • @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 : )

  • @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.

  • @mcbotface
    @mcbotface 3 ปีที่แล้ว +1

    code for Bubble sort algorithm shown is wrong .

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 ปีที่แล้ว

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

  • @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.....

  • @tushardas4105
    @tushardas4105 4 ปีที่แล้ว +1

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

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 ปีที่แล้ว +1

      Hi Tushar, you can approach abroad job consultancies.

  • @quriousarts1791
    @quriousarts1791 3 ปีที่แล้ว +2

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

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 ปีที่แล้ว

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

  • @Arcanix
    @Arcanix 3 ปีที่แล้ว +24

    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