I have never really understood the concept of Class, Methods and Object until i watched this video... you really broke it down brother...Excellent instructions
@harshavardhan891Ай бұрын
9:53 We can't ignore dude... Coz it's funny 😂😂
@abhishekmitra9712 Жыл бұрын
Watching this video today and realized that your joke about "Nothing phone" actually became true. There is actually something called nothing phone.😄
@why90tАй бұрын
True
@Sorjen108 Жыл бұрын
Nothing phone 🤣 Thanks for those great updated videos! Much love from Mauritius
@smittt203 ай бұрын
The kind of details in the video like explaining every single word from void to object to function helped me a lot, i have never understood class and object effectively until now. Thanks a lot sir
@mango-strawberry Жыл бұрын
Your explanation is extremely good
@sidharthansidhu4783 Жыл бұрын
It is weird how a Computer returns a pen😄. Excellent teaching 😍
@Lwa-fq5yz4 ай бұрын
🤣
@burpeesquad Жыл бұрын
The "Nothing" joke hits hard. haha loved it 😂
@Tanned_guy Жыл бұрын
Excellent teaching.
@melwinsanthosh8135 Жыл бұрын
You are teaching very well than my teachers
@heycreatives Жыл бұрын
Way of explain its really good.even don't know java also easy to understand...
@Nenu-x9kАй бұрын
Thank you so much sir🙂, Your teaching is extremely good👌👌👌🤝
@wesjales55788 ай бұрын
Why are youtube videos literally alway better then in person lectures?
@DarkyBoy-n1i4 ай бұрын
But you teach well and I've never seen a teacher like you.
@NoName-im9rp Жыл бұрын
awesome sir keep it up
@Gunasekhar-zj6eh4 ай бұрын
what is the environment you are using?
@juturtaur298 Жыл бұрын
Thank you sir
@RishiKBose-2510 ай бұрын
Sir, it would be advisable to update your IDE promptly.
@Logilogii2 ай бұрын
Great full ❤
@AriRam-xs7ie Жыл бұрын
Can you please explain about the ' . ' (Dot)operater and it's function
@yashaswinihm428811 ай бұрын
It's basically used as a accessing operator. General used with object to access the data variables and methods
@debo823411 ай бұрын
poetic
@asuradevan1702 Жыл бұрын
Well Teached
@everyone3602 Жыл бұрын
dr's of java
@jb66528 ай бұрын
how do you make the terminal on right side like that?
@PoojaChindarkar-u9e Жыл бұрын
its nice to get a nothing phone at 2 rupees!!
@sahanbandaranayake708 Жыл бұрын
great explanation 😍
@Marshal-y2y3 ай бұрын
Will you please explain why this playlist is not a continuous one ,like when i watch video number 23 and go to 24 ....you were actually saying that in previous video we have seen something like calculator program which doesn't exists in the previous whichever i watched
@md.ikramulislam97082 ай бұрын
yeah the numbering is wrong sometimes ,that was in #22
@iamgold7436 ай бұрын
bro but compiler show : you shoud declare main method in computer class
@ozodbekhamidov987 Жыл бұрын
good exam
@JehanSaren Жыл бұрын
Hi Sir, please help🙏, how to access the variables inside the method to another method? Void Room1(){ name1="Elisa"; name2="Jefrey"; } Void Room2(){ i want to access "Elisa" }
@droste07 Жыл бұрын
Then you have to create instance variable (variable inside the class) then you can access it anywhere in the class block!
@DarkyBoy-n1i4 ай бұрын
Sir, Who returns nothing?🤣🤣🤣🤣
@pratiktiwariramji3 ай бұрын
Exams 😂🤣
@AnuragRawat01 Жыл бұрын
9:45 Let's put Joke aside but you need to focus at learning Joke unlike this one 😅😅
@czarscrib36806 ай бұрын
I knew about the nothing phone but I wasn't expecting that joke😅😅😅😅
@rkrk5378 Жыл бұрын
One SUGESSTION Sir, Please don't give different 2 examples, Please stick to one example through out the video.. if you are giving example of 'Computer' then please stick to that example only Instead of giving several examples like Car, Pen, Computer etc this could confuse a viewer.. OTHERWISE THE VIDEO WAS GOOD
@hozsumosa9322 Жыл бұрын
What poor jokes, poor + funny jokes 😁 9:52
@hareeshbhat25719 ай бұрын
i didnt get laugh because of nothing but at last sir said ignore my poor jokes🤣🤣🤣
@singasong7679 Жыл бұрын
method inside method give error. please correct this anyone ij() in k() method show error class A{ int i; int j; void ij(){ System.out.println("i and j"+i+ " "+j); } int show(){ return i+j; } class B extends A{ int k; void k(){ System.out.println("value of k"+k); ij(); } int sumijk(){ return show()+k; } public static void main(String[] args) { B obj =new B(); obj.i=44; obj.j=33; obj.k=21; int c=obj.sumijk(); System.out.println("value of sum"+c); } } }
@vanajakshibc45878 ай бұрын
U have pass values to the methods which does calculation and returns values