STACK IMPLEMENTATION | Push, Pop, Display | Class 12 Python | Computer Science for Board

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 272

  • @TofuMilkbread
    @TofuMilkbread 2 ปีที่แล้ว +157

    CODE:
    s=[]
    top=None
    def isEmpty(stk):
    if stk==[]:
    return True
    else:
    return False
    def push(stk,item):
    s.append(item)
    top=len(stk)-1
    def spop(stk):
    if(isEmpty(stk)):
    return('UnderFlow!')
    else:
    i = stk.pop()
    if(len(stk) ==0):
    top=None
    else:
    top=top-1
    return i
    def peek(stk):
    if isEmpty(stk):
    return('underflow')
    else:
    top=len(stk)-1
    return(stk[top])
    def display(stk):
    if(isEmpty(stk)):
    print('Stack is empty!')
    else:
    top=len(stk)-1
    print(stk[top],'

  • @grin2groin._.624
    @grin2groin._.624 ปีที่แล้ว +36

    Namaste Harsh sir.
    Mein abhi abhi scl se half yearly exams deke aa rha hu.
    Aapke python ke videos mein last 3 days se follow kar rha hu aur sir aaj sahi mein exam hall mein paper deke khushi hua.
    Thank you sir.
    Aapke lectures bahut helpful hai.
    Kam time mein best way hai ye series python sikhne ke liye.

  • @devyanshgupta2901
    @devyanshgupta2901 8 หลายเดือนก่อน +47

    best of luck everyone jiska bhi subah exam hai

  • @gamerzzhub5964
    @gamerzzhub5964 8 หลายเดือนก่อน +98

    kis kis ka exam kl hai???

    • @24rage
      @24rage 8 หลายเดือนก่อน +6

      Bhai dimg sahi hai ?sabka kal he hoga

    • @atozgaming7536
      @atozgaming7536 8 หลายเดือนก่อน +4

      lol mera bhi hai kl,
      good luck aapko bhi 👍

    • @PeachePeache-o7w
      @PeachePeache-o7w 8 หลายเดือนก่อน +1

      Samjh ni aara kuch🤧🤧

    • @sim4373
      @sim4373 8 หลายเดือนก่อน

      ​@@24ragerude

    • @jitinkumar124
      @jitinkumar124 8 หลายเดือนก่อน +1

      Aaj h😅

  • @nishantpanda848
    @nishantpanda848 2 ปีที่แล้ว +84

    11:25 the most epic part🤣🤣🤣

  • @epiccube8594
    @epiccube8594 8 หลายเดือนก่อน +8

    All the best to all for today's exam

  • @nathenmathew5667
    @nathenmathew5667 3 ปีที่แล้ว +60

    pls post notes for this video notes are the best parts of the series

    • @ignaitog
      @ignaitog ปีที่แล้ว +5

      Abbe Yeh code h Iske koi notes thodi hain lmao

  • @divyanshujod
    @divyanshujod 3 ปีที่แล้ว +19

    Best in the world "Aman dhattarwal" zabardast.

  • @horde479
    @horde479 2 ปีที่แล้ว +12

    i tried writing the code :D
    s = []
    top = None
    def isEmpty(stk):
    if stk==[]:
    return True
    else:
    return False
    def push(stk,item):
    stk.append(item)

    def pop(stk):
    if(isEmpty(stk)):
    return('UnderFlow')
    else:
    i = stk.pop()
    return i
    def peek(stk):
    if isEmpty(stk):
    return('underflow')
    else:
    return(stk[len(stk)-1])
    def display(stk):
    if(isEmpty(stk)):
    print('Stack is empty!')
    else:
    top=len(stk)-1
    print(stk[top],'

  • @gauravkaushik9384
    @gauravkaushik9384 2 ปีที่แล้ว +15

    def Push(stk,item):
    stk.append(item)
    print("Item is added successfully to the stack")
    def Pop(stk):
    if stk==[]:
    print("Stack is already Empty")
    else:
    stk.pop()
    def Display(stk):
    a=stk[::-1]
    print(a)
    stk=[]
    while True:

    print("1.Push
    2.Pop
    3.Display")
    ch=int(input("Enter Your Choice:::"))
    if ch==1:
    no.=int(input("Enter no. to be added:::"))
    Push(stk,no.)
    if ch==2:
    Pop(stk)
    if ch==3:
    Display(stk)

    • @Rbrnrntbetntybet
      @Rbrnrntbetntybet 2 ปีที่แล้ว +2

      Thodan jyada he 'if' use kar diya . All the best for cs exam.

    • @MadMax-fs3cy
      @MadMax-fs3cy 2 ปีที่แล้ว

      @@Rbrnrntbetntybet elif hoga right?

    • @mrsprite399
      @mrsprite399 2 ปีที่แล้ว

      @@MadMax-fs3cy
      Haa
      If ch==1 ke baad elif= 2, 3,4...etc hoga

    • @GamingBeastR4W
      @GamingBeastR4W 2 ปีที่แล้ว

      @@MadMax-fs3cy else bhi hoga last me
      if -elif - else

    • @Shubham-oo8vv
      @Shubham-oo8vv 2 ปีที่แล้ว

      Item is not defined

  • @manasgupta7724
    @manasgupta7724 8 หลายเดือนก่อน +3

    5:15 sir but agar hame shrif peek karna hai to ham direct -1 index bhi to print kara sakate hai wo bhi to top he hai

    • @vivaanreddy8771
      @vivaanreddy8771 8 หลายเดือนก่อน

      stack = []
      def push(stk, item):
      stk.append(item)
      def pop(stk):
      if not stk:
      return 'Underflow!'
      return stk.pop()
      def peek(stk):
      if not stk:
      return 'Underflow!'
      return stk[-1]
      def display(stk):
      if not stk:
      print('Stack is empty!')
      else:
      print('Top of the stack: ', stk[-1])
      print('Stack elements:')
      for item in reversed(stk):
      print(item)
      while True:
      choice = input('''STACK IMPLEMENTATION
      1. PUSH
      2. POP
      3. PEEK
      4. DISPLAY
      5. EXIT
      Enter your choice (1-5): ''')

      if choice == '1':
      item = int(input("Enter the item you want to push: "))
      push(stack, item)
      print(item,' added successfully')

      elif choice == '2':
      item = pop(stack)
      if item == 'Underflow!':
      print('Stack is empty')
      else:
      print(item,' popped from the stack')

      elif choice == '3':
      item = peek(stack)
      if item == 'Underflow!':
      print('Stack is empty')
      else:
      print('%d is at the top of the stack' % item)

      elif choice == '4':
      display(stack)
      elif choice == '5':
      break
      else:
      print('Invalid input')

      print('

      ')

  • @viee488
    @viee488 ปีที่แล้ว +4

    THE CORRECT CODE
    s=[]
    top=None
    def isEmpty(stk):
    if stk==[]:
    return True
    else:
    return False
    def push(stk,item):
    s.append(item)
    top=len(stk)-1
    def spop(stk):
    if(isEmpty(stk)):
    return('underflow')
    else:
    i = stk.pop()
    return i
    if(len(stk) ==0):
    top=None
    else:
    top=top-1

    def peek(stk):
    if isEmpty(stk):
    return('underflow')
    else:
    top=len(stk)-1
    return(stk[top])
    def display(stk):
    if(isEmpty(stk)):
    print('Stack is empty!')
    else:
    top=len(stk)-1
    print(stk[top],'

    • @adityabhandari6145
      @adityabhandari6145 ปีที่แล้ว

      What does %d and %item mean?

    • @viee488
      @viee488 ปีที่แล้ว

      @@adityabhandari6145 check out 8:45 you will get it

    • @obssgurl-yk5qg
      @obssgurl-yk5qg ปีที่แล้ว

      @@viee488 yes but what does it mean?

  • @funwithkrish009
    @funwithkrish009 8 หลายเดือนก่อน +5

    All the best for you 2 april 2024 Exam ❤

  • @puneetpradhan7657
    @puneetpradhan7657 3 ปีที่แล้ว +7

    Thanks a lot :)))
    Love to the apni kaksha team

  • @Kidzone1289
    @Kidzone1289 3 ปีที่แล้ว +2

    Aman bhaiya zindabad....🙏🙏🙏

  • @Ayushpatell88
    @Ayushpatell88 10 วันที่ผ่านมา +7

    All the best for your 29 March 2025 exam❤

  • @BilashiniOram-fo1hm
    @BilashiniOram-fo1hm 8 หลายเดือนก่อน +3

    12:30 most epic

  • @college1494
    @college1494 3 ปีที่แล้ว +12

    NOTES UPLOAD KAR DO BHAIYA!!!!!
    PRACTICALS AND PRE BOARDS H

  • @aditya__exe
    @aditya__exe 3 ปีที่แล้ว +11

    11:23 🤣🤣🤣🤣

  • @eugenemartin7475
    @eugenemartin7475 2 ปีที่แล้ว +30

    itna bhagaate kyu ho yaar saare videos me

    • @yashsharma3280
      @yashsharma3280 2 ปีที่แล้ว +1

      ya

    • @subasit122
      @subasit122 8 หลายเดือนก่อน +1

      Nahi bhagane par phir tum log 2x pe dekhto ho isiliye

    • @amanguptan
      @amanguptan 2 หลายเดือนก่อน

      ​@@subasit122Tu dekhta hoga 2x pe hmlog nhi jo chiz pehle padh liye hai usko 2x me dekha jata hai per ye aaj padh reha hai or ye channel khud 2x me video bhaga reha hai

    • @chamanpreetverma1869
      @chamanpreetverma1869 13 วันที่ผ่านมา

      4 saal purani hai video 😑​@@amanguptan

  • @kushanchaudhary7867
    @kushanchaudhary7867 2 ปีที่แล้ว +4

    This is the right code if you are having problem with pop :)
    --------------------------Code-------------------------------------
    s=[]
    top=None
    def isEmpty(stk):
    if stk==[]:
    return True
    else:
    return False
    def push(stk,item):
    s.append(item)
    top=len(stk)-1
    def spop(stk):
    if(isEmpty(stk)):
    return('UnderFlow!')
    else:
    i = stk.pop()
    if(len(stk) ==0):
    top=None
    else:
    top=-1
    return i
    def peek(stk):
    if isEmpty(stk):
    return('underflow')
    else:
    top=len(stk)-1
    return(stk[top])
    def display(stk):
    if(isEmpty(stk)):
    print('Stack is empty!')
    else:
    top=len(stk)-1
    print(stk[top],'

    • @keer-3
      @keer-3 2 ปีที่แล้ว +1

      Thanks bro!

    • @samarthnegi1209
      @samarthnegi1209 2 ปีที่แล้ว

      @@keer-3 iss saal stack implimentation tk he ayega na?
      application of stack cut ho gya?
      kya

    • @thechosenone2004B
      @thechosenone2004B 2 ปีที่แล้ว

      me sochra tha sab to sahi kr rha hu galat kaise aa rha h, def spop try kr k dekhta hu

    • @Heritageunfolded
      @Heritageunfolded 8 หลายเดือนก่อน

      Thnsksss

  • @ArryanhMesson
    @ArryanhMesson ปีที่แล้ว +5

    Why we are writing top = len(stk)-1
    why not top = len(stk) only

    • @mihirsamanyut219
      @mihirsamanyut219 9 หลายเดือนก่อน +5

      basically top gives us the index of the most recent element in stack and the indexing in list starts from 0 onwards, so top= len(stk)-1. Eg: L=[a,b,c,d] the len(L)=4 but index of d is 3. Hope this helps!

  • @sathibanerjee3660
    @sathibanerjee3660 3 ปีที่แล้ว +17

    Teacher : You don't attend my class; still you're scoring 90+ in every CS paper; what's the secret?
    Me : Sir, have you heard of Harsh Sharma of Apni Kaksha?
    Teacher : 😑😑

  • @riachuphal3233
    @riachuphal3233 3 ปีที่แล้ว +15

    Me : writing andhe 1.... 5dalna tha in my pre board if I've to write menu driven program for stack
    My marks : Rip💔🙂

    • @DevSharma-ez1gx
      @DevSharma-ez1gx 3 ปีที่แล้ว +1

      Andhe galat ch padh liya term 1 me nhi tha 😂

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      @@parveenparveen4565 most probably case based question or a sample code edit problems

  • @s2jee821
    @s2jee821 2 ปีที่แล้ว +2

    14:09 wahi to nhi hai 😐🙃

  • @brrrrrrrrrr9313
    @brrrrrrrrrr9313 2 ปีที่แล้ว +2

    are ch==5 k niche break dene se kay kisika error dikah raha h?? error- break outside the loop

  • @devikaharlalka5468
    @devikaharlalka5468 3 ปีที่แล้ว +13

    Sir pls phy ka second books ka notes dedijiye mra preboards hai

  • @angadprajapati2854
    @angadprajapati2854 ปีที่แล้ว +1

    Bro your code means stack implementation program contains under 77 line program
    Even I have a also program under 25 to 40 lines like stack implementation and my program was too easy and understandable!!!

    • @Patelnchora69
      @Patelnchora69 ปีที่แล้ว

      Hey dude can u send ur Program here.

    • @angadprajapati2854
      @angadprajapati2854 ปีที่แล้ว

      @@Patelnchora69 I am outside from home!!

    • @Patelnchora69
      @Patelnchora69 ปีที่แล้ว

      @@angadprajapati2854 oh.

    • @GamingwithVansh1
      @GamingwithVansh1 4 หลายเดือนก่อน

      Bro have u reached home?​@@angadprajapati2854

  • @atozintelligence4792
    @atozintelligence4792 3 ปีที่แล้ว +6

    Thank you so much Aman Bhaiya and Team 🙏🏻

  • @adityaa.28
    @adityaa.28 2 ปีที่แล้ว +1

    Thankyou bhaiya!!☺️☺️☺️

  • @vivaanreddy8771
    @vivaanreddy8771 8 หลายเดือนก่อน +3

    heres a simpler and far better code,
    stack = []
    def push(stk, item):
    stk.append(item)
    def pop(stk):
    if not stk:
    return 'Underflow!'
    return stk.pop()
    def peek(stk):
    if not stk:
    return 'Underflow!'
    return stk[-1]
    def display(stk):
    if not stk:
    print('Stack is empty!')
    else:
    print('Top of the stack: ', stk[-1])
    print('Stack elements:')
    for item in reversed(stk):
    print(item)
    while True:
    choice = input('''STACK IMPLEMENTATION
    1. PUSH
    2. POP
    3. PEEK
    4. DISPLAY
    5. EXIT
    Enter your choice (1-5): ''')

    if choice == '1':
    item = int(input("Enter the item you want to push: "))
    push(stack, item)
    print(item,' added successfully')

    elif choice == '2':
    item = pop(stack)
    if item == 'Underflow!':
    print('Stack is empty')
    else:
    print(item,' popped from the stack')

    elif choice == '3':
    item = peek(stack)
    if item == 'Underflow!':
    print('Stack is empty')
    else:
    print('%d is at the top of the stack' % item)

    elif choice == '4':
    display(stack)
    elif choice == '5':
    break
    else:
    print('Invalid input')

    print('

    ')

    • @Pikachu83622
      @Pikachu83622 8 หลายเดือนก่อน

      Bruuuh...ye yad kese hoga😂

    • @huzaifa9438
      @huzaifa9438 8 หลายเดือนก่อน

      does it is correct code !?

  • @yadav_ji_788_
    @yadav_ji_788_ 9 หลายเดือนก่อน +1

    Thnx sir😊😊

  • @mml119
    @mml119 3 ปีที่แล้ว +2

    Sir
    Syllabus kab complete hoga??

  • @callisto1836
    @callisto1836 3 ปีที่แล้ว +17

    thank you for such great lecture harsh sir you teach really well

  • @ashvanichaudhary9782
    @ashvanichaudhary9782 3 ปีที่แล้ว +3

    Sir kya MySQL ki bhi classes hongi?

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      videos available kindly check

  • @techwithdeepesh5367
    @techwithdeepesh5367 2 ปีที่แล้ว +3

    सी please लॉन्च cs series for tomorrow board paper

  • @meghasaxena8264
    @meghasaxena8264 3 ปีที่แล้ว +4

    how can this code be used for string value

  • @inshazaidi3986
    @inshazaidi3986 3 ปีที่แล้ว

    Thank u sooo muchh bhaiyaaa
    Stay blessed

  • @debanjanmajumdar5383
    @debanjanmajumdar5383 2 ปีที่แล้ว +4

    Eat well, Sleep well and study well...🙂

  • @yuvrajbhaia2939
    @yuvrajbhaia2939 3 ปีที่แล้ว +4

    Why did we take S=[ ] , when we didn't use it anywhere in the code??

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      bro here S acts as stk for the rest of the program

  • @no1shorts_
    @no1shorts_ 2 ปีที่แล้ว +2

    One day before exam. Willl. Like 😂 👍

  • @praveenagarwal9462
    @praveenagarwal9462 3 ปีที่แล้ว +2

    Bhaiya wave optics ke notes aur semiconductor ke notes Bhi Daal dijiye aap TH-cam par ....🙏

    • @b.harish4080
      @b.harish4080 3 ปีที่แล้ว

      Wave optics already uploaded on discord

  • @void8668
    @void8668 3 หลายเดือนก่อน +1

    Can anyone explain to me what this %d and %item is for?

  • @MamtaSharma-ji8qb
    @MamtaSharma-ji8qb 3 ปีที่แล้ว +2

    bhaiya huge huge huge request to u pls upload aldehyde ,ketones notes 🙏🙏🙏🙏🙏🙏🙏🙏

  • @LUCIFER-yk1jt
    @LUCIFER-yk1jt 9 หลายเดือนก่อน

    Sir ' global ' variable should be used in every function definition for top. without it, it is showing error

  • @siddeshshinde7303
    @siddeshshinde7303 3 ปีที่แล้ว +1

    Aman bhaiya please assembly language programing bhi karo na

  • @amanvedio55
    @amanvedio55 3 ปีที่แล้ว +1

    Sir vector chapter ka vedio banaiye

  • @Rose-5re
    @Rose-5re 5 หลายเดือนก่อน +1

    Sir pehle h
    jinka video slow krk dekhna pad rha h

  • @rajkumarchoudary4819
    @rajkumarchoudary4819 3 ปีที่แล้ว +7

    Sir,
    IP walo ka lia plz... Pythan or my SQL ka corse dalo plz...
    🙏🙏🙏🙏🙏
    I who also want...

  • @nikhilbaisla8693
    @nikhilbaisla8693 3 ปีที่แล้ว +2

    Bhai top ki value len-1 kaise h?

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      top kyuki top element alag se treat kiya gaya hai
      ussko special mention kiya hai

  • @shreeyashmishra2120
    @shreeyashmishra2120 2 ปีที่แล้ว +1

    can someone tell what's the text editor or software he's using?

  • @musicophilic3040
    @musicophilic3040 3 ปีที่แล้ว +7

    Can anyone please tell me where we can find new notes of wave optics by Aman bhaiya?

  • @AdityaSharma-fp8lo
    @AdityaSharma-fp8lo 3 ปีที่แล้ว +6

    This is the most code intensive lecture.......thanks bhaiya😊😊😊😊 and pls everyone like share its dissapointing that likes are decreasing video by video.....😐😐😐😐

  • @Param3021
    @Param3021 3 ปีที่แล้ว +3

    Sir notes ka link daal do

  • @manaspandey7243
    @manaspandey7243 3 ปีที่แล้ว +31

    Hatts of to harsh bhaiya,aman bhaiya and all bhaiyas and Didi's😊😊😊 for making a pure and awesome content. You would always be remembered.
    Respect man!!!! Respect$$$😌

  • @jackma9528
    @jackma9528 3 ปีที่แล้ว +2

    Bhaiya yaha error dikha raha hai... It's telling that "local variable refrencedy before assignment"

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      kindly see my comment and it's reply in the comment section

  • @abhiii_navvv
    @abhiii_navvv 3 ปีที่แล้ว +1

    Bhaiya aapki Alternating current wali video ka 1st lecture chal Nhi rha h Baaki sare Chl rhe h Unacadmey app pr kuch Kro bhaiya plz plz..

  • @Ashu_7
    @Ashu_7 3 ปีที่แล้ว

    Si aapki theme sabse alag can please tell us about that also yeh jo identaion ki lining show krta hai iske baare main bhi basicaaly aap apne pure python ki setting bta do ek baar Please

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว

      use ide provided by jetbrains

  • @kitoo2624
    @kitoo2624 3 ปีที่แล้ว +2

    what is the use of %d here?

    • @thattechieguy
      @thattechieguy 2 ปีที่แล้ว +2

      just a future reference operator ..

  • @ZAMislive
    @ZAMislive 3 ปีที่แล้ว +2

    great video bro
    i laughed when the first output come, at the very first time

  • @gurmankaur1060
    @gurmankaur1060 3 ปีที่แล้ว +3

    Dosto ye %d kya h?

  • @minhadtuashimahmed3873
    @minhadtuashimahmed3873 3 ปีที่แล้ว +1

    Yeh to bahut lamba program haii....
    Exam m stack queue se related kaise questiom ayenge???

  • @akshatjaiswal6073
    @akshatjaiswal6073 3 ปีที่แล้ว

    Ye )practical me aa skta hai?

  • @winterfrost2467
    @winterfrost2467 3 หลายเดือนก่อน +1

    10 bjne wale hain aur mein pop top par rha... 🫠

  • @hi7156
    @hi7156 2 ปีที่แล้ว +4

    Bhaiya hadd se jyaada ad daalte hai 💀

  • @HarshKumar-sh3hm
    @HarshKumar-sh3hm 3 ปีที่แล้ว +2

    Description mai code Kaha hain

  • @priyanshukumarsaw8121
    @priyanshukumarsaw8121 3 ปีที่แล้ว +1

    Please share it's notes

  • @achintyanivsarkar8419
    @achintyanivsarkar8419 3 ปีที่แล้ว

    bhaiya IP vaalo ke liye bhi krdo kuch plz 🙏🙏🙏🙏

  • @mr.arshad9803
    @mr.arshad9803 3 ปีที่แล้ว +1

    sir plsss give discord link jo description main thi wo wali expire ho gyi

  • @BabyBoo004
    @BabyBoo004 2 ปีที่แล้ว

    Ye konse applicatⁿ pe code likha or run kraya??

  • @vectorx2003
    @vectorx2003 3 ปีที่แล้ว +1

    Re-upload old videos of C++ for Class 12

  • @renumalik8386
    @renumalik8386 3 ปีที่แล้ว

    Sir plz jaldi jaldi cs python ka pura syllabus kar va dijiye for baords
    As we are having our pre boards in February

  • @aryankushwaha9306
    @aryankushwaha9306 3 ปีที่แล้ว

    Bhaiya yae kya boards kae exam mae aata hai....practicals mae...plz koyi bataoo

  • @Shanghai_Shine
    @Shanghai_Shine 2 ปีที่แล้ว

    Bhaiya Konsa version use karte ho python ka

  • @dakshjain6673
    @dakshjain6673 3 ปีที่แล้ว +1

    Bhaiya please 🙏🙏🎉
    Jaise hi 2 Feb ko dates announce hogi CBSE ki, 12 pcm ke liye full 3 months detailed strategy bana dena subject wise please🙏🙏🙏
    Please bhaiya 🙏🙏🙏👍👍👍
    Much needed🙏🙏
    Huge request 🙏🙏
    Please think on it🙏🙏
    Don't ignore 🙏🙏🙏

  • @remadas0
    @remadas0 3 ปีที่แล้ว +1

    link to the notes not given

  • @karandx_official
    @karandx_official 2 ปีที่แล้ว +1

    Sir please provide the link of the code 🙏🙏

  • @akarshibajpai6367
    @akarshibajpai6367 3 ปีที่แล้ว

    Bhai java k liye bhi kuch

  • @ShadowzSharma
    @ShadowzSharma 3 ปีที่แล้ว

    7:20

  • @randombeta
    @randombeta 2 ปีที่แล้ว +3

    Andhe 1-5 daalna tha...😂😂

  • @gatijshakyawar3674
    @gatijshakyawar3674 2 ปีที่แล้ว +1

    Agli baar se mai bhi 'Andhe 1-5 daalna tha' hi dalunga else condition me🤣

  • @aryasharma9126
    @aryasharma9126 3 ปีที่แล้ว +1

    Kitna confusing h yrr😌😄😄

  • @devyanjha
    @devyanjha ปีที่แล้ว

    Please upload notes of this lecture

  • @nishant6809
    @nishant6809 8 หลายเดือนก่อน +1

    Kon kon aj subah dekh rha(2 April)😂

  • @jsbeatz1640
    @jsbeatz1640 ปีที่แล้ว +2

    11:25 bro fr harrassing user💀💀💀💀

  • @prathemeshjankwade9641
    @prathemeshjankwade9641 ปีที่แล้ว +1

    How many marks to pass in computer science in theory please reply

  • @arpita6479
    @arpita6479 3 ปีที่แล้ว +1

    Bhaiya code kaha hai description box me

    • @ehtishama3066
      @ehtishama3066 3 ปีที่แล้ว +1

      code nhi mil rha hai, aur muje error aa rha hai

    • @arpita6479
      @arpita6479 3 ปีที่แล้ว

      @@ehtishama3066 main de du kya code?

    • @ehtishama3066
      @ehtishama3066 3 ปีที่แล้ว

      @@arpita6479 yes bro, please share link

  • @Thesongmate
    @Thesongmate ปีที่แล้ว

    Kis application pe code krte ho bta do please

  • @41.paridarshansahoo31
    @41.paridarshansahoo31 2 ปีที่แล้ว

    which python software u r use?

  • @manthansinghrauthanof8thc543
    @manthansinghrauthanof8thc543 4 หลายเดือนก่อน +1

    bro hamari teacher ne hamse sign karva liye ki 60 % stack me nahi ay to 1week ke liye suspension.

  • @dhyeytank835
    @dhyeytank835 3 ปีที่แล้ว

    Where are the notes of this lecture???....not there in the description box

  • @seemajain574
    @seemajain574 3 ปีที่แล้ว

    please🙏please 🙏🙏🎉
    Jaise hi 2 Feb ko dates announce hogi CBSE ki, 12 pcm ke liye full 3 months detailed strategy bana dena subject wise please
    Sir, abhi tak 10-15% hi padha h{pcm me} please
    3 months me kaise syllabus compelete karke revise karu?🙏🙏🙏
    Please 🙏🙏🙏👍👍👍
    Much needed🙏🙏
    Huge request 🙏🙏
    Please think on it🙏🙏
    Don't ignore 🙏🙏🙏

  • @nursing9294
    @nursing9294 ปีที่แล้ว

    Sir es playlist ke poore notes toh upload kr dete..

  • @sayanjitb
    @sayanjitb 3 ปีที่แล้ว +1

    How to get this code file?

  • @priyankpatel5501
    @priyankpatel5501 3 ปีที่แล้ว

    Maza AYA !!!!

  • @chitrakshimahajan7932
    @chitrakshimahajan7932 2 ปีที่แล้ว

    Yahan %d kya hai??

  • @mayankraj3783
    @mayankraj3783 2 ปีที่แล้ว

    Aap vs code m code krte ho na

  • @sythe263
    @sythe263 2 ปีที่แล้ว

    awesome!

  • @goingstoppers7944
    @goingstoppers7944 3 ปีที่แล้ว

    Notes kaha hai???

  • @avinash8238
    @avinash8238 2 ปีที่แล้ว

    Which software is this ?