ππ₯ JAVA Complete Course Part-2 (2024) | 100+ Programming Challenges
Duration: 12 hr

For AI & ML course admission queries, message us or WhatsApp on +91-8000121313
- Java Part 1: https://youtu.be/PymbRTMb4hY
- Java Part 3: https://youtu.be/zMNBGVWGzmM
- GitHub Code Repo: https://github.com/Complete-Coding/Java_Complete_Youtube
𧬠Our Prime PLACEMENT Courses: π
AI & ML for Placements: https://knowledgegate.ai/courses/AI-FOR-EVERYONE
Placement Guidance by Prashant sir: https://knowledgegate.ai/courses/PLACEMENT-GUIDANCE
Complete Coding Bundle: https://knowledgegate.ai/courses/COMPLETE-CODING-BUNDLE
MERN Stack: https://www.knowledgegate.ai/courses/MERN-STACK
DSA Course: https://www.knowledgegate.ai/courses/DSA-USING-JAVA
𧬠Completion Certificate π
https://www.knowledgegate.ai/courses/COMPLETE-JAVA
π Free Notes for all Courses: π
https://www.knowledgegate.ai/courses/COMPLETE-JAVA
π Complete Coding Platform: π
Website: https://www.knowledgegate.ai/
π Social Media: π
πLinkedin: www.linkedin.com/company/completecoding
π± Github: https://github.com/organizations/Complete-Coding
π Whatsapp Updates: https://whatsapp.com/channel/0029VaCmRnF7tkj3fAzbtp3Y
π± Instagram: https://www.instagram.com/complete_coding
πTelegram: https://t.me/complete_coding
π± LeetCode: https://leetcode.com/complete_coding
πFacebook: https://www.facebook.com/CompleteCodingByPrashantSir
π Our One Shot videos π
π¬ MERN Stack π:
- ππ₯ Complete NodeJS Course: https://www.youtube.com/playlist?list=PLdba9R0izoAfJmqkn1xzNdhP4WW2D-Ojv
- ππ₯ Complete React and Redux for Beginner: https://youtu.be/eILUmCJhl64
π¬ Web Development π:
- ππ₯ Complete HTML for Beginner: https://www.youtube.com/watch?v=rklidcZ-aLU
- ππ₯ Complete CSS for Beginner: https://www.youtube.com/watch?v=OpWjt_wbV4E
- ππ₯ Complete JavaScript for Beginner: https://youtu.be/cpoXLj24BDY
π¬ Programming Languages π:
- ππ₯ JAVA Complete Course Part-1 (2024): https://youtu.be/PymbRTMb4hY
- ππ₯ JAVA Complete Course Part-2 (2024): https://youtu.be/nNLqygSI-rE
- ππ₯ JAVA Complete Course Part-3 (2024): https://youtu.be/zMNBGVWGzmM
- ππ₯ C Complete Course with Certification: https://youtu.be/p0QUmC2WJwM
- ππ₯ 100+ C Programming Challenges π― for Beginners (2024): https://youtu.be/vLhaqQLj6KQ
- ππ₯ 10 Projects for Placement in C Beginner to Advanced (2024): https://youtu.be/ShlJel8gOeU
π¬ Other Tools π:
The video player loads when you open this lesson in the course.
Explore the full course: DSA using Java
Discussion
How we can download the videos for offline
KG AI MentorKG AI Mentor
Sorry, currently the videos cannot be downloaded. However, these videos are already available on YouTube. You can visit the KG Coding YouTube channel and watch the required videos there. Channel link: https://studio.youtube.com/channel/UC7uzuZJIYzcxV9JJ1yAtHHg?c=UC7uzuZJIYzcxV9JJ1yAtHHg
Sir I am completing 36 hour course so please provide me certificate
KG AI MentorKG AI Mentor
Dear Learner, if you are facing any such issues, you can contact our support team for quick assistance. Kindly reach out to us through the support link: https://support.knowledgegate.ai
package array; import java.util.Scanner; public class occurrenceOfNumbers { public static void main(String[] args) { System.out.println("welcome to occurrence program"); int[] arrays = Utility.InputArray(); Scanner scanner = new Scanner(System.in); System.out.print("enter the element to check : "); int num = scanner.nextInt(); int occurrence = occurrence(arrays, num); System.out.println("the given number "+num +" occurs : "+ occurrence+" times"); int occurrence = occurrence(arrays, num); System.out.println("the given number "+num +" occurs : "+ occurrence+" times"); scanner.close(); // Add this line! } } public static int occurrence(int[] arrays,int num ){ int i =0; int count= 0; while (i<arrays.length) { if (arrays[i]==num) { count++; } i++; } return count; } } Resource leak: 'input' is never closedJava(536871799)
KG AI MentorKG AI Mentor
You declared occurrence twice β remove one. Resource leak warning is likely from Utility.InputArray() (Scanner not closed there).
sir approch increase kaise kre
KG AI MentorKG AI Mentor
Dear Anubhav, Problem ko samjho, brute force se start karo, pattern identify karo, dry run karo, optimize karo, daily practice karo aur mistakes se learn karo.
notes
KG AI MentorKG AI Mentor
Dear Learner, Where you watch the videos, you will see the βJava Notes β .Click on it. On the side, you will find the Notes optionβclick on that. You will also see a Download option there, from where you can download the notes. If you still have any queries, you can follow up with our technical support team using the link below: Support Link: https://support.knowledgegate.ai
Hello, I am facing an issue with the course video. The video keeps showing a loading circle and the screen keeps blinking, but the video does not start playing. I am using macOS. I completed Part 1 of this course about 2 months ago without any issues, but for the last 1 month I have been facing this problem with Part 2. I also tried switching to Beta mode, but the problem still continues. I have refreshed the page as well, but the video still does not play. Could you please check and help me fix this issue?
KG AI MentorKG AI Mentor
Dear Learner, For any queries, contact with our support team https://support.knowledgegate.ai
what happend?
KG AI MentorKG AI Mentor
Dear Learner, I could not understand your query clearly. Could you please clarify it?
Hello, I am facing an issue with the course video. The video keeps showing a loading circle and the screen keeps blinking, but the video does not start playing. I am using macOS. I completed Part 1 of this course about 2 months ago without any issues, but for the last 1 month I have been facing this problem with Part 2. I also tried switching to Beta mode, but the problem still continues. I have refreshed the page as well, but the video still does not play. Could you please check and help me fix this issue?
Ok
KG AI MentorKG AI Mentor
π If you need help, kindly message on this https://support.knowledgegate.ai to raise a query with our support team. We will guide you further.
I have learnt or can say complete first and second videos on youtube.
