Everyone tell the code but no one tell the internal things....i have spent more than 100 hours on lectures but no one told me these things...Thank you soo much..keep growing
@@dhyani-jii Will definitely get something extra to learn from here but won't recommend if you are a complete beginner... Its like the advance version of the basics .. once you gain some basic about java and then go through this playlist you give definitely get some extraordinary knowledge
@16:50 this code is giving error Error : Test.java:8: error: ')' or ',' expected System.out.println(x:"Hello World"); ^ Code in video : public class Test{ int x = 10; public static void main(String[]args){ System.out.println(x:"Hello World"); } } Solution /fix: Public class Test{ int x = 10; public static void main(String[]args){ System.out.println("Hello World"); } }
Every line I can understand clearly and click...oo to ye aise hota hai... I have done programming in java still now I realise there is lots to learn even on the basic level
I have trusted you bhaiya. I have started the course from today. I am learning a lot. I subscribed you when you had 315 subs. Cuz i knew you gonna be genuine.Please keep that trust and dont be like those babbar, nishant and all just to sell courses.
I'm not gonna explain every single detail. I'm not gonna spoon feed. If you are ready to put efforts like a engineer and not learn like a student then start otherwise do not
I have a question int a = 1; System.out.println(Integer.toString(a)); Why did you use the toString method? When ‘a’ was already an integer? Kindly reply, thank you.
If we want to convert an integer to string. We can use wrapper Integer method toString() which is possible if we do use Integer not int. Just search wrapper and premitive classes in java
@@SinghDevHub alright, but in this case without using tostring method we would have got same output... Also, one more question... How to convert string to int?
thanks bhiya please continue the course
Yo bruh 😎😎
Everyone tell the code but no one tell the internal things....i have spent more than 100 hours on lectures but no one told me these things...Thank you soo much..keep growing
Thanks buddy 🙏🏾
yes recently discovered his channel and i am very lucky to find this channel on time
I know node.js and cpp can i start this playlist if i am 0 in java ,
@@dhyani-jii yep. You can for sure
@@dhyani-jii
Will definitely get something extra to learn from here but won't recommend if you are a complete beginner... Its like the advance version of the basics .. once you gain some basic about java and then go through this playlist you give definitely get some extraordinary knowledge
Bhai bhot maza aa eha hai continue rakho boss.
Love and respect from Mansehra KPK Pakistan.
❤️
"do while hai, but bakwas hai kuch kam ka nahi " loved that ! ; )
😅 haan kaam ka hai but utnw nahi. Maine ek do baar kra hoga bas
@16:50 this code is giving error
Error : Test.java:8: error: ')' or ',' expected
System.out.println(x:"Hello World");
^
Code in video : public class Test{
int x = 10;
public static void main(String[]args){
System.out.println(x:"Hello World");
}
}
Solution /fix: Public class Test{
int x = 10;
public static void main(String[]args){
System.out.println("Hello World");
}
}
Ask chatgpt bhai. Very simple mistake there should be
@@SinghDevHub yes i fixed it but how did it worked for you? i have written the solusion in my comment also
great knowledge ...thank you for this
Every line I can understand clearly and click...oo to ye aise hota hai... I have done programming in java still now I realise there is lots to learn even on the basic level
☺️☺️🙏
Very nice content , please also touch upon the most asked questions from the topics you are teaching it will be of great help. Amazing series
Yeah will share the assignments to solve and interview questions. Do share with your friends ♥️
Please be continued
Thanks for the course content
Yeah, keep sharing. More quality content on the way
Great Initiative bro
when will this playlist concluded. I am very much eagier to do backend with java in my projects also...
This playlist will take a lot of time but your resume and skills will be built along the way along with interview preparation
Completed Day 1✅
☺️☺️
Bhaiya Computer Networking and Operating System k liye Resourse share bta do...
Applied OS we have on our channel and Computer networks k liye GFG
I have trusted you bhaiya. I have started the course from today. I am learning a lot. I subscribed you when you had 315 subs. Cuz i knew you gonna be genuine.Please keep that trust and dont be like those babbar, nishant and all just to sell courses.
Thanks bro. Aur seekhne k liye course lelo mera just 2Cr ka hai 😂🫡
bro whats the prerequities for this course??
People should be able to search google when stuck
Bhaiya pta kaise chalega ki jo object / function hum bnaye hai wo RAM mein heap ya stack mein store hoga ?, deciding parameters kya hai
Search kro. What gets initalized in stack and what on heap. U will know.
Scope bound stuff generally stack me jata hai
@@SinghDevHub okay bhaiya ty for clearing I had confusion in scope one
13 February 2024
I will try to solve the problem sir but truthful I'm bad at looping problems 😅 got confused most of the time😐
Nothing to worry about when you try 2-3 times and asks chatgpt Or on internet you'll learn a lot
Process jvm ka ram use karega naa
Memory global hota hai but let's read more about it on internet
@@SinghDevHub okay thank you
24:05 but string is not a wrapper class right? its just a normal class
String is not a primitive data type, char is the primitive type from which String class has been implemented
VS code theme in this video??
I don’t remember bhai
Notes share kar dena bhaiya ,
Much love ❤
Nahi not possible to share
Which theme are you using?
IntelliJ cat poo chin theme
Is this playlist enough for total backend in java from zero?.And how many days will this playlist be?
I'm not gonna explain every single detail. I'm not gonna spoon feed. If you are ready to put efforts like a engineer and not learn like a student then start otherwise do not
@@SinghDevHub Ok bro thanks for reply
Bhaiya java ki DSA course la do
Nopes. I don’t want it now
@@SinghDevHub but why bhaiya or kya bina DSA k placement hogi hamari aap hi guide kar do🙏🙏🙏
I have a question
int a = 1; System.out.println(Integer.toString(a));
Why did you use the toString method? When ‘a’ was already an integer?
Kindly reply, thank you.
If we want to convert an integer to string. We can use wrapper Integer method toString() which is possible if we do use Integer not int. Just search wrapper and premitive classes in java
@@SinghDevHub alright, but in this case without using tostring method we would have got same output... Also, one more question... How to convert string to int?