How to build logics in programming

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

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

  • @ravichandramulage8852
    @ravichandramulage8852 9 месяцев назад +34

    This is what I learnt from the video -
    Step 1. Data Flow (Analyze / Understand how data/values are changing at each step) unless and until you understand this completely don't even worry about logic building. You should exactly know what is happening at each step. Don't memorize, Just Understand.
    Step 2. (90-10 Teaching Method) - 2:33
    Step 3. Build Basic To-Do Projects - Understanding foundation is essential... Don't overlook this step. This will become solid Base for your upcoming major projects.
    Step 4. Added Value - Once you gain confidance from building basic projects, now you are ready for adding new features and functionalities to those basic projects. You must add value to those basic projects by learning on your own. This will immensely boost your confidance once you succeed in this. and finally Now you become ready to go and build major projects.🔥🤟
    But never forget mastering basic foundation is the key. ✨

  • @ShubhamRai-gs8ih
    @ShubhamRai-gs8ih Год назад +447

    1. Data flow(Understand the data values at each step)
    2.90-10 (teaching methodology )
    3.Understand TODO PROJECTS thoroughly
    4.Added Values (Add some features from your own doesn't matters its small or big)

  • @ravikant2167
    @ravikant2167 9 месяцев назад +20

    itni clarity se pehle kabhi kisi ne nahi samjhaya. thank you

  • @SpecialShorts892
    @SpecialShorts892 Год назад +36

    faltu ka gyan na deke 5 steps . sir g aapke point to point smjhane ka method aur clear cut bolne ka method se apn fan bnn gye aapke😀

  • @AhmadullahsiddiquiShah
    @AhmadullahsiddiquiShah Год назад +16

    दुल्हन वही जो पिया मन भाए
    किताब वही जो समझ मे आए
    Hitesh sir dhohe ke pure haqdaar hai

  • @gouravnayarIndorewale
    @gouravnayarIndorewale Год назад +18

    Sir ji....mene to ummid hi chhod di thi programming ki jbse aapna ye chai aur code channal start hua h
    Tab se confidence level bhi up hua he Or intrest bhi improve hua he ab intzaar rhta h aapki aane wali har video ka bss......thank you very much sir kyuki phle bhrosa nahi tha khud par is is series ke bad bhrosa bhi h or ummid bhi h aapki react series krke jhldi se koi job mil jaye.... 😊❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤THANK YOU SIR..🎉🎉UMMID HE AAPKO PADH KAR ACHHA LGEGA❤❤❤❤❤❤❤

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

      मेरा नाम Gourav है,और मै इंदौर (म.प्र) से हूँ।

    • @yuvrajsinghGurjar-eb7ko
      @yuvrajsinghGurjar-eb7ko Год назад

      @@gouravnayarIndorewale hi gourav me too indore.

  • @AhmadHassan-hb3lb
    @AhmadHassan-hb3lb Год назад +58

    8:48 Bro you concluded my 3 years of full stack development career in such simple words... you are amazing

    • @rohanpaul7657
      @rohanpaul7657 9 месяцев назад

      i want some guidance please help

    • @Ameyiscool
      @Ameyiscool 8 месяцев назад +2

      ​@@rohanpaul7657koi nhi krega bhai koi nahi... Mai bhi aise hi puchta rehta hu sbse.

    • @hellogoogle8456
      @hellogoogle8456 7 месяцев назад

      ​@@rohanpaul7657 kya help chajiye bro batao

    • @_abhishekpal
      @_abhishekpal 5 месяцев назад +3

      @@Ameyiscool puchta kyu hai jab koi nahi krta

    • @Ameyiscool
      @Ameyiscool 5 месяцев назад

      @@_abhishekpal sab swarthi nahi hote na koi bhala insaan guidance kar skta hai.

  • @hamzafarooq4417
    @hamzafarooq4417 6 месяцев назад +2

    To build code logic of any program, you must learn concept of mathematics such as even or odd numbers or prime numbers. For mathematics in computer programming, you must know operators given below:
    Arithmetic Operators:
    + Addition 1+1=2
    - Subtraction 2-1=1
    * Multiplication 2*2=4
    / Division 6/2=3
    % Modulus if 6/2=3 then 6%2 is equal to 0 that means 6 is even number. if 7/2=3.5 and 3.5 is decimal value then 7%2 is not equal to 0 that means 7 is odd number
    Assignment Operator:
    int x = 10;
    x=x+5; // x=15
    Comparison Operators:
    == Equal to if(x == y){}else{}
    != Not equal if(x != y){}else{}
    > Greater than if(x > y){}else{}
    < Less than if(x < y){}else{}
    if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else will execute
    Another syntax:
    if(){
    }
    else if(){
    }
    else{
    }
    if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else if(){} will execute
    Google search how to find greatest number or calculate prime factor of a number. Read and understand from starting of JavaScript tutorials and check if variable declaration and initialization is useful in finding greatest number. Read and understand from JavaScript tutorials and check if arithmetic operator is useful in finding greatest number. Read and understand from JavaScript tutorials and check if relational operator is useful in finding greatest number and so on. Program 1 to find the greatest number from 3,1 and 5 given below:
    const arr = [3,1,5]; //arr[0]=3, arr[1]=1, arr[2]=5
    var i=0;
    var greatest=arr[i]; //greatest=3
    i=i+1; //i=1
    if(greatest>arr[i]){ //if(3>1)
    }else{
    }
    i=i+1; //i=2
    if(greatest>arr[i]){ //if(3>5)
    }else{
    greatest=arr[i]; //greatest=5
    }
    Program 2 using loop to find the greatest number from 3,1 and 5 given below:
    const arr = [3,1,5];
    var i=0;
    var greatest=arr[i];
    // while loop is executed 2 times because we have written i=i+1 and if(){}else(){} 2 times //previous in Program 1 given above
    while(iarr[i]){
    }
    else{
    greatest=arr[i];
    }
    }

  • @ankursinger102
    @ankursinger102 Год назад +303

    We are so Fortunate that we are living in Hitesh Sir Era❤

    • @VishalSharma-u2w
      @VishalSharma-u2w 9 месяцев назад +5

      Hitesh sir can you guide me how to starting building to do list

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

      Stop mastering this worthless subject coding because it will take years to master and companies will still fire you at anytime so instead start preparing for govt job because govt job will never betray you and give you helping hand till your last breath!!! Many people regretting their decision to choose this field instead of preparing for a govt job but you have time quit this fake worthless field and start preparing for a GOVERNMENT JOB NOWWW OR YOU WILL BE REGRETTING TILL YOUR LAST BREATH

    • @onkardhingra9083
      @onkardhingra9083 Месяц назад +1

      Agree++

    • @iamnotfamous6591
      @iamnotfamous6591 Месяц назад

      Are You f. Kidding🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣... He is so dumb that he tell everyone to learn this stupid technologies you will never get you a job that last 4 years and then you will be jobless for 6 years and never get a job so start preparing for a govt jov nowwwwwwwwwwwww of you willl be Regrate till your lifetime. you f. idiot

  • @VSHANMUKHARAJU
    @VSHANMUKHARAJU Год назад +17

    learning js and react by watching your videos but struggling to solve problems or to implement logic then yesteday i was watching how to build logic and here you just made a video on this. it's good that the tutor i have been learning from uploads exactly what i needed. Thank you sir.

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад +1

    "Expertly breaks down logic building for programming beginners! Clear, concise, and engaging."

  • @Mojo_._Jojo
    @Mojo_._Jojo Год назад +33

    Great video , i just hope that you start a series on DSA too , we really need your insights on DSA , that would be like the most helpful thing to us .
    Thank you for you efforts

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

    Truly sir i been asking the question of how can we build logic from past 6-8 months , finally my wait is over with a boon like a information from u. you are our online Harvard university of india sir🙏#chai_aur_code #desi_coding

  • @Anita.choudhary3333
    @Anita.choudhary3333 Год назад +2

    Thank u sir bilkul sahi time video daala sir aapne
    Mujhse ni ho paa raha tha
    Mera man tha coding quit kr du
    Thank u sir ❤❤❤

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад +2

    "Clear, concise explanations! This tutorial effectively breaks down building program logics in an engaging way."

  • @vaibhav4137
    @vaibhav4137 9 месяцев назад +2

    Apake har vedio me ek learning hamesha milati aur wo hai patience..
    I think we are in hurry to complete it rather than enjoying and learning..

  • @codewithsameerkhan
    @codewithsameerkhan 28 дней назад +1

    These five steps is very important for learning the programing🙂🙂🙂

  • @viralvideodekho661
    @viralvideodekho661 Год назад +7

    Sir, today before watching this video i just created a kind of small kind of pop up navigation bar by myself,
    And your this video now motivated me to do more experiments whatever comes to mind.
    Thank you sir for this video. Keep guiding us like this . Lots of love ❤ and respect 🫡 to you.

  • @MAVI_EDITz_4U
    @MAVI_EDITz_4U 27 дней назад

    Innse acha koi nahi sikha sakta .........The way sir teaches is mindblowing

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

    Sir data flow ko kaise smjhna hai debugging krke ?? Sir ye part bhi explain kriye ki samajhte kaise hai

  • @babarajmal7798
    @babarajmal7798 3 месяца назад +2

    js slap really felt hard at my face i am 33 and just started it is really complex thank you very much for your support love form pakistan ♥

  • @mayurjadhav2917
    @mayurjadhav2917 9 месяцев назад +2

    Bahut hi sahi time pe video mila he...ty so much for this guidance...

  • @millionairsCricketshorts4u16
    @millionairsCricketshorts4u16 2 месяца назад

    Aap jo bhi kahe hai 101% satat hai sir because aapko experience 😊 please guide right path sir I humble request sir for all devloper students 😊thank you so much

  • @asifiqbal3911
    @asifiqbal3911 Месяц назад

    What a pin point issue regarding students ...
    So r such a best teacher ...great

  • @353-surajtrivedi2
    @353-surajtrivedi2 12 дней назад

    Thank You Sir 🙏.I have Learned Many Things During My Current Coding Journey.

  • @user-rl5ke2ky6h
    @user-rl5ke2ky6h 4 месяца назад +1

    me first time programing ki video dekhate samay muskura raha tha grate video ☺

  • @RandomRaju-zb8vf
    @RandomRaju-zb8vf Год назад

    Sir you are one of the teacher who teaches me JavaScript....
    mai drta tha javascript se mai javascript pdh k 4 days me backend sikh liya....aur 1 chota sa project bna diya.....Love u ❤❤❤❤❤

  • @sagar59
    @sagar59 Год назад +4

    Loved this video sir... I was struggling to code but i think i got something from this video to improve thank you sir a lot❤

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

    Apne toh Logic build ho rahe hain....Sarana ke liye Dhanyawaad 🙏

  • @aj-lan284
    @aj-lan284 Год назад +4

    right advice! please make a same next video on how to dubug code in company and understand large codebases, also how to learn new things/keywords in same language which we use day-to-day for our project...

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

    Apka content itna acha hota hai ki aisa lagta hai mai seekhne ke sath sath meditation kar rha hu ❤❤you are so cool sir 🙏 tareef karne ke liye mere pas word kam pad rhe hain ek word me bolunga - Bahutttt Achaaaa!

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад

    "Clear and concise! This tutorial effectively explains how to build program logics. Highly recommended!"

  • @KrishnaKumar-kh5iu
    @KrishnaKumar-kh5iu 11 месяцев назад +3

    He stands out as the wisest among all tech RUclipsrs, and we're grateful for his continuous video uploads.

  • @TinkuKumar-qn5ri
    @TinkuKumar-qn5ri Год назад

    Gajab sir, sach mein ye video mere thinking power boost karega...Hume to sab chiz rataya jata hai,,ye loop ye karta hai bs ye kaise hota ye nhi pata . But Aaj se ye kaise hota bs yahi sikhna hai i..e Data flow. Thank you for sharing this information.

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

    advice 1 and 3 are so crucial.
    at times we think implementing such and such for loop/foreach loop is a piece of cake. in reality, it is not. and only when faced with bugs and logical errors (and the dreaded index out of range) do we realize how much we messed up. dry run is at times mundane and time taking but we don't realize how much time it actually saves.
    secondly, it has been an issue with me that once i have built a simple to-do list or anything simple for that matter, i tend to ignore it thinking its too simple. but then when i move to a complicated project, i realize how difficult its solving it would be.
    i would add dividing the bigger problem into smaller pieces and then solving them incrementally, and this can be applied to any problem, no matter the scale.
    Otherwise, this is such a crucial advice. thank you!

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад

    "Clear and concise tutorial! Expertly breaks down building program logic into easy steps."

  • @Ankursharma01827
    @Ankursharma01827 Год назад +4

    Hitesh sir big fan ..
    I talked with you in a live class of PW skills that was my best moment till my 19 years❤

  • @soniasaleem3880
    @soniasaleem3880 8 месяцев назад

    How soft and polite speaker you are literally whether i am understanding whatever you are delivering or not i just focus on listening to you😅 keep it up bro 😊

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад

    "Clear, concise, and well-explained! Perfect for building programming logic skills."

  • @nitinjawalgi9629
    @nitinjawalgi9629 Месяц назад

    01:16 Follow these 5 steps to improve your logical thinking
    02:32 Understanding data flow is key to giving instructions to a computer.
    03:48 Focus on data flow
    05:04 90-10 teaching is an important concept for effective learning
    06:20 Start with small improvements in what you learn from RUclipsrs
    07:36 To-do's are the foundation of any project and should not be taken lightly.
    08:52 Start with adding value to projects to build confidence in programming
    10:04 Build confidence to effectively manipulate and inject code into projects.

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

    sir G mai same to same wahi complex projects youtube dak ka practice kr rai tia lakin tabhi apka video muja deka.
    " thanks sir apka video nai mara time bacha leya"

  • @odiagamer3679
    @odiagamer3679 7 месяцев назад

    Sir jo bahut dhire se santi se bol rahe hai ,mujhe toh issi baat pai dil agaya❤

  • @azstech3530
    @azstech3530 9 месяцев назад

    One line touches me, that is confidence, I am lacking in confidence, If I have confidence I have done alot of things... Thank you Brother

  • @babarshabbir2554
    @babarshabbir2554 6 месяцев назад

    "Excellent tutorial! Clear, concise, and effectively explains how to build logic in programming."

  • @skumar2699
    @skumar2699 11 месяцев назад

    01:16 Follow these 5 steps to improve your logical thinking
    02:32 Understanding data flow is key to giving instructions to a computer.
    03:48 Focus on data flow
    05:04 90-10 teaching is an important concept for effective learning
    06:20 Start with small improvements in what you learn from RUclipsrs
    07:36 To-do's are the foundation of any project and should not be taken lightly.
    08:52 Start with adding value to projects to build confidence in programming
    10:04 Build confidence to effectively manipulate and inject code into projects.

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

    Hey Bhaiya ! aapne acche se smjhaaya you gave the "Saar " to and i will make myself a good proagrammer not a bot form today's onwards i will follor channel and you tutorials as well mere placement nazdik hai mujhe kuch nahi aata i agree but phir bhi i will start from day 0 to 180 days just for a change to become a software developer like you

  • @ShrutiJadhav-n2z
    @ShrutiJadhav-n2z 4 месяца назад

    Understand small projects
    Add value [try to add a small feature from your side]
    it will help you to make your foundation strong and help in increasing confidence.

  • @ArunChauhan-f4y
    @ArunChauhan-f4y 4 месяца назад

    Great Sir , Sir you actually figure out the beginners nervous system That's why your teaching style is so visualizable , imaginable thanks a lot sir

  • @studytime6668
    @studytime6668 8 месяцев назад

    Amazing thing is that you have blive i have unique technique of teaching skills and we love that.

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

    sir to be very honest ap se padhne ka baad ak alag level ka confidence generate hota hai ap ka videos mai sirf lectures hi nhi ak energy hoti hai jo enchance krte hai mujhe k aage karo aage badho thank you so much sir 😊

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

    6:37 actually I am doing the same mistake mai sidha Spotify clone banana chaha but logic ka khichdi ban gayi 😅 or Mera swapna Tut Gaya 😢 thank you for a beautiful video. Love from Bengal ❤️

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

    sir, kitni badi bat, kitne simple way bol dali, thank u sir, sure ll follow that.

  • @Rahul-ct8px
    @Rahul-ct8px Год назад +1

    Thank you sir, ye problem mere saath v tha but ye video mere liye bahot beneficial rahega❤

  • @visheshgupta4990
    @visheshgupta4990 9 месяцев назад

    Thankyou so much practical Steps 💯, We are Lucky to have a teacher like Hitesh Sir ❤️🙌

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

    Hitesh sir aap itne down to earth kaise kaya rakhte hoo khud ko.
    Huge respect sir❤.

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

    Thanku so much sir for the video, I was demotivated since few days because I was not able to solve the problem, but your video saved me.

  • @zaidofficials
    @zaidofficials Год назад +4

    1:30 meme is so hilarious 😂😂😂😂😂😂

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

    Ha ji guru jee bhut kuch chorke aaye hai delhi yahi sikhne ke lia but problem bhut hoti hai jb hoti hai mn krta hai chorde sab kuch
    Aapki video bhut bhut help full hai
    Allah bless you ❤❤❤❤❤❤

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

      Kis college se ho bhai

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

      Maulana Mazharul Haque Patna University pass out hai hai Front-end development fr problem hai job nhi mil rahi bhut jagah gya jaha paisa mang rahe ek jagah gya tha intrv ke lia 20k demad kiye tut gya hai aadmi yaarbye sab se

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

      @@shakilansari4325aapko DSA nahi aata ??

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

    Thank you sir you made me read documentation, basically you thought me how to learn, the mindset, thanks a lot ❤, I'll meet you someday 😊

  • @kajalgupta9536
    @kajalgupta9536 6 месяцев назад

    i wish i would have followed you from starting because each thing i have seen now in this video, has took so long for me too realise and implement

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

    I regret finding you so late

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

    Very helpful sir , I was also take todo lightly but now I got it where I made mistakes. Thakyou so much sir

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

    hitesh sir is best in all things.....whether its teaching or giving advice suggestion motivation to the students...... thank you sir

  • @GAMINGGURUBIHARIBABA
    @GAMINGGURUBIHARIBABA 7 месяцев назад +1

    sir i am following you since your bug bounty course, you are awesome sir

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

    Video Editing ka level 🔥
    Aap tagda hard work lagate ho video ke piche
    Thank you 🙏

  • @HeyyDixit
    @HeyyDixit Год назад +4

    This Is why Hitesh Sir is a Teacher in YT, Not a Creator ❤

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

    Thank you sir! You just turned my 2 years struggle into make it possible!❤

  • @abhishekpatra7954
    @abhishekpatra7954 Год назад +4

    Learning a programming language and solving leetcode questions is the easy to moderate part. The real difficulty starts when you try to build something like a Big software, App or website or Game or Backend that's where you learn and if you continue making those building projects after projects which they usually do in companies then then you *truly becomeTHE SOFTWARE ENGINEER*

  • @amjadghazi4580
    @amjadghazi4580 10 месяцев назад +2

    It's an art to state the obvious

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

    Just wow.. the way you teach is phenomenal
    It's too soothing...

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

    thank you sirr!! aap ne to pura doubt hi khatam kar diya😌

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

    bilkul sir aap aae ho to samjh to bilkul aaega he...

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

    Your lectures are awesome, paying thanks across the border,

  • @DhavalSolanki-h1f
    @DhavalSolanki-h1f 3 месяца назад

    It's Great Video for all beginners, thank u so much sir.

  • @PAWANKUMAR-uh3tp
    @PAWANKUMAR-uh3tp Год назад +1

    ❤❤ Sir acche se Smjh aa gaya Tq☺️🙏

  • @r.j4984
    @r.j4984 Год назад +1

    Data flow is very important for a beginner.

  • @tech_channel110
    @tech_channel110 Год назад +4

    I am truly inspired by sir hitesh exceptional ability to make the complex world of programming logic not only understandable but also fascinating through their engaging lectures .
    ap hamaray guru hay guru
    ap hamesha salamat rahay
    zindagiya jiye

  • @SumitYadav-tr8hi
    @SumitYadav-tr8hi Год назад

    Very very important video for coders Thank U very much sir

  • @AyanShaikh-c8q
    @AyanShaikh-c8q 6 месяцев назад

    We are so Fortunate that we are living in Hitesh Sir Era
    love uhh so much hitesh bro

  • @rajukumar-yq3qf
    @rajukumar-yq3qf Год назад +5

    ❤❤Thank you so much sir for great information ❤❤

  • @subhampratap1374
    @subhampratap1374 8 месяцев назад

    Thank you u just Change something in my logic very very thanks for that

  • @abhi_yt312
    @abhi_yt312 Год назад +4

    Thanks Sir !!
    your teaching and guidance are really helping me and making me better day-by-day.
    I love the way you teach😀.

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

    Amazing Conclusion men..Super Content...utter realistic and practical approach Of Data Flow n To Do's on Every Single topic of basics up to you can feel confident like give me anything i will play with it ..regards

  • @satyamtiwari8673
    @satyamtiwari8673 6 месяцев назад

    Hitesh Bhaiya you are a gem. the way to teach and explain that extremely phenomenal

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

    Sir yahi msla hai react ata to syntax wagera smjh Sab mgr logic nai bn pata thanks for this video boht zrorat thi

  • @secretcode96
    @secretcode96 2 месяца назад

    Sir, thank you for providing us some valuable information.

  • @ashrafsadek2388
    @ashrafsadek2388 11 месяцев назад

    Thank you.. vi It was really helpful. Don't stop teaching us.. there alway will be someone like me who will come and learn something from your lecture.

    • @chaiaurcode
      @chaiaurcode  11 месяцев назад

      Thanks and I will try my best 😊☕️

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

    you seems a nice person. Thanks for this video, I really appreciate.

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

    You are giving some real serious advices. Love from Pakistan

  • @nilamrakholiya5650
    @nilamrakholiya5650 6 месяцев назад

    Hello, Hitesh sit, Whenever I want any advise on Programming, I open your channel, and in this video you mentioned "data flow" and I can relate that with my question, Currently I am doing my master's, I was working as a frontend developer but want to build my logic on backend side and In my classes I learned how to divide program in small part and how to go step by step in any programming and I feel its amazing, then I thought manybe this is pseudo code, but I haven't find any sources from that I learned to write program step by step, Can you please make video on this topic ? like if there is a simple program finding area of the room, then how can I start step by step from declaring variable to write methods and then implement that method, and understand data flow, I really confused and excited to learn programming like this. I wish you notice my comment and make video, and Thank you so much for teaching us.😊

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

    Hope so i got reply this time.. i am much proud on you Hitesh sir .. alot of love from Pakistan ❤ Thankyou for everything

  • @pavanteja3855
    @pavanteja3855 7 месяцев назад

    Hi Sir, Thank you for taking your time and making these awesome content. Could you please make an english version of this particular logic building video. Thanks

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

    Thank you sir, please make more videos like this based on your experience.....

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

    Sometimes some people says more than inoff, but sir only u gain a knowledge ,always more than inoff. ❤

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

    I don't know how do you know what we need at this time. I am so grateful to you🥺🥺🥺

  • @mouizrehman8416
    @mouizrehman8416 7 месяцев назад

    This provide me with the best among many lessons in my life ❤

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

    thank you sir ek baar mein dimag mein baat aa gya thank you so much for this video sir!!

  • @alphabetdot6613
    @alphabetdot6613 9 месяцев назад

    1st step our teacher taught on college, some time i thought why do i need to do it by myself when we can run and easy to answer now i realize the value of doing using pen and paper, it's not even high end college i guess i learned something , even the college is not A graded

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

    finally someone answered the how question thanks sir

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

    Hello Sir!
    Thank you for providing us such a premium content for free,
    Sir I'm ur biggest fan from Pakistan,
    You are my favourite teacher on youtube, 'coz u teach how to learn a concept,
    I'm learning JS from you and I'd want to learn more from you!
    Sir it would be a great favour if u use some urdu words along with hindi in video editing so that ur viewers from Pakistan who don't know hindi can also read the content on the videos easily :-)