Thank you for all that you do for your students! I really enjoyed your class and was actually excited to come to class every day. I am very thankful for passionate professors like you!
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
Your videos are amazing and the quality of teaching is above par. One favour I want that can you upload a pdf or videos of more programs specifically on Single dimensional array and String. Please if possible do it within 10 days. I will be highly thankful.
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
The way of your explanation is easy and understandable even for novice, I appreciate your work that you are doing. I am waiting for Collection concept, will you upload it? and when? Thanks
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programmingc
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
Sir, while printing the elements of 2D array, you didn't pass any argument in System.out.println()...Sir, please tell what does it print when there is no argument passed in it....
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
below is the code, tutorial will take some more time, sorry for inconvenience. class PalindromeStringArrays { public static void main(String args[]) { System.out.println("Enter a string "); Scanner sc = new Scanner(System.in); String s = sc.nextLine(); char[] myArray = s.toCharArray(); int size = myArray.length; char[] original = Arrays.copyOf(myArray, myArray.length); for (int i = 0; i < size / 2; i++) { char temp = myArray[i]; myArray[i] = myArray[size - i - 1]; myArray[size - i - 1] = temp; } System.out.println("Original Array" + Arrays.toString(original)); System.out.println("Reverse Array" + Arrays.toString(myArray)); if (Arrays.equals(myArray, original)) { System.out.println("Entered string is a palindrome"); } else { System.out.println("Entered string is not a palindrome"); } } }
Sir as you explained how to print 3D array I did the same but in output I get different output (I@345db like this rather than 3D array. Please let me know why this is happened?
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
very soon, constructors will also be uploaded, thank you, keep learning. Get updated to my new videos in the following link: th-cam.com/users/smartprogramming Below are the links of all the tutorials in java : 1. Java Tutorials for Beginners : th-cam.com/video/J1TPKWIPFaE/w-d-xo.html 2. Control Statements in Java (with programs and patterns) : th-cam.com/video/OUZkdKFeuK0/w-d-xo.html 3. Arrays in Java (With Algorithms) : th-cam.com/video/dRrjjotgniA/w-d-xo.html
sure, after array programs OOP's concepts will be uploaded, actually i have to go sequence wise otherwise the flow of channel gets stopped, very very sorry for inconvenience, thank you, keep learning
I have a doubt... I have an arrays of string and those I have set to bean class and I have to check weather they are properly set to their respective fields . What should I do? How to print those values?
Thank you for your feedback. Below are some of the links for more videos and information : Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ Website : www.smartprogramming.in Projects & Courses Website : courses.smartprogramming.in Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming Follow Us On : Amazon Store: www.amazon.in/shop/smartprogramming Facebook Page : facebook.com/smartprogramming.india Instagram Page : instagram.com/smart_programming
🚩🌳Professional Courses + Projects (Upto 80% off) 🌳 courses.smartprogramming.in
🔴 Core Java Playlist : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
🔴 Advance Java Playlist : th-cam.com/play/PLlhM4lkb2sEjVsbbZ_kiixY5CcR84IQUg.html
🔴 Android Playlist : th-cam.com/play/PLlhM4lkb2sEhdllbTIVF0rzD0coCiuHok.html
=====================================
▶ Core Java Chapter-wise Playlist ◀
⭕ 9. Collection Framework in Java | Java Data Structure : th-cam.com/play/PLlhM4lkb2sEiOcuH1g-CUuU288qmMNpyj.html
⭕ 8. Multithreading in Java : th-cam.com/play/PLlhM4lkb2sEh1pBs0KBb63PlKKqRx6M1a.html
⭕ 7. Strings In Java : th-cam.com/play/PLlhM4lkb2sEh8AARH5oEivYOrMgaVsPFb.html
⭕ 6. Exception Handling : th-cam.com/play/PLlhM4lkb2sEjaU-JAASDG4Tdwpf-JFARN.html
⭕ 5. OOP's Concepts : th-cam.com/play/PLlhM4lkb2sEhf5NlWeYh_gdcN49pHjVP0.html
⭕ 4. Arrays in Java : th-cam.com/play/PLlhM4lkb2sEi4UoqSmobDeA5VNI1f2w3C.html
⭕ 3. Control Statements : th-cam.com/play/PLlhM4lkb2sEgQmNKO43i7v60no4bdc3lI.html
⭕ 2. Java Introduction : th-cam.com/play/PLlhM4lkb2sEj6zsK25K9f15qNUATqYxGq.html
⭕ 1. Programming Basic Terminologies : th-cam.com/play/PLlhM4lkb2sEhwPZhFmlox57kaCgMm5UgC.html
=====================================
▶Advance Java Chapter-wise Playlist ◀
⭕ 1. JDBC (Java Database Connectivity) with MySQL : th-cam.com/play/PLlhM4lkb2sEjDXBqaYbwAoDAQKh2yczR7.html
⭕ 2. Servlet & JSP Tutorials for Beginners : th-cam.com/play/PLlhM4lkb2sEiiEAP0uSFXiFY8KdXPnN0f.html
Thank you for all that you do for your students! I really enjoyed your class and was actually excited to come to class every day. I am very thankful for passionate professors like you!
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
Your way of Teaching is very nice Bhai, All Concept is cleared at once.
Your videos are amazing and the quality of teaching is above par. One favour I want that can you upload a pdf or videos of more programs specifically on Single dimensional array and String. Please if possible do it within 10 days. I will be highly thankful.
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
sir i dont understand any other youtuber coding videos but your way of teaching is really helping me i wise aap bhe DSA ka course daalte youtube par
All videos are very easy to understand and learn a lots.Thanks
The way of explaination is best ever,thank you..!🖤
The way of your explanation is easy and understandable even for novice, I appreciate your work that you are doing.
I am waiting for Collection concept, will you upload it? and when?
Thanks
simple yet effective🙂🙂
You are such an amazing teacher...really thanks for teaching us..❤️😊
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
Thankyou So Much for such an Informative Video.
Very well explained
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
Nice sir👌👌
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programmingc
Explained beautifully
thank you
Good Efforts sir.
sir you are doing nice job..
Thanks sir for telling about array
thank you for your feedback, keep learning.
thank🙏 you want sir...
Ty sir
Nice one
Thanks 🔥
Sir plz explain buuble sort and linear search in different vedio
Will try
Thanks a lot :)
You're welcome!
Thank you sir. Keep going
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
very helpful video sir
thank you
sir work with scanner class
Sir, while printing the elements of 2D array, you didn't pass any argument in System.out.println()...Sir, please tell what does it print when there is no argument passed in it....
It will not print anything, it will just shift the cursor to the next line
Awesome
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
Thank you s😍ir
Thank you sir
Sir why are you not using( blue j) it will become easier if you do it
Sir Deep copy and shallow per video please?
Sure, Will try
Sir please post some more lectures
Thanks 🐈
Fabulous
thank you
hi deepak very nice mehtod to explaination. can you help me to find palendrome of string using arrays
below is the code, tutorial will take some more time, sorry for inconvenience.
class PalindromeStringArrays
{
public static void main(String args[])
{
System.out.println("Enter a string ");
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
char[] myArray = s.toCharArray();
int size = myArray.length;
char[] original = Arrays.copyOf(myArray, myArray.length);
for (int i = 0; i < size / 2; i++)
{
char temp = myArray[i];
myArray[i] = myArray[size - i - 1];
myArray[size - i - 1] = temp;
}
System.out.println("Original Array" + Arrays.toString(original));
System.out.println("Reverse Array" + Arrays.toString(myArray));
if (Arrays.equals(myArray, original))
{
System.out.println("Entered string is a palindrome");
}
else
{
System.out.println("Entered string is not a palindrome");
}
}
}
array ke aur bhi programme sikhaye
Sir string handling
Sir as you explained how to print 3D array I did the same but in output I get different output (I@345db like this rather than 3D array.
Please let me know why this is happened?
retrieve and Traversing are same?stuff
Yes, both are same
sir hello,
Sir 3-D way ma last me
System.out.print(a[i][j]);// aap ne ye likha he
but sir System.out.println(a[i][j][k]);// i think ye aayega sir....
BTW sir your works is so great.
and thanks for this all video.
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming
sir constructors..
very soon, constructors will also be uploaded, thank you, keep learning.
Get updated to my new videos in the following link:
th-cam.com/users/smartprogramming
Below are the links of all the tutorials in java :
1. Java Tutorials for Beginners : th-cam.com/video/J1TPKWIPFaE/w-d-xo.html
2. Control Statements in Java (with programs and patterns) : th-cam.com/video/OUZkdKFeuK0/w-d-xo.html
3. Arrays in Java (With Algorithms) : th-cam.com/video/dRrjjotgniA/w-d-xo.html
Deepak need OOPS pleaase do the needful
sure, after array programs OOP's concepts will be uploaded, actually i have to go sequence wise otherwise the flow of channel gets stopped, very very sorry for inconvenience, thank you, keep learning
Sir string ke banayie na
Hello Freaky Aman,String chapter will be uploaded after array programs, thank you
Keep Learning
Smart Programming ....
Okk sir
But its my folded hand rqst that
Plz upload fast
String is really tough
Plz sir. Thoda jldi
Bht hard hai string ke programs
sure, i will try my level best to upload videos very soon, but it will take some some, sorry for that delay
Its okk sir
Dont tell sorry
I have a doubt... I have an arrays of string and those I have set to bean class and I have to check weather they are properly set to their respective fields . What should I do? How to print those values?
message me the proper program, because the values can be print directly, but first i have to look your program.
Thanks sir
Thank U Sir
thank you sir
Thank you for your feedback.
Below are some of the links for more videos and information :
Java Tutorials Serial Wise : th-cam.com/play/PLlhM4lkb2sEhfuXL-2BDrJ67WkUdQ2v9b.html
Important Java Books: www.amazon.in/shop/smartprogramming?listId=3OFWAB0091PSQ
Website : www.smartprogramming.in
Projects & Courses Website : courses.smartprogramming.in
Download Our Android Application for Notes and Interview Questions : play.google.com/store/apps/details?id=com.smartprogramming
Follow Us On :
Amazon Store: www.amazon.in/shop/smartprogramming
Facebook Page : facebook.com/smartprogramming.india
Instagram Page : instagram.com/smart_programming