perfect short project to help beginners to learn and enjoy any language..excellent efforts sir ...What a video to learn java, such videos help to develop interest in what we are learning. All the best
I think in last step in he video! next line to ("enter a valid pin"); you should call the method checkpin(); instead of calling menu(), because if the wrong pin is entered it will again ask user to enter a pin.
Bro this video is incredible!! Please upgrade the same code including some other OOPs concepts, I want to place this project on my resume. Thanks a lot, bro 🙌🙌🙌🙌
Instead of using if else for function call and returning to menu method again after successfully executing the different methods like withdrawl and etc we can use Switch statements and do while loop (with while condition as while(opt!=4)
Bro Wrong Pin me menu ko kyu call karna wo to system me chal jayeaga instead public void checkPin() { System.out.println("Enter your PIN :"); Scanner sc = new Scanner(System.in); int enteredPin = sc.nextInt(); if(enteredPin == PIN) { menu(); }else { System.out.println("Enter a valid pin"); int a = sc.nextInt(); checkPin(); }
Hi, After invalid pin hum checkpin(); method ko call karege because humme Enter pin ka option chahiye. menu(); method se hum pin security breach karr rahee hai. Please cross check again
you did a mistake in your code in "Pin" whether user enter a valid PIN or not he/she will be directly jump into the menu, then what is the use of the PIN? "as u mentioned if PIN is correct jump into menu(); and if its incorrect still jump into menu(); "
enter a valid pin k baad agar menu de denge to v to sara process ho jayega jaise sahi pin dene pr ho rha to hume aisa kuch krna chahiye ki jbtk sahi pin nhi de tbtk menu ka option nhi aaye....BTW You are Amazing
one mistake if user entered wrong pint they shoud not go to menu they should again enter the pin at end of checkpin() method insted of menu() it should be checkpin() - recursion
Bro all good but in the last if we add at checkpin at there in else condition menu then it not working it directly opning the account of that person look that part once
Bro plzz modify it by adding : 1. Please insert your card 2. Verifying card...... 3. Verified successfully Iske bad pir enter pin option Also add MINI STATEMENT option plzzz
perfect short project to help beginners to learn and enjoy any language..excellent effort bro ...
perfect short project to help beginners to learn and enjoy any language..excellent efforts sir ...What a video to learn java, such videos help to develop interest in what we are learning. All the best
Really your explanations is very awesome 🔥🔥 Hatts off to u bro.. waiting for this type of video. Again Thank you
I think in last step in he video! next line to ("enter a valid pin"); you should call the method checkpin(); instead of calling menu(), because if the wrong pin is entered it will again ask user to enter a pin.
you are right bro
Yes this is a big mistake
What a video to learn java, such videos help to develop interest in what we are learning. All the best
Good ! Explanation was very clear of each point and it is easy to understand. Many Thanks !
Glad it was helpful!
@@indianprogrammer0001 bhai Package per Error aa raha kaise fix kare, koi package install karna hai kya pahle, please guide.
Thnks a lot bro👍🏿....Was stuck in this ques and now it's solved..
very simple, beginner friendly,just love it
Glad you like it!
Maja aagaya bro! Concept ke saat saat project. God bless you>>>>
Video and audio quality is like a pro youtuber
And also the content is really dope
Keep it up bro 💪
Bro this video is incredible!! Please upgrade the same code including some other OOPs concepts, I want to place this project on my resume. Thanks a lot, bro 🙌🙌🙌🙌
Thanks man, I’ll consider your suggestion please subscribe the channel to get the notification for new videos.
Very nice project brother for beginners and your all project also be very helpful and easy to understand for beginners
This is just awesome🙌. Loved it❣. Thank you so much.
Instead of using if else for function call and returning to menu method again after successfully executing the different methods like withdrawl and etc we can use
Switch statements and do while loop (with while condition as while(opt!=4)
The way he said " mat karna vai bohot basic he majak ban jayegi " really funny 😂😂
love you the way you teaches us ........thanks a tons bro
sir mazza a gya sir
nice one...
This is amazing. ..
Please make more vedios on java project
thank you soo much sir . it's really helpful and easy to understand
Great Explantion bro
In Checkpin function we have to call checkpin() function not the menu() function below the line "Enter Vali PIN !"
seam heare
Bro Wrong Pin me menu ko kyu call karna wo to system me chal jayeaga instead
public void checkPin() {
System.out.println("Enter your PIN :");
Scanner sc = new Scanner(System.in);
int enteredPin = sc.nextInt();
if(enteredPin == PIN) {
menu();
}else {
System.out.println("Enter a valid pin");
int a = sc.nextInt();
checkPin();
}
Amazing Brother and Great Explanation... ✨
Thanks Sir it helps a lot
kya baat ladke , good work yr keep it up
Thank you brother for this all 👍keep it up
awesome content,, bro
Excellent content with a thorough explanation......Thank you😊
س،د
great explanation
Hi,
After invalid pin hum checkpin(); method ko call karege because humme Enter pin ka option chahiye. menu(); method se hum pin security breach karr rahee hai. Please cross check again
Thankyou learn and implement liked it thanks
Please do watch the whole playlist in the same sequence and let me know your valuable reviews 😊
bro can u please share me the source its not working for me
@@indianprogrammer0001 bhai Package per Error aa raha hai kaise fix kare, koi package install karna hai kya pahle, please guide
Bro please can you add code in description for better practice.. and thanks for this video❤
hlo sir ess video me aap last me invalid pin massage k bad menu method ki jagah checkpin method hoga sir
thanks indian programmer
super explanation bro
Good explanation
Literally bro I like your content , keep growing
amazing bro, Thank you!
excilent bro
Simple and supper
Bro you added menu(); bymistakely ...but I guess it should be checkpin(); at the end of the video in else condition
Thanku so much☺️
Please make the more videos on oops concepts projects
you did a mistake in your code in "Pin" whether user enter a valid PIN or not he/she will be directly jump into the menu, then what is the use of the PIN? "as u mentioned if PIN is correct jump into menu(); and if its incorrect still jump into menu(); "
Ya instead of calling the menu() call checkpin() it works properly.
Yepp I do the same😂 RECURSIVE CALL
Jo bhi kho bhaiya ne smjhaya jbardst hai
@@saurabhdwivedi7699yes sale sab samja kyu nahi rahe small mistake hai isame itani baval khadi kar eahe hai.
enter a valid pin k baad agar menu de denge to v to sara process ho jayega jaise sahi pin dene pr ho rha to hume aisa kuch krna chahiye ki jbtk sahi pin nhi de tbtk menu ka option nhi aaye....BTW You are Amazing
enter a valid pin ke badd checkpin() ko call karwa lo
Keep it up
Awesome thank you 😊
You’re welcome 😊
brother if you call an menu after else condition it will call menu and show invalid pin ! so why the hell user enter a valid pin ?
one mistake if user entered wrong pint they shoud not go to menu they should again enter the pin at end of checkpin() method insted of menu() it should be checkpin() - recursion
Can anyone please tell why did he use " package ATMMachine; "??
Coz if im using this statement, it is not working
package use nhi karna hai to open project me code work karo
Make videos on DSA bro😊
Hi sir , please provide code in description for practice
float ke badle double bhi to use kar sakte hai
Are you using intelliJ IDEA platform... ?
hi can you upload this code on your github...its very clear and helpful
Switch case use krenge toh option select krne ke liye
is it a vs code or any other?\
Thank u bro
love you ho gyaa baii
Bro all good but in the last if we add at checkpin at there in else condition menu then it not working it directly opning the account of that person look that part once
Thanks
software konsa use kar rahe to run the code.? #IndianProgrammer
and uska pura installation guide share karoge.?
Intellij 9:57
Welldone bro for explaining ! but invalid pin k case mai Checkpin() dobara call kare gy menu() nahi
Can I use this as a mini project in cllg?
Better to use private methods for withdrawl , deposit and checking balance.
We want more
If user enters invalid pin then how should we call menu function?
Menu function must be called for valid pin and not for invalid pin.
correct
Can i put it to my resume
Thank you
You're welcome
Bhaii waha menu(); nahi checkpin(); hoga nahi to pin glt enter krne ke baad bhi hum log menu mei phuch jayenge
can give brafe explanation on oops concepts as interview qutestions and your channel havae no new videos since many days please consider my request
Very Hard work done by You bro But also give source code
thanks
Bro plzz modify it by adding :
1. Please insert your card
2. Verifying card......
3. Verified successfully
Iske bad pir enter pin option
Also add
MINI STATEMENT option plzzz
👌👍
Bro we need more videos 🙏
please subscribe more videos are coming
You have called menu when the pin is wrong. That means it will do the transaction even when the pin is wrong.....
kya me is chotasa project ko apne resume pe dal sakti hu
fire❤🔥🔥
❤❤
Bro one error for starting else and opt 1
BRO, KYA HUM ISS DEGREE MAIE AS A PROJECT BANA SAKTE HAI ?? I SELECTED THAT'S WHY..
Bana sakte ho but ye bahut initial hai iske baad upgrade karna
KOI MUJHE BATAYA GA KI YEH BHAI KONSA SOFTWARE SE BANARAHE HAI YA KONSI APP INSTALL KI HAI PLSS
Intellij Idea Bro it’s an IDE provided by JetBrains and absolutely free of cost.
@@indianprogrammer0001 THANKS A LOT BROTHER..💌💌
Bhai plz reply code likha kisme hai ?? Like NetBeans or eclipse??
Intellij me likha hai jetbrains ka IDE hai
ATM Machine : "Invalid Pin"
Bank SMS : "Your Balance is now 0.00" 😭
bro can i add this project in our resume as a fresher?
No
Konse graduation ke batch ho aap?
@@RangeethaRRK 21-25
Sir please give me a final year project for resume
Bhai is ka Source Code Milay Ga
👍
source code ?
Bhai yar iska source code bhi de dete
source code please provide
Tell me in english
Good explanation
thank you