While in college I thought java is a tough language to study so I skipped that and didn't choose it for a career but after seeing these types of tutorials I change my mind thanks a lot for the free course you provide.
seriously, mind blowing video hai with simple and to the point instruction maine bahut saare videos dekhe kasam se isko dekhne ke baad mera methods ka concept clear hua hai thank you so much❣
Your Lectures are helping me a lot. I've been revising Java and I can say that, this course is completely perfect. Just hoping that you'll continue this course till last..thank you 🙏😇
i don't know how should i thank you your teaching is mindblowing crystal clear explaination super mam your teaching is very good and you are also good looking
You are amazing. This is the first time I'm studying anything in hindi/urdu. I've lived in Europe all my life. Your teaching style is great! Thank you so much
In finding factorial of a number When we write Factorial= factorial*I; Syso ( factorial); Then for n =5 Why the following output has not came: 5 4 3 2 1 Think about the question of printing table of any natural number using loop ... there we have used a same approach so why this is not happening again?????
Because in output statement we didn't print the ith value we print the (factorial). So see the condition Factorial=factorial*i That statement will execute and give the factorial of any number by loop.
Homework question 1: import java.util.*; public class checkPrime { public static int prime(int n) { int flag = 1; for (int i = 2; i < n; i++) { if (n % i == 0) { flag = 0; break; } } return flag; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); if (prime(n) == 1) { System.out.println("Prime"); } else { System.out.println("Not Prime"); } } }
@@syedarmaghanhassan4652 nothing diff. bro...both use for execute the code. if any function used in under class called method, used outer of class called function thats allll....😉
Didi you really put a lot of hardwork in making these videos. Hats off to you ❤. I really build so much logic in programming after learning from your playlist. Going forward with a strong determination.
for factorial question i used conditional statement ; import java.util.* ; public class Functions { public static int Factorials (int a) { if(a == 0){ return 1 ; } return a * Factorials(a-1) ; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); System.out.println("factorial of " + a + " is " + Factorials(a)); } }
I am working in java development projects from over 2 years and now only I am realising the difference between function and methods, smh! thanks a lot tho for clearing this out great course till now.
Time Stamps for important points 🧑💻 What is a Function -> 0:50 Syntax Of Function Return type -> 2:30 Function name -> 5:00 Arguments -> 6:00 What happens in memory when a function is created -> 12:30 (stack frame concept) function vs code -> 25:50
While in college I thought java is a tough language to study so I skipped that and didn't choose it for a career but after seeing these types of tutorials I change my mind thanks a lot for the free course you provide.
You are blo:O dy fool
same here i thought the same way
In which year you are in ???!!!!
5th year😂
Me too
Icse wale baccho ko revision hogaya.!! Thank you didi
Yeah actually ❤❤😅😂😂
sem
love the examples you take reference of in between..plz keep going with this series.. great help and satisfaction
What an explanation. I really understand this topic. Thanks
You are the best teacher of Java programming
seriously, mind blowing video hai with simple and to the point instruction maine bahut saare videos dekhe kasam se isko dekhne ke baad mera methods ka concept clear hua hai thank you so much❣
Ur parents are so proud of you didi because of ur work🙏🙏
Your Lectures are helping me a lot. I've been revising Java and I can say that, this course is completely perfect. Just hoping that you'll continue this course till last..thank you 🙏😇
ruclips.net/video/-AdgUai3Jkw/видео.html
Good morning didu
C ka course bhaje dijiya na
I was using this for ICSE Class 10 revision
@@aryadebchatterjee5028 now u in class 11?
You are awesome 👏 you are explaining the difficult thing in simple way that anyone can understand. One of best Java course
r u mad? she is totally ratta riented
Java videos is better than c++ ,aman bhaiya ne improve kiya , c++ mein fast paced tha lekin ye usse improved hai with better explanation .
Bhgwan Bhlaa kre tumhara sbka .. Thankyou so much didi :)
you are grateful and diamond of Microsoft 💎 and masters of language ✅ Thanks didi
22 Sep Shraddha
Waah kya scene hai 😂
😂
?? please explain
i don't know how should i thank you
your teaching is mindblowing crystal clear explaination
super mam
your teaching is very good
and
you are also good looking
I just say .......big thank you ..........,🙏keep learning ❤️❤️❤️❤️❤️
Thanks Bro
I'm telling you that end of this language I will definitely crack the job love u loads bro💕😘
ruclips.net/video/-AdgUai3Jkw/видео.html
You are amazing. This is the first time I'm studying anything in hindi/urdu. I've lived in Europe all my life. Your teaching style is great! Thank you so much
Perfect for getting java easily for asolute beginners.
The fact that the people from Microsoft always code in Mac.
They are working in iOS development
Microsoft gives mac,surface,dell latitude depending upon work
Flexing at peaks bro
Anyone who is watching 👀is from class 10 icse???
Yes class 10 mein hi placement course 💀
if you follow the icse prescribed book for computer that will be enough to make you good in Java
😭😭😭😭😭😭😭😭😭😭😭😭😭😭
Btw legends are here before exams 😂👀
Yes it,sme
Only one thing I would like to say is Thank you so much 🙏
Your way of explaining is amazing!!
I have never understood programming concepts until I watched your series.
Thank you so much ma'am!!!
Have u completed homework questions of this lecture?
@@munfeesfatima4508 yes
ma'am your video help me more to get best way to learn the java
This course is literally awesome, didn't know that difference between function and method 🫡💯
Thank you mam and sir for providing course and background black screen is best for night study ☺️☺️
MAM YOU ARE BEST TEACHER IN THIS ERA ☺☺
I am a arts student and i don't know why i am learning java but explanation is very good 😊👍🏻
I know C programming, and due to those concepts ,I can Pause Video and Solve these ques on my own!
In finding factorial of a number
When we write
Factorial= factorial*I;
Syso ( factorial);
Then for n =5
Why the following output has not came:
5
4
3
2
1
Think about the question of printing table of any natural number using loop ... there we have used a same approach so why this is not happening again?????
Because in output statement we didn't print the ith value we print the (factorial).
So see the condition
Factorial=factorial*i
That statement will execute and give the factorial of any number by loop.
Your voice makes this tutorial much amusing
Homework question 2:
import java.util.*;
public class checkEven {
public static void checkingEven(int n) {
if (n % 2 == 0) {
System.out.println("Even");
} else {
System.out.println("Not Even");
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.close();
checkingEven(n);
}
}
?
What is sc.close() ;
Code is wrong
Mam ...plz bring faculty which will guide students like me which are just going to enter in world of competitive programming .....
Your Lectures are helping me a lot. Thanks
Kitni achi tarike se smjhaya ❣️
straight to objective (Functions and method ) and get my points clear, thank you
This channel is nothing without you.
Homework question 1:
import java.util.*;
public class checkPrime {
public static int prime(int n) {
int flag = 1;
for (int i = 2; i < n; i++) {
if (n % i == 0) {
flag = 0;
break;
}
}
return flag;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.close();
if (prime(n) == 1) {
System.out.println("Prime");
} else {
System.out.println("Not Prime");
}
}
}
If I change my class name main to something name it's on working what's can I do?
what about number 9?
kia dhaansoo jhakaas explain kia hay biru! well done! 😎👍
ye Main Method, and class ka kia Funda hay boss?
@@syedarmaghanhassan4652 nothing diff. bro...both use for execute the code. if any function used in under class called method, used outer of class called function thats allll....😉
@@iamsarfraaz.official cool ho gya! 👍🏼
@@syedarmaghanhassan4652 thank God.... 🤘🏻🤘🏻😎
🙏respect for apna college.
No one can teach like Microsoft wali didi 😊
thanks mam for giving this type of knowledge your lacture is very helpful for everyone thank so much mam.
Keep going Microsoft Vale Didi.....
I truly love your way of teaching 😍
?????
@@jatinjain1587lmao
Your explanation is very nice dhidhi.. thank you
Exception handling topic mam plz discuss because your explanation is very helpful .....thank you mam👍
वो वक्त कुछ और था जब हम तुम्हारे दीवाने थे
अब तुम मुफ्त में भी मिलो तो कुबूल नहीं हो❤❤
Who Is Here Without Laptop Learning In Mobile Phone??😂😂
😂🤝🏻us
Na Bhai
I in Readme10A
😮
@@dipeshmishra5009 lol
I am from 7th Standard
I want to become a software
engineer in future
I am learning java
Thank you shardha didi
i Purchased a 2 lac course and coming here to understand the basic topics ....Keep going this is future of study
Which course?
This is really knowledgeable lecture for me. Thanks mam
Thank you Shradha.. 👍👍
6:08 those are not arguments, those are called parameters. arguments are those while calling the function and passing the value.
Didi your explanation is superb
Thankuu so much shraddha di for this amazing content ❤️❤️❤️❤️❤️❤️
public static void checkEvenOdd(int n) {
if(n%2==0) {
System.out.println("Even Number");
}
else {
System.out.println("Odd Number ");
}
return;
}
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
checkEvenOdd(n);
}
Thank you for this wonderful,amazing ,mindblowing video 🔥🔥🔥
love the way you are teaching .
Always waiting for this.🙂
Thank you.
ruclips.net/video/uODVKc8gNm4/видео.html
Programming Channel😊
Please watch once and share your reviews in comment box..
Best java course forever❤
best course yes it will take time but after completing it u will be rocking btw she is admiring
Best java playlist ❤
Thanks didi, it helps me a lot
Didi you really put a lot of hardwork in making these videos. Hats off to you ❤. I really build so much logic in programming after learning from your playlist. Going forward with a strong determination.
Thank you so much mam .. Your lectures are very helpful.
i really like the environment u teach in☘☘
You are doing great work 😉🔥🔥😎
Your lecture are so excited
Sir/didi can you provide more 2 lectures in the upcoming weekends please , the lectures your ur providing helping us lott.
Please can u ?
you are best teacher java
Thanks mam you are great in this world thank you so much mam
for factorial question i used conditional statement ;
import java.util.* ;
public class Functions {
public static int Factorials (int a) {
if(a == 0){
return 1 ;
}
return a * Factorials(a-1) ;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
System.out.println("factorial of " + a + " is " + Factorials(a));
}
}
I am in 10th class (ICSE) this playlist was really helpful for me
Hi
@@ShubhamSoni-iz5ky Hi
Am also
Very helpful and concept clearing
Thank you a lot
Sir i have very very respect for you
*gentle correction 'so much'
Love you Didi Your teaching style is so amazing 🤗🤗🤗❤❤❤ Thanks For Amazing course ❤❤❤
Pls keep subtitles also mam so that we can understand clearly because Some of them did not know hindi well mam
Yes please if possible
Add this lecture to play list
Di I am very interested your class.
And your experience 😘
Input pass === arguments
Input received === parameters
Aman bhaiya , please make a particular course for Nimcet.
I humble requesting you.
The best lecture for java that is shradha didi.💕👍
Plzz upload lec 6 HW Solution......thnx for this series 👍👍
do u stillwant them?
@@arnikakothari492 yeah bro can you send?
Thanks DiDi
Please make a set of videos of OOPS of Java, In how many days it will take to complete the full Java by following your videos?
This lecture helped me a lot thanks a lot.❤❤
Wonderful explanation
You r the best instructor in my whole life (and u got 110% rank)
Can't thank you enough ❤️
didi i am start to learn java from ur channel
and its really so nice
I am working in java development projects from over 2 years and now only I am realising the difference between function and methods, smh!
thanks a lot tho for clearing this out
great course till now.
thank you for this chapter to make it easy to solve
22 Sep Shradha 😂😂 noti gang knows 🤣
😆😆😆😆
Bhyi kya hota h 22 sept ko
😂 😂 😂 😂
??
Samaj nahi aya bro
very nice presentation
Time Stamps for important points 🧑💻
What is a Function -> 0:50
Syntax Of Function
Return type -> 2:30
Function name -> 5:00
Arguments -> 6:00
What happens in memory when a function is created -> 12:30
(stack frame concept)
function vs code -> 25:50
Thank You didi for helping us
Class 10 icse students here are op😂😂😂
Love this explanation.
Sharda didi name changed into windows Wali didi 🤣🤣
aap ka kam c++ wale course accha tha please make video by heart
Aman bhaiya please launch next hybrid centres 👃👃👃