Recursion Questions - 3 | k multiples | Alternate Sum Series | | Lecture 30 | Java and DSA Course

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 76

  • @CollegeWallahbyPW
    @CollegeWallahbyPW  Год назад

    PW Skills is announcing the launch of the following programs,
    Binary Batch:- Java-with-DSA-&-System-Design (Java with DSA & System Design)
    pwskills.com/course/Java-with-DSA-and-system-design (Hindi)
    pwskills.com/course/Java-with-DSA-and-System-Design (English)
    Sigma Batch:- Full-Stack-Web-Development (MERN Stack)
    pwskills.com/course/Full-Stack-web-development (Hindi)
    pwskills.com/course/Full-Stack-Web-Development (English)
    Impact Batch:- Data-Science-Masters (Full Stack Data Science)
    pwskills.com/course/Data-Science-masters (Hindi)
    pwskills.com/course/Data-Science-Masters (English)

  • @Nebula_official_25
    @Nebula_official_25 Год назад +26

    I got your class after a long time please upload daily class🙏🙏🙏

  • @anushkatupe9502
    @anushkatupe9502 4 месяца назад

    I am watching all lectures from starting today is my 30 lectures completed thank you PW and thank you manvi mam❤❤❤

  • @RiantDadra
    @RiantDadra Год назад +3

    Manvi maam you are super duper awesome!! We just want you to please please pace this series rest of the things are excellent. Thankyou maam :)

  • @subhranshuswayampravadash4656
    @subhranshuswayampravadash4656 Год назад +6

    Mam, please upload your lectures daily .

  • @sanjupaul276
    @sanjupaul276 Год назад +9

    Mam happy new year 2023. Please give daily video.

  • @paliwalenterment6502
    @paliwalenterment6502 Год назад

    mem thanku very very much itana detail me padhane ke liye aap jiyo 100 saal ye duaa he hamari😅

  • @AbhayGupta-oz1ix
    @AbhayGupta-oz1ix 6 месяцев назад

    from being opaque in Recursion call stack , moving to translucent state . In depth explanation is in depth.

  • @ranjankumarbehera5548
    @ranjankumarbehera5548 Год назад +2

    Manvi Mam’s teaching process is 10/10. No doubt why I understand everything . Thank you Manvi Mam.

  • @MyGamingEra
    @MyGamingEra Год назад +12

    Ma'am we need lecture wise Notes and Assignment... Same as Previous 🥲PW skills 2.0 humhe purana wala hi shi tha🥲

  • @akhandsingh9440
    @akhandsingh9440 Год назад +5

    Please try to upload lectures on daily basis..

  • @amansinghrawat8794
    @amansinghrawat8794 3 месяца назад

    I’m not sure if you’ve seen my comment, ma'am, but your explanations are excellent. It’s amusing that just as you’re about to provide the answer, you begin to laugh slightly, which makes me laugh as well.😅😅

  • @amanrathore3610
    @amanrathore3610 Год назад

    your videos on recursion is on another level ,i patiently do whatever you told in previous videos now , i solved both question and create call stack by self
    tq mem
    ❤❤

  • @arushidhigurvar1459
    @arushidhigurvar1459 Год назад +3

    Mam please upload videos daily and also provide notes and assignment....
    It's a humble request to you mam

  • @anushkatupe9502
    @anushkatupe9502 4 месяца назад

    Manvi mam is greatest of all time❤❤❤

  • @RiantDadra
    @RiantDadra Год назад +5

    Guyies notes, assignments are on the end of playlist of this series on the website

    • @Garce2025
      @Garce2025 Год назад

      all notes are not available

    • @Garce2025
      @Garce2025 Год назад

      where is recursion notes?

    • @ShahbazKhan-eo6xr
      @ShahbazKhan-eo6xr Год назад

      Website mei cousre kidr hai? Plzz help🙂🙂

  • @traptijindal5678
    @traptijindal5678 Год назад

    i cracked this ques by myself
    public class multiple_of_n {
    static int multiple_n(int p,int k){
    if (k==1) return p;
    int small_wrk = multiple_n(p,k-1);
    return small_wrk+p;
    }
    public static void main(String[] args) {
    for (int i = 1; i < 4; i++) {
    System.out.println(multiple_n(5,i));
    }
    }
    }

  • @Timepassgaming04
    @Timepassgaming04 Год назад +1

    Please upload videos on daily basis.

  • @svedits7567
    @svedits7567 Год назад +2

    Happy new year everyone
    Marking my attendance

  • @Luffy_2804
    @Luffy_2804 Год назад

    Q2 :
    Tc : O(n)
    Sc : O(n)
    static int sumWithAlternateSigns(int num){
    if(num

  • @souviknandi5792
    @souviknandi5792 Год назад +1

    plz upload video regularly.......❤❤🙏🙏🙏🙏🙏🙏..like previous....either it'll very late to finish...🙏🙏

  • @devashishjaybhaye7258
    @devashishjaybhaye7258 Год назад +1

    Thank you MAam majha aya

  • @nishantpandey9241
    @nishantpandey9241 Год назад +3

    Mam plz upload videos timely.

  • @ShreyashSelukar
    @ShreyashSelukar Год назад +2

    Please add the DevOps bootcamp too

  • @Luffy_2804
    @Luffy_2804 Год назад

    Q1
    **Time Complexity: O(k)
    **Space Complexity: O(k)
    static void multiplesOfK(int num , int k){
    if(k==1 || k==0){
    System.out.print(num*k + " ");
    return;
    }
    multiplesOfK(num, k-1);
    System.out.print(num*k + " ");
    }

  • @Luffy_2804
    @Luffy_2804 Год назад

    46:20
    JINKO SAMJ NHI AYA UNKE LIYE
    EVEN NUMBER - 1 KARENGE TO HAMESH ODD MILEGA SO f(n-1) to odd h par jo n iske sath likh rhe h vo even hai
    isliye f(n-1) - n hai (return mai)
    if block mai

  • @johnsonsvaselly5008
    @johnsonsvaselly5008 Год назад +3

    Tq for coming back ma'am

  • @sheetalsharma1675
    @sheetalsharma1675 Год назад +1

    super mam

  • @Garce2025
    @Garce2025 Год назад

    Please upload videos regularly and please provide notes on time

  • @harshchouksey7740
    @harshchouksey7740 Год назад

    great lecture👍👍👍👍

  • @Luffy_2804
    @Luffy_2804 Год назад

    without checking solution
    Q1
    static void multiplesOfK(int num, int k) {
    if(k==0) return;
    multiplesOfK(num, k - 1);
    System.out.println(num * k);
    }

  • @sachinimpact3132
    @sachinimpact3132 Год назад

    Great ❤️ teacher

  • @lilajibhakate1391
    @lilajibhakate1391 Год назад +1

    Please add DevOps bootcamp too

  • @sanjupaul5996
    @sanjupaul5996 Год назад +1

    Happy new year mam.

  • @HrishikeshTule
    @HrishikeshTule Год назад

    thanks you mam for the lecture

  • @prakashshah7129
    @prakashshah7129 Год назад +1

    First 🙋

  • @vcIND18
    @vcIND18 Год назад

    ✅🚀

  • @sanjanashinde2559
    @sanjanashinde2559 Год назад

    Mam plz give us your all leactures notes and assignments

  • @amankumar-qw3jy
    @amankumar-qw3jy Год назад +1

    Ma'am how can upload my assigment solution on website

  • @dineshselukar5567
    @dineshselukar5567 Год назад

    Please add DevOps course also

  • @abhishekshrotriya6857
    @abhishekshrotriya6857 Год назад +1

    Mam hum soch rahe the ki ye RUclips classes band ho gyi 🥺

  • @pratiksutar133
    @pratiksutar133 Год назад

    how to submit Assignment ka video banaye na mam

  • @SachinBinjewar
    @SachinBinjewar Год назад

    mam plz make full das course 🙏

  • @Adarsh_Thakur365
    @Adarsh_Thakur365 Год назад

    Java ke notes kese milenge...?
    Pw skill website pe nahi pa raha hai....
    Help 🙏

  • @anasmohammed3723
    @anasmohammed3723 Год назад

    Mam kisi bhi lectures k notes show kyu nhi kr rha h????

  • @Niteshmaurya1234
    @Niteshmaurya1234 10 месяцев назад

    please provide notes and assignment🙏🙏

  • @ajinkyapopale2658
    @ajinkyapopale2658 Год назад +1

    madam practice assignments questions nhi dekh rhe pwskills ke website pr new course launch hone ke baad!

  • @rudrashrivastava4544
    @rudrashrivastava4544 Год назад

    S.o.p kbhi main m likte h kbhi static me yahi confusion h

  • @mayanksingh5461
    @mayanksingh5461 Год назад

    mam aap konsa editor aap use kar rahe ho ?

  • @thankyoupwandarvindarorasi3813
    @thankyoupwandarvindarorasi3813 3 месяца назад

    Who watch this on 2024
    hit like

  • @sumittiwari231
    @sumittiwari231 Год назад

    mam recursion ka notes hme nhi mil rha hai

  • @ajaykumartem
    @ajaykumartem Год назад

    Please provides notes

  • @i_foodie00
    @i_foodie00 Год назад

    day 2 of recursion prac. 23 sept

  • @chaitanyalatake5651
    @chaitanyalatake5651 Год назад

    Please upload lecture on daily basis

  • @ajaykumartem
    @ajaykumartem Год назад

    Es lectures ke notes hi nhi mil rhe or na hi Lecture 29 ke mile the

  • @divyanshutripathi5305
    @divyanshutripathi5305 Год назад

    First

  • @parthvyas3434
    @parthvyas3434 Год назад

    hello mam please request to next is flutter video uploaded mam

  • @sagarbharati1810
    @sagarbharati1810 Год назад

    Notes Dena kyu bnd kr diya

  • @smileysmith7219
    @smileysmith7219 Год назад

    Mam pls nimcet course if it is paid we can buy mam pla launch nimcet course on college wallah

  • @AbhishekKumar-zx3ps
    @AbhishekKumar-zx3ps Год назад +2

    Not able to access any notes, assignment after pw skill interface change.

    • @shibangigantayat490
      @shibangigantayat490 Год назад

      facing same prblm

    • @anasmohammed3723
      @anasmohammed3723 Год назад

      Aisa kyu ho rha h notes show kyu nhi kr rha h??

    • @AbhishekKumar-zx3ps
      @AbhishekKumar-zx3ps Год назад

      Notes are available if the video is available in pw skill website under resources but assignments and mcqs are not available.

    • @anasmohammed3723
      @anasmohammed3723 Год назад

      @@AbhishekKumar-zx3ps tum apna WhatsApp number de skte ho ??

  • @AbhishekKumar-zx3ps
    @AbhishekKumar-zx3ps Год назад +1

    It would be great if you could upload codes on github.

  • @raghavsinghal22
    @raghavsinghal22 Год назад

    Can you please make a dsa course in python?

  • @smileysmith7219
    @smileysmith7219 Год назад

    Mam pls nimcet course if it is paid we can buy mam pla launch nimcet course on college wallah