Frequently Asked Java Program 10: Generate Fibonacci series

  Рет қаралды 213,547

SDET- QA

SDET- QA

Күн бұрын

Пікірлер: 65
@Mahesh-d4n4h
@Mahesh-d4n4h 8 ай бұрын
Best explanation of fibonacci sequence
@sdetpavan
@sdetpavan 8 ай бұрын
Thanks
@Deepthi_Chowdary5321
@Deepthi_Chowdary5321 Жыл бұрын
Thank you very much sir. Literally i never saw a lecturer like u. Thank u man😊
@sdetpavan
@sdetpavan Жыл бұрын
You are most welcome
@sdetbyraviteja568
@sdetbyraviteja568 8 ай бұрын
Well explained sir i am your huge fan of your subject and the way of your explanation 🎉❤❤❤❤❤
@sdetpavan
@sdetpavan 8 ай бұрын
Glad to hear that
@littlecrafts168
@littlecrafts168 Жыл бұрын
This is grt..found so many videos...but this is the best logic..thanks for ur grt effort
@sdetpavan
@sdetpavan Жыл бұрын
Welcome
@pramodpatil885
@pramodpatil885 2 жыл бұрын
Sir, the way you explain the chapters are really awesome. Will understand each and every concept clearly. Thanks a lot. 😊😊
@sdetpavan
@sdetpavan 2 жыл бұрын
you are welcome
@shanat667
@shanat667 6 ай бұрын
Best Teacher❤❤
@gauri992
@gauri992 3 жыл бұрын
You explain it the best way thanks a lot sir...
@namcap5260
@namcap5260 Жыл бұрын
The way you explained is simple and easy to understand your logic. Thanks a lot.
@sdetpavan
@sdetpavan Жыл бұрын
Welcome
@poojasingla3208
@poojasingla3208 4 жыл бұрын
Osm ho sir aap Or apki voice toh 👌 Sida dil tk phuchne wali Love u sir g 😘😘😘
@NareshReddyP
@NareshReddyP 2 ай бұрын
Thank you very much.
@sdetpavan
@sdetpavan 2 ай бұрын
You are welcome
@vishalcoder4964
@vishalcoder4964 2 жыл бұрын
Storing in an intermediate array and then doing the calculation is optimal way, just another way for this problem. ( An optimisation of recursion)
@ratnalachandana5187
@ratnalachandana5187 Жыл бұрын
Sir your way of explanation is very good there is no words, in my Institute my trainer explained about this program but I didn't understand, from 2hrs I'm trying to understand😢, but at last I found your video... Is there any chance to contact with you...can you please reply me sir
@junaidahamad3725
@junaidahamad3725 3 жыл бұрын
easy Logic Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int a=0,b=1; for(int i=0;i
@NuanDaa
@NuanDaa 2 жыл бұрын
there is no output
@Deepthi_Chowdary5321
@Deepthi_Chowdary5321 Жыл бұрын
a=b; b=c; c=a+b; This also we can try
@pritypatil5309
@pritypatil5309 3 жыл бұрын
Sir fibanacci series different ways batane ke thena aap bohot avhhe se padahate ho aapke batane se ek hi baar man dima main baith jata hai tooo
@michaelrosenfeld8055
@michaelrosenfeld8055 3 жыл бұрын
Thanks a lot for the clear explanation mister.
@sdetpavan
@sdetpavan 2 жыл бұрын
You are welcome
@beingmadhurima
@beingmadhurima Жыл бұрын
The entire series is so helpful.
@sdetpavan
@sdetpavan Жыл бұрын
Thanks
@kvelez
@kvelez Жыл бұрын
Great.
@sdetpavan
@sdetpavan Жыл бұрын
Thanks
@matejpetrovic2660
@matejpetrovic2660 10 ай бұрын
Great explanation! can i just ask how should i calculate the sum of all fibonacci numbers? Someone help, thanks
@arjungopidis33
@arjungopidis33 3 жыл бұрын
Nice, simple and understandable 👍
@sdetpavan
@sdetpavan 2 жыл бұрын
Thanks
@AkhileshBhanarkar
@AkhileshBhanarkar Жыл бұрын
Hello sir, in for loop why the initialization starts with(int i=2)? is there any reason for that?? if we take i=0 then also it works.
@nehajadhao8455
@nehajadhao8455 3 жыл бұрын
Simple ,and understandable thank u sir😇
@sdetpavan
@sdetpavan 2 жыл бұрын
Welcome
@NareshReddyP
@NareshReddyP 2 ай бұрын
Thank U.
@sdetpavan
@sdetpavan 2 ай бұрын
You're welcome
@suprajasupri5254
@suprajasupri5254 Жыл бұрын
super sir
@sdetpavan
@sdetpavan Жыл бұрын
Thanks
@arabindamohanty2190
@arabindamohanty2190 4 жыл бұрын
Real u r great trainer 💯
@sdetpavan
@sdetpavan 4 жыл бұрын
Thank you.
@mandeep3445
@mandeep3445 4 жыл бұрын
Thank you.
@sdetpavan
@sdetpavan 2 жыл бұрын
Welcome
@shilpashravge5393
@shilpashravge5393 Жыл бұрын
thanks for explanation !
@sdetpavan
@sdetpavan Жыл бұрын
Welcome
@ranjeetkumarjha7019
@ranjeetkumarjha7019 2 жыл бұрын
Great sir
@sdetpavan
@sdetpavan 2 жыл бұрын
Thanks
@vipintekade6400
@vipintekade6400 Жыл бұрын
Hi Pavan can you share github url of these interview question series ?
@sunithamba7389
@sunithamba7389 Жыл бұрын
Thank you somuch sir
@sdetpavan
@sdetpavan Жыл бұрын
Most welcome
@layan2524
@layan2524 2 жыл бұрын
Thank you so much
@sdetpavan
@sdetpavan 2 жыл бұрын
You're most welcome
@shubhamsaurabh-ee7ev
@shubhamsaurabh-ee7ev Жыл бұрын
try this"/create a fabonacci series public class Program15 { public static void main(String[] args) { ArrayList arr = new ArrayList(Arrays.asList(0,1)); for(int i = 2;i
@kratigaur1564
@kratigaur1564 3 жыл бұрын
Sir how can I print the 1st and 2nd number without directly printing them
@ksdnsdkumar1375
@ksdnsdkumar1375 2 жыл бұрын
Not possible.
@suiiiiii5798
@suiiiiii5798 2 ай бұрын
❤❤
@shaurya-qe8gt
@shaurya-qe8gt 3 жыл бұрын
Hello Sir, can we start for loop from i=1 as i am not getting the reason for i =2
@iynesh07
@iynesh07 3 жыл бұрын
We have already printed the first 2 terms that is the reason we start from i=2 for convinience...You can also do with i=1;i
@shubhamkatkade611
@shubhamkatkade611 2 жыл бұрын
I love you Mayu😘
@neelmoradiya1389
@neelmoradiya1389 Жыл бұрын
🇮🇳🇮🇳🙏🙏👍👍
@kennyi1200
@kennyi1200 2 жыл бұрын
And let it be upgraded version from me import java.util.*; public class FibonachiSeries { public static void main(String[] args) { Scanner scnum=new Scanner(System.in); System.out.println("Enter the first fibonachi number:"); int num1=scnum.nextInt(); System.out.println("Enter the second fibonachi number:"); int num2=scnum.nextInt(); System.out.println("Enter the fibonachi series number and let's find the number in this series."); int series=scnum.nextInt(); int sum=0; System.out.print("The fibonachi number series is => \t"); System.out.print("F1=" + num1 + "\tF2=" + num2 + "\t"); // By using the fibonachi logic for(int i=3; i
@topricano9964
@topricano9964 10 ай бұрын
Thanku very very much ... Teaching very clearly ✨
@sdetpavan
@sdetpavan 10 ай бұрын
You're welcome
@aries2aqua
@aries2aqua 2 жыл бұрын
Thank you
@sdetpavan
@sdetpavan 2 жыл бұрын
welcome
Fibonacci Series In Java With Recursion - Full Tutorial (FAST Algorithm)
15:11
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
La La Life Shorts
Рет қаралды 3,7 МЛН
They Chose Kindness Over Abuse in Their Team #shorts
00:20
I migliori trucchetti di Fabiosa
Рет қаралды 12 МЛН
КОГДА К БАТЕ ПРИШЕЛ ДРУГ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 7 МЛН
How to solve any Star Pattern Program
18:47
Simply Coding
Рет қаралды 1,2 МЛН
Java Program #8 - Fibonacci Series of Numbers in Java
6:36
Programming For Beginners
Рет қаралды 30 М.
Check Two Strings are Anagram Or Not using Sort and Equals in Java
11:10
Naveen AutomationLabs
Рет қаралды 30 М.
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
La La Life Shorts
Рет қаралды 3,7 МЛН