How To Begin Learning DSA In C++? | Amazing Way To Begin Learning DSA In C++ | Coding Ninjas

Поділитися
Вставка
  • Опубліковано 13 вер 2024
  • Register for Free Full Stack Web Development Webinar: bit.ly/3Z1zTOw
    Smash that 'Like' button and hit 'Subscribe' to stay ahead in the coding game. Let's go on this coding adventure together! 💫
    For Free resources check out: bit.ly/3TuRBGN
    Playlists curated for our students: 👇
    ✅Get Best mentorship from Ankush Sir in Ankushwaani: bit.ly/48Yolwt
    ✅Aptitude Preparation: bit.ly/4cgL5L2
    ✅Coding Ninjas Success Stories: bit.ly/48U83oH

КОМЕНТАРІ • 124

  • @CodingNinjasIndia
    @CodingNinjasIndia  Рік тому +11

    Get COURSES For FREE Using This Scholarship Test. Register Here Now: www.codingninjas.com/landing/scholarship-test/?
    BEST FREE Resource To Learn DSA, C++, Python, Java, Web Development, Competitive Programming, CLICK HERE: www.codingninjas.com/codestudio/guided-paths?November22
    PLAYLIST: Operating Systems Full Course By Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6Tn-eqehIIqqV3auXi3gajN.html
    PLAYLIST: DBMS Full Course By Coding Ninjasua-cam.com/play/PLrk5tgtnMN6RP0PMnyBVI15N_phCQevZM.html
    PLAYLIST: Success Stories By Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6QKbODGF49a6vGFWzmAS21J.html
    PLAYLIST: WEB DEVELOPMENT Full Course by Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6TNuhUEf5-UgPxa1wu-l6kP.html
    PLAYLIST: DSA in PYTHON Full Course by Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6TYBW0-U4YhIRyYEVpqVEnJ.html
    (Playlist) Top DSA Interview Questions By Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6QpjNWjAym3wbqe8dhj5x_x.html
    (Playlist) Data Structures And Algorithms In C++ Full Course By Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6RROlCDCwFVlbtuB9yHDpzw.html
    (Playlist) Data Structures And Algorithms in Java Full Course by Coding Ninjas: ua-cam.com/play/PLrk5tgtnMN6StFV60jlQ9W-RXyHppbp8G.html
    Practice Coding On Top Interview Questions For FREE: www.codingninjas.com/codestudio/problems?Nov
    In this video, we will be talking about how to begin learning DSA In C++?

    • @_let_me_check_338
      @_let_me_check_338 Рік тому

      Option C: 4 3 2 1

    • @heetgudhka2731
      @heetgudhka2731 Рік тому

      I have given the first reply to the quiz please let me know if I am the winner. thank you

  • @parthsharma5966
    @parthsharma5966 Рік тому +3

    The answer for the contest is C) that is "4321" and this is because stack follows LIFO, which means that the element inserted at the last will be removed first.

  • @arunsharma8178
    @arunsharma8178 Рік тому +2

    Option C is correct because stack is follow LIFO

  • @AniketKumar-tc8cz
    @AniketKumar-tc8cz Рік тому

    C) 4,3,2,1
    Since, stack is based on Last In First Out (LIFO); element entered last will come out first.

  • @veenuchhabra3062
    @veenuchhabra3062 Рік тому +1

    C 4321 will be the order as it would come out in reverse order LIFO last in first out

  • @dipkumardas3941
    @dipkumardas3941 Рік тому +1

    Option C. 4 3 2 1

  • @therajur
    @therajur Рік тому +1

    C: 4 3 2 1
    Explanation : the stack follows LIFO (last in first out) order so the last element will be popped out first
    And Make the order similar to C
    First 4 popped
    Second 3 popped
    Third 2 popped
    Fourth 1 popped
    So the order will be 4 3 2 1

  • @tejaswaroop.m1963
    @tejaswaroop.m1963 Рік тому

    The answer to the question is 4,3,2,1 because in the stack first in last out rule followed.

  • @SauravSaha09
    @SauravSaha09 Рік тому

    c) 4321 - because the stack follows LIFO- Last in first out!

  • @yatinsabikhi
    @yatinsabikhi Рік тому +1

    Option C : 4321

  • @ankitmajee
    @ankitmajee Рік тому +1

    C. 4 3 2 1
    Stack follows LIFO

  • @dammanprathap3
    @dammanprathap3 Рік тому

    option: C
    Reason:
    As stack follows LIFO(last in first out).

  • @premjeetk8292
    @premjeetk8292 Рік тому +1

    Best Roadmap 🔥

    • @CodingNinjasIndia
      @CodingNinjasIndia  Рік тому

      Hey
      Thank you for your kind words! We hope that you found this video informative! You can now get Scholarship (Discount) on ALL CODING NINJAS COURSES Using This SCHOLARSHIP TEST. Register Here Now: www.codingninjas.com/landing/scholarship-test/?
      Stay tuned to Coding Ninjas UA-cam channel for more! Happy Learning!

  • @pritishpatra542
    @pritishpatra542 Рік тому

    4,3,2 n 1.... like picking from top to bottom if kept in a vessel

  • @apekshajain6776
    @apekshajain6776 Рік тому

    Ans is 4, 3,2,1 as stack follows last in first out property

  • @anujyadav8513
    @anujyadav8513 Рік тому +1

    The answer is option c - 4 3 2 1 (LIFO)

  • @alhadisocialmedia9063
    @alhadisocialmedia9063 Рік тому

    Option C is right 4,3,2,1 will be the order for the removal

  • @vishal8277
    @vishal8277 Рік тому

    4 3 2 1
    I bought the mern stack development course premium course which includes dsa,really excited to start the batch from nov 14th...🙌

  • @jaivindomadiya7454
    @jaivindomadiya7454 Рік тому

    Ans: C . 4,3,2,1
    because Stack works like LIFO (Last in First Out)

  • @vsivasubramani6456
    @vsivasubramani6456 Рік тому +1

    #stack
    C.4321

  • @yuvraj0047
    @yuvraj0047 Рік тому

    Option C (4,3,2,1) as stack is Last In First Out data structure

  • @kkansal171
    @kkansal171 Рік тому +1

    Option C is correct✅

  • @debajyotihui5721
    @debajyotihui5721 Рік тому

    option C. 4,3,2,1 [as stack is Last In First Out data structure]

  • @AmanTiwari-ww7td
    @AmanTiwari-ww7td Рік тому

    the order of removal is.=4,3,2,1

  • @syedusmankhalid8718
    @syedusmankhalid8718 Рік тому +1

    Answer is C

  • @nitinrana5290
    @nitinrana5290 Рік тому

    Answer is c i. e 4,3,2,1 last in first out logic in stack

  • @AshutoshKumar-of7ne
    @AshutoshKumar-of7ne Рік тому

    Ans is
    c) 4 3 2 1
    As stack is Lifo structure.

  • @vijayanks1714
    @vijayanks1714 Рік тому

    ans for stack : option a (1,2,3,4)

  • @shadabhussain147
    @shadabhussain147 Рік тому

    Option C is correct!

  • @subhamdey5507
    @subhamdey5507 Рік тому

    The answer of the quiz is option c-4,3,2,1

  • @flsh1343
    @flsh1343 Рік тому +1

    C is the correct answer 4321.

  • @harsharaju4376
    @harsharaju4376 Рік тому

    C: 4,3,2,1

  • @syfur
    @syfur Рік тому

    Quiz answer: C (4, 3, 2, 1)

  • @triloki.indiawale
    @triloki.indiawale Рік тому

    C. 4,3,2,1

  • @sanskrutimagdum1226
    @sanskrutimagdum1226 Рік тому

    Answer : C. 4,3,2,1

  • @532hariharareddyg5
    @532hariharareddyg5 Рік тому

    4 3 2 1 its because stack is last in first out datastructure.

  • @achyuthnamburi4185
    @achyuthnamburi4185 Рік тому

    5:57 option C

  • @YaseenYaseen-qx7uj
    @YaseenYaseen-qx7uj Рік тому

    Option C

  • @avanisethia7629
    @avanisethia7629 Рік тому

    Answer- 4321
    LIFO

  • @anshulgarg3018
    @anshulgarg3018 Рік тому

    C is the right option

  • @tanusinghal820
    @tanusinghal820 Рік тому

    option C

  • @top190
    @top190 Рік тому

    Obviously It's C Sir LIFO concept

  • @akankshaawasthi3932
    @akankshaawasthi3932 Рік тому

    Sir for maths part where should we learn it .

  • @MittuRohith
    @MittuRohith Рік тому

    Option c:: 4321

  • @arnav9874
    @arnav9874 Рік тому

    Order of the output is= 4321

  • @gkushwanth2277
    @gkushwanth2277 Рік тому

    Option c

  • @alokupadhayay4189
    @alokupadhayay4189 Рік тому

    The answer is option (C) 4,3,2,1

  • @ICCCricketCounci
    @ICCCricketCounci Рік тому

    Q.1(ans) c.4,3,2,1

  • @pratyushtripathi1728
    @pratyushtripathi1728 Рік тому +1

    Answer= C. 4321

  • @heetgudhka2731
    @heetgudhka2731 Рік тому

    Option C 4321

  • @aayushisharma3223
    @aayushisharma3223 Рік тому

    C 4,3,2,1

  • @abhishekmathur1042
    @abhishekmathur1042 Рік тому

    d.4,3,2,1

  • @sumeshsingh8241
    @sumeshsingh8241 Рік тому

    Answer is C : 4 3 2 1.

  • @guraashishsachdeva125
    @guraashishsachdeva125 Рік тому

    Answer is (C) 4321

  • @manishthakur8050
    @manishthakur8050 Рік тому

    Ans is option c
    4321

  • @Rajendrakumar-bo3ym
    @Rajendrakumar-bo3ym Рік тому

    Options C is 4321

  • @margamvinay
    @margamvinay Рік тому +1

    Bro DSA in C and C++ same or different

    • @margamvinay
      @margamvinay Рік тому

      Give reply

    • @ankitmajee
      @ankitmajee Рік тому

      Same just printf scanf ka jaga cout cin
      Or jo kuch C mai hota hai wo sab CPP mai v run karta hai
      Iska matlab hmlog scanf aur printf cpp mai v use kar sakty hai
      Bus cpp mai oops principal new hai or STL baki sab same hai

  • @monushaw5949
    @monushaw5949 Рік тому +1

    C

  • @Knowledge.-.
    @Knowledge.-. Рік тому

    The ans is C : 4 3 2 1

  • @Sxy_memees
    @Sxy_memees Рік тому +1

    The answer 4 3 2 1

  • @8yogi
    @8yogi Рік тому

    option c 4321

  • @sarangmusicx
    @sarangmusicx Рік тому

    Ans C : 4321

  • @JaySharma-yp5td
    @JaySharma-yp5td Рік тому

    Answer to the quiz question :-
    C. 4 3 2 1

  • @piyushgarg41
    @piyushgarg41 Рік тому

    The answer is 4 3 2 1

  • @23muniraja
    @23muniraja Рік тому

    4321 option c

  • @paraschauhan862
    @paraschauhan862 Рік тому

    4,3,2,1

  • @JINVERMA
    @JINVERMA Рік тому

    Answer is 1234

  • @akashkishore7641
    @akashkishore7641 Рік тому

    Ans : Option C. 4 3 2 1

  • @rohitgoswami841
    @rohitgoswami841 Рік тому

    C:- 4321

  • @VIMALPLAYS
    @VIMALPLAYS Рік тому

    atleast give english caption sir!!!!!!!

  • @indnexus4266
    @indnexus4266 Рік тому

    Uwais Khan and should be 4321

  • @miliaurora1038
    @miliaurora1038 Рік тому

    4 3 2 1 ....this is easy

  • @akankshaawasthi3932
    @akankshaawasthi3932 Рік тому

    C- 4321

  • @AmarKumar-ry3yf
    @AmarKumar-ry3yf Рік тому

    C=4321

  • @yuvrajsingh852
    @yuvrajsingh852 Рік тому

    C. 4 3 2 1

  • @ishratalikhan1998
    @ishratalikhan1998 Рік тому

    Shayad c hai

  • @tariqullah1639
    @tariqullah1639 Рік тому

    A 4 3 2 1

  • @indnexus4266
    @indnexus4266 Рік тому

    4321

  • @Myeditz705
    @Myeditz705 Рік тому

    4321 lifo

  • @gujaratinimoj3845
    @gujaratinimoj3845 Рік тому

    Answer is c). 4 3 2 1

  • @mayurkumar3646
    @mayurkumar3646 Рік тому

    Ans 4 3 2 1

  • @khansiddique
    @khansiddique Рік тому

    C. 4.3.2.1

  • @_let_me_check_338
    @_let_me_check_338 Рік тому

    Option C: 4 3 2 1

  • @anirudhsingh8008
    @anirudhsingh8008 Рік тому

    C, lifo 4 3 2 1

  • @alok____paul
    @alok____paul Рік тому

    D. 4 3 2 1

  • @dineshm.b9289
    @dineshm.b9289 Рік тому

    C) 4 3 2 1

  • @jaswanthcreations985
    @jaswanthcreations985 Рік тому

    Removal order: 4,3,2,1
    @codingninjas

  • @rayedahmed3983
    @rayedahmed3983 Рік тому

    4 3 2 1

  • @its_sagar371
    @its_sagar371 Рік тому +1

    Option C
    4 3 2 1

  • @Ashutosh7e
    @Ashutosh7e Рік тому

    C. 4,3,2,1

  • @aayushisharma3223
    @aayushisharma3223 Рік тому

    C 4,3,2,1

  • @devanshsharma4785
    @devanshsharma4785 Рік тому +1

    C

  • @Aadeshentrepreneur.
    @Aadeshentrepreneur. Рік тому

    The answer is 4 3 2 1

  • @vision6410
    @vision6410 Рік тому

    4,3,2,1

  • @udanzo19
    @udanzo19 Рік тому

    C 4321

  • @Sharply_
    @Sharply_ Рік тому

    C. 4 3 2 1

  • @himanshagrawal3155
    @himanshagrawal3155 Рік тому

    4321

  • @kunalnarkhede233
    @kunalnarkhede233 Рік тому

    4 3 2 1

  • @sauravjaiswal5970
    @sauravjaiswal5970 Рік тому

    4,3,2,1

  • @ginusamuel9967
    @ginusamuel9967 Рік тому

    C