🚀🔥 JAVA Complete Course Part-1 (2024) | 100+ Programming Challenges

preview_player
Показать описание


🧬 Our Prime PLACEMENT Courses: 👇

🧬 Completion Certificate 👇

👉 Free Notes for all Courses: 👇

👉 KG Coding Platform: 👇

👉 Social Media: 👇

👉 Our One Shot videos 👇
🎬 MERN Stack 👇:

🎬 Web Development 👇:

🎬 Programming Languages 👇:

🎬 Other Tools 👇:

Contact Us: 👇
📞Call on: +91-8000121313, +91-9650184667

👉 Our Other YouTube Channels For More Preparation 👇
🆕 KG Coding Bytes: @KG_Coding_Bytes
🆕 KnowledgeGate: @KNOWLEDGEGATE_kg
🆕 KnowledgeGate Placement Prep: @KGJobUpdates

#knowledgegate #KGCoding #PrashantSir
*******************************************************
⭐️Time Stamps⭐️
#0 (00:00) Introduction 👷
#1 (02:02) Introduction to Java ☕
#1.1 (03:00) Why you must learn Java ❌
#1.2 (06:53) What is a Programming Language 💱
#1.3 (12:44) What is an Algorithm ⬇
#1.4 (15:37) What is Syntax 🌍
#1.5 (18:25) History of Java 🔒
#1.6 (29:58) Magic of Byte Code ⚡
#1.7 (33:18) How Java Changed the Internet 🍕
#1.8 (37:09) Java Buzzwords 🎉
#1.9 (43:53) What is Object Oriented Programming ⛔

#2 (48:34) Java Basics 📜
#2.1 (49:49) Installing JDK 🔃
#2.2 (55:13) First Class using Text Editor 💬
#2.3 (1:05:30) Compiling and Running 🎁
#2.4 (1:06:09) Anatomy of a Class 🧾
#2.5 (1:12:07) File Extensions 🍱
#2.6 (1:13:33) JDK vs JVM vs JRE 👪
#2.7 (1:22:08) Showing Output 🦸‍♂️
#2.8 (1:27:30) Importance of the main method 👻
#2.9 (1:34:09) Installing IDE(Intellij Idea) 💊
#2.10 (1:48:30) Project Structure 🖨️
#2 (1:50:49) Programming Challenge 1-3 🙅‍♂️
#2 (2:10:10) Practice Exercise 🙅‍♂️

#3 (2:14:00) Data Types, Variables & Input 🏬
#3.1 (2:14:31) Variables 🖨️
#3.2 (2:28:10) Data Types 🚚
#3.3 (2:45:27) Naming Conventions ⚠️
#3.4 (2:56:06) Literals 📝
#3.5 (3:00:06) Keywords 🚗
#3.6 (3:01:15) Escape Sequences 🔄
#3 (3:07:04) Programming Challenge 4 🙅‍♂️
#3.7 (3:12:58) User Input 🚧
#3 (3:22:55) Programming Challenge 5-6 🙅‍♂️
#3.8 (3:31:43) Type Conversion and Casting 🏁
#3 (3:39:12) Practice Exercise 🙅‍♂️

#4 (3:42:45) Operators, If-else, Number System 🏬
#4.1 (3:45:22) Assignment Operator 🦅
#4 (3:53:37) Programming Challenge 7 🙅‍♂️
#4.2 (4:04:02) Arithmetic Operators ☎️
#4.3 (4:11:40) Order of Operation 📁
#4.4 (4:21:01) Shorthand Operators ✨
#4.5 (4:26:06) Unary Operators 🔊
#4 (4:34:50) Programming Challenge 8-14 🙅‍♂️
#4.6 (5:16:48) If-else ❗
#4.7 (5:36:25) Relational Operators ➰
#4.8 (5:47:46) Logical Operators ☕
#4 (5:55:30) Programming Challenge 15-20 🙅‍♂️
#4.9 (6:38:40) Operator Precedence 📖
#4.10 (6:41:48) Intro to Number System 📖
#4.11 (6:51:48) Intro to Bitwise Operators 👨‍💻
#4 (6:58:15) Programming Challenge 21-27 🙅‍♂️
#4 (7:21:00) Practice Exercise 🙅‍♂️

#5 (7:24:37) While Loop, Methods & Arrays 🖼️
#5.1 (7:25:02) Comments 📐
#5.2 (7:32:23) While Loop 📞
#5.3 (7:46:13) Methods ➿
#5.4 (8:22:55) Return statement x
#5.5 (8:36:42) Arguments 🚩
#4 (8:50:23) Programming Challenge 28-39 🙅‍♂️
#5.6 (11:02:13) Arrays 🧮
#5.7 (11:39:36) 2D Arrays ⌨️
#5 (11:56:53) Programming Challenge 40-50 🙅‍♂️
Рекомендации по теме
Комментарии
Автор



List of Programming Challenges Solved:
1. Create a class to output “good morning” using a text editor and check output.
2. Create a new Project in Intelij Idea and output “subscribe” on the console.
3. Show the patterns
4. Show the patterns using single print statement
5. Create a program to input name of the person and respond with ”Welcome NAME to KG Coding”
6. Create a program to add two numbers.
7. Create a program to swap two numbers.
8. Create a program that takes two numbers and shows result of all arithmetic operators (+, -, *, /, %).
9. Create a program to calculate product of two floating points numbers.
10. Create a program to calculate Perimeter of a rectangle.
Perimeter of rectangle ABCD = A+B+C+D
11. Create a program to calculate the Area of a Triangle.
Area of triangle = ½*B*H
12. Create a program to calculate simple interest.
Simple Interest = (P x T x R)/100
13. Create a program to calculate Compound interest.
Compound Interest = P(1 + R/100)t
14. Create a program to convert Fahrenheit to Celsius
°C = (°F - 32) × 5/9
15. Create a program that determines if a number is positive, negative, or zero.
16. Create a program that determines if a number is odd or even.
17. Create a program that determines the greatest of the three numbers.
18. Create a program that determines if a given year is a leap year (considering conditions like divisible by 4 but not 100, unless also divisible by 400).
19. Create a program that calculates grades based on marks
A -> above 90% B -> above 75%
C -> above 60% D -> above 30%
F -> below 30%
20. Create a program that categorize a person into different age groups Child -> below 13 Teen -> below 20
Adult -> below 60 Senior-> above 60
21. Create a program that shows bitwise AND of two numbers.
22. Create a program that shows bitwise OR of two numbers.
23. Create a program that shows bitwise XOR of two numbers.
24. Create a program that shows bitwise compliment of a number.
25. Create a program that shows use of left shift operator.
26. Create a program that shows use of right shift operator.
27. Write a program to check if a given number is even or odd using bitwise operators.
28. Develop a program that prints the multiplication table for a given number.
29. Create a program to sum all odd numbers from 1 to a specified number N.
30. Write a function that calculates the factorial of a given number.
31. Create a program that computes the sum of the digits of an integer.
32. Create a program to find the Least Common Multiple (LCM) of two numbers.
33. Create a program to find the Greatest Common Divisor (GCD) of two integers.
34. Create a program to check whether a given number is prime.
35. Create a program to reverse the digits of a number.
36. Create a program to print the Fibonacci series up to a certain number.
37. Create a program to check if a number is an Armstrong number.
38. Create a program to verify if a number is a palindrome.
39. Create a program that print patterns using loops.fy if a number is a palindrome.
39. Create a program that print patterns using loops.

KG_Coding
Автор

a free course with this level of guidance. man unbelievable. your teaching style is so good.

nisarahmed
Автор

Sir, i am 62 years retired Geologist from ONGC limited and reached here. Solved all problems by myself.

sanjivchauhan
Автор

I feel bad for people who didn't find this course on YouTube while learning Java for the first time. This is by far my favorite Java course, glad I found it. Respect to such people who put hours of effort just to tech us, that even for free. Respect 🔥

SifatUllah-
Автор

Finally completed the first part I wished there was also a dsa free course from you sir people like me who cant afford the paid course youtube is only source where we can utilize it.

echorusher
Автор

Sir aapne continue 12 hours bina ruke video banaya hai. Salute hai aapko

monu
Автор

Now, I feel, I can learn Java🎉
Teaching is Mind blowing..❤️‍🔥

LifetoXpress
Автор

This is one of the best course. This course is much better than paid classes.
You are one of the best teacher.
Sir You are really Great
No one can explain it as well as you did.
In this course you told us everything from small to big that I Really liked. ❤️

tdxwclq
Автор

This man is 🔥🔥🔥. Thanks for the one-by-one blockbuster and masterpiece course.

shafiulislam
Автор

THIS 3 JAVA COURSE Videos Deserves Millions of views and Worth

kingslayer
Автор

I was searching for a Java course to start with and found this. Absolutely recommend 🔥❤.

PrashantKumar-fbnm
Автор

Sir, please teach us the entire backend in Java, covering Servlets, JSP, Spring, Spring Boot, and microservices. Your guidance would be helpful for us .

aadarshrai
Автор

unbelievable this type of course in *HINDI HINDI* and fully *FREE FREE FREE*, amazing gift to all the coder who wants to learn core java

rahulsonkar
Автор

I saw many videos on you tube , but you teach us in very easy manner, no tension 😊

arjuntanti
Автор

What a blessing for today's college students to learn everything for free

Dipzeus
Автор

Great Content I have started Programming with this one and now I finished 12 hours video. I can say i have great understanding of Java after completing this one. So concluding things that input from user and printing loops and function. Last but not lease love the way done it. one more thing Theek baat hai :)

pradeepshukla
Автор

I have completed about 4 hours of this course and I must say its been an amazing and fulfilling learning journey so far! May I request a course on Docker Containers too? Your style of imparting knowledge will make it super easy for folks who are new to docker to understand. Thanks!

manishtewari
Автор

Awesome content, would like to see the future videos on whole java ecosystem - Servlet, Spring, SpringBoot, Hibernate, etc

igxcwss
Автор

finally, we got the most awaited Java series from our Prashant sir. obviously, this Java series will also be helpful to all Java learners. we are waiting for part 2 of this series, and we are sure you will release that soon.

JavaCodingwithRaju-kvxc
Автор

You are such a legend educator . Amazing and awesome lecture on Java ❤️🫶🫶🫡❤️

amarjeetkumar-jjit