Thank you very much sir. Literally i never saw a lecturer like u. Thank u man😊
@sdetpavan Жыл бұрын
You are most welcome
@sdetbyraviteja5688 ай бұрын
Well explained sir i am your huge fan of your subject and the way of your explanation 🎉❤❤❤❤❤
@sdetpavan8 ай бұрын
Glad to hear that
@littlecrafts168 Жыл бұрын
This is grt..found so many videos...but this is the best logic..thanks for ur grt effort
@sdetpavan Жыл бұрын
Welcome
@pramodpatil8852 жыл бұрын
Sir, the way you explain the chapters are really awesome. Will understand each and every concept clearly. Thanks a lot. 😊😊
@sdetpavan2 жыл бұрын
you are welcome
@shanat6676 ай бұрын
Best Teacher❤❤
@gauri9923 жыл бұрын
You explain it the best way thanks a lot sir...
@namcap5260 Жыл бұрын
The way you explained is simple and easy to understand your logic. Thanks a lot.
@sdetpavan Жыл бұрын
Welcome
@poojasingla32084 жыл бұрын
Osm ho sir aap Or apki voice toh 👌 Sida dil tk phuchne wali Love u sir g 😘😘😘
@NareshReddyP2 ай бұрын
Thank you very much.
@sdetpavan2 ай бұрын
You are welcome
@vishalcoder49642 жыл бұрын
Storing in an intermediate array and then doing the calculation is optimal way, just another way for this problem. ( An optimisation of recursion)
@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
@junaidahamad37253 жыл бұрын
easy Logic Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int a=0,b=1; for(int i=0;i
@NuanDaa2 жыл бұрын
there is no output
@Deepthi_Chowdary5321 Жыл бұрын
a=b; b=c; c=a+b; This also we can try
@pritypatil53093 жыл бұрын
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
@michaelrosenfeld80553 жыл бұрын
Thanks a lot for the clear explanation mister.
@sdetpavan2 жыл бұрын
You are welcome
@beingmadhurima Жыл бұрын
The entire series is so helpful.
@sdetpavan Жыл бұрын
Thanks
@kvelez Жыл бұрын
Great.
@sdetpavan Жыл бұрын
Thanks
@matejpetrovic266010 ай бұрын
Great explanation! can i just ask how should i calculate the sum of all fibonacci numbers? Someone help, thanks
@arjungopidis333 жыл бұрын
Nice, simple and understandable 👍
@sdetpavan2 жыл бұрын
Thanks
@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.
@nehajadhao84553 жыл бұрын
Simple ,and understandable thank u sir😇
@sdetpavan2 жыл бұрын
Welcome
@NareshReddyP2 ай бұрын
Thank U.
@sdetpavan2 ай бұрын
You're welcome
@suprajasupri5254 Жыл бұрын
super sir
@sdetpavan Жыл бұрын
Thanks
@arabindamohanty21904 жыл бұрын
Real u r great trainer 💯
@sdetpavan4 жыл бұрын
Thank you.
@mandeep34454 жыл бұрын
Thank you.
@sdetpavan2 жыл бұрын
Welcome
@shilpashravge5393 Жыл бұрын
thanks for explanation !
@sdetpavan Жыл бұрын
Welcome
@ranjeetkumarjha70192 жыл бұрын
Great sir
@sdetpavan2 жыл бұрын
Thanks
@vipintekade6400 Жыл бұрын
Hi Pavan can you share github url of these interview question series ?
@sunithamba7389 Жыл бұрын
Thank you somuch sir
@sdetpavan Жыл бұрын
Most welcome
@layan25242 жыл бұрын
Thank you so much
@sdetpavan2 жыл бұрын
You're most welcome
@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
@kratigaur15643 жыл бұрын
Sir how can I print the 1st and 2nd number without directly printing them
@ksdnsdkumar13752 жыл бұрын
Not possible.
@suiiiiii57982 ай бұрын
❤❤
@shaurya-qe8gt3 жыл бұрын
Hello Sir, can we start for loop from i=1 as i am not getting the reason for i =2
@iynesh073 жыл бұрын
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
@shubhamkatkade6112 жыл бұрын
I love you Mayu😘
@neelmoradiya1389 Жыл бұрын
🇮🇳🇮🇳🙏🙏👍👍
@kennyi12002 жыл бұрын
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