10 Tips to Build and Improve Logic Building in Programming

  Рет қаралды 1,126,460

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 1 000
@harshchauhan151
@harshchauhan151 4 жыл бұрын
People forget that programming is not about typing its all about thinking. 1) Break the problem in sub part. 2) Don't fear to make mistakes. 3) No need to learn the code just keep going, you will learn it automatically. 4) Have a basic knowledge about the function of particular language. 5) Practice math in free time, The basic algorithm are of elementary school level. Good things take time, don't get frustrated if you can't solve, just relax and make mistakes, eventually one day you'll get the solution.
@FreeSkypeGenerator1
@FreeSkypeGenerator1 2 жыл бұрын
thanks
@Manikantakrishna_Q_A
@Manikantakrishna_Q_A 2 жыл бұрын
Thanks
@Manikantakrishna_Q_A
@Manikantakrishna_Q_A 2 жыл бұрын
Bro
@gudapavani9004
@gudapavani9004 2 жыл бұрын
Thank you
@okappaw
@okappaw 2 жыл бұрын
Good info just want to learn, please how come your comment is older than the date the video was posted?
@hamzafarooq4417
@hamzafarooq4417 6 ай бұрын
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]; } }
@HariPrasad-ox5ri
@HariPrasad-ox5ri Жыл бұрын
10 Tips to Build and Improve Logic Building in Programming: 1) Have patience, don't give up and Practice thoroughly 2) Theoretical Knowledge is important 3) Make a habit of writing the steps needed to obtain the solution for a problem on a piece of paper, before typing code into IDE 4) Dry run the code by taking several examples 5) Do as many questions as possible 6) Be regular in solving at least a fixed number of questions per day 7) Don't directly jump to advanced topics, start from the basics 8) Make sure to learn DSA 9) Try to solve the problem by yourself, before seeing the actual solution 10) After following the above steps thoroughly, implement your skills on projects - start from basic ones and then move on to advanced
@teddy2812.
@teddy2812. Жыл бұрын
Where we can find questions in c language. can u help me?
@Kidsstudies7
@Kidsstudies7 Жыл бұрын
​@@teddy2812.U can that in Sharadha Mam's channel apna college
@praneethpjsf8011
@praneethpjsf8011 Жыл бұрын
​@@teddy2812.Ask chatgpt
@geethas8641
@geethas8641 Жыл бұрын
Hackerrank
@SunithaRaghu-ny2dg
@SunithaRaghu-ny2dg 9 ай бұрын
Duck
@JigarThacker
@JigarThacker 3 жыл бұрын
It is also a philosophy video. "Face at least a new problem everyday" 🙂 At last: The more experience you have the better you become
@chiragrajvaniya2362
@chiragrajvaniya2362 2 жыл бұрын
best CMNT brother i have learnt something from cmnt👍
@computergig3622
@computergig3622 4 жыл бұрын
I am from Moldova and I am glad I found this channel. It helped me to pass my exams for DSA and Software engineering. Thx Jenny!
@collinskimweri4461
@collinskimweri4461 Жыл бұрын
Hope you passed!
@computergig3622
@computergig3622 Жыл бұрын
@@collinskimweri4461 I did pass
@DimebagGaurav
@DimebagGaurav 2 ай бұрын
Welcome to india
@JustwaitNwatch-w
@JustwaitNwatch-w 2 жыл бұрын
1) practice Because first of all if you're new to the language and you haven't done any problems related the chapters for e.g array and loop for pattern making and string its totally new so even if you have to see how to write that code then just have a look at that because those problems will help you build your thinking Because knowing the loop concept it doesn't mean you can print patter in the first go
@cricketfans179
@cricketfans179 4 жыл бұрын
1-Be patient and practice hard 2-Have good concept / theoretical background 3-write down your code on paper first 4-Dry run your code 5-Donot stuck on one problem/move on and then comeback 6-Be consistent with your work 7-Go from Basic to advance 8-Try out DSA 9- Don't jump on the solution manual quickly/Be stubborn 10-Do Projects
@bradalza98
@bradalza98 4 жыл бұрын
Thank you for this summary.
@Accidental_Engineer
@Accidental_Engineer 2 жыл бұрын
Great observation ❣️
@bijayshrestha5820
@bijayshrestha5820 4 жыл бұрын
1st Rule of Programming: If it works then don't touch it
@khanusama4726
@khanusama4726 4 жыл бұрын
😂😂
@girishkondaparthy
@girishkondaparthy 4 жыл бұрын
Lol
@adnankazi9572
@adnankazi9572 4 жыл бұрын
unless it creates bugs 😂😂
@lxlogan1487
@lxlogan1487 4 жыл бұрын
@@khanusama4726 hjhgk
@divyaprabha5844
@divyaprabha5844 4 жыл бұрын
Exactly
@redBaron_80
@redBaron_80 4 жыл бұрын
I recently started coding and currently studying DSA through your videos. This is the real issue I was facing. Thank you man🙏🙏🙏
@mandeepubhi4744
@mandeepubhi4744 4 жыл бұрын
Everything will be covered by practice, First Make your way through Ds Then do Algorithms.
@amarjeetchaudhary5271
@amarjeetchaudhary5271 4 жыл бұрын
Bhai thanku man nhi thanku mam likho
@preetamkumar5414
@preetamkumar5414 4 жыл бұрын
Na hi man hoga ar nahi Mam hoga ma'am hoga...
@amarjeetchaudhary5271
@amarjeetchaudhary5271 4 жыл бұрын
@@preetamkumar5414 bhai mam bhi theek h or ma'am ye bhi pronounciation dono theek h
@tiktokfans8593
@tiktokfans8593 4 жыл бұрын
Watch and subscribe
@ugwudoris2659
@ugwudoris2659 2 жыл бұрын
I just started my coding career, my SA sent this video to me and I hope to come back in future to remember my humble beginning.
@rahuls4863
@rahuls4863 3 жыл бұрын
When I was studying, similar thoughts came - all those what to do, what if .... but now i had forgotten some of them. It is very helpful that you listed them and shared them along with all the practical steps and the reasons. Actually what ever you said is applicable in many situations. Thanks for sharing.
@LogicInside_ei
@LogicInside_ei 9 ай бұрын
kzbin.info/aero/PL-wnLCcB9Y3VWPcbJFuq8OckJiGiE0t3-&si=v4k8Ot8euRptZgtK
@Redmi10Asss
@Redmi10Asss 8 ай бұрын
As a beginner, that's exactly what I was struggling with..I was about to give up since I thought maybe programming is not my thing..thank you for your tips and giving us hope ❤
@matekimagick
@matekimagick 3 жыл бұрын
I am so happy to have found your channel! This video was exactly what I needed today. You have a wonderful, calming way about your teaching. Thank you for taking the time to make these videos!
@JigarThacker
@JigarThacker 3 жыл бұрын
I think you haven't yet seen Abdul Bari video kzbin.info/door/ZCFT11CWBi3MHNlGf019nw
@devanandmishra952
@devanandmishra952 Жыл бұрын
Where are u from ??
@LogicInside_ei
@LogicInside_ei 9 ай бұрын
kzbin.info/aero/PL-wnLCcB9Y3VWPcbJFuq8OckJiGiE0t3-&si=v4k8Ot8euRptZgtK
@tonylessonet6576
@tonylessonet6576 Жыл бұрын
I just started learning dart and faced the logic problem but thank you for boosting my morale.
@anirudhajoshi4332
@anirudhajoshi4332 3 жыл бұрын
YOU ARE ATTRACTIVE MAAM...AND ANYONE WILL LOVE THE SUBJECT YOU WILL TEACH..😍...THE PACE U FOLLOW...THE TIPS U GAVE...THE GESTURES...AND OVERALL ..TAKING OUR CONCENTRATION FULLY ON U...U R GREAT TEACHER..😊
@DimebagGaurav
@DimebagGaurav 2 ай бұрын
Maam acchi dikhti hai ye clear bolo. In every class room there are ppl like u😂
@Codingnasha
@Codingnasha 4 жыл бұрын
i will asks question to all the youth why this type of teachers are not in our college .we are studying to seen faces our teachers they loose our motivation in college and but we are sakt launde we find best teacher on youtube thats is jenny mam .
@rickk3300
@rickk3300 3 жыл бұрын
Commenting the logic implemented at specific lines in program is also very important, since if we revisit the code after a certain period of time, we may not be able to get the logic implemented, at one go. In that case, those comments will be helpful.
@pravinsingh7605
@pravinsingh7605 3 жыл бұрын
A million dollar comment!👍
@nissyvivek87
@nissyvivek87 2 жыл бұрын
I have just started programming. I really want be 6* coder in code chef . Can you share your experience to develop logic and improving problem solving skills?
@DimebagGaurav
@DimebagGaurav 2 ай бұрын
Thats where u apply misra
@ankitsain20
@ankitsain20 4 жыл бұрын
Di aap ne jo btaya hai vo ek dam sahi hai because success means Hard work 🙏🙏🙏🙏
@ifrankenstine8748
@ifrankenstine8748 3 жыл бұрын
Patience and practice is what I am lacking . And trust me sometimes it's really frustrating.
@laxmikurani1678
@laxmikurani1678 3 жыл бұрын
same bro😶
@coltbolt3583
@coltbolt3583 2 жыл бұрын
Madame Thank you for these advices I'm a IT undergraduate Who just finished first year and fed up with the course. This gave me some sort of motivation to continue the course.
@TheBrave22
@TheBrave22 3 жыл бұрын
You are spectator of my mind , you have all the related knowledge regarding my viewpoint on programming... I do exactly as you said , believe me I thought you to be my goddess that has come to tell me my mistakes.... 🙏 Thankyou so much
@muralikrishna-ki4ks
@muralikrishna-ki4ks 4 жыл бұрын
Dear Jenny mam you have a great vioce,it's make us more concentration on every word come out from your Vioce..ThanQ mam.💝💝
@thunderjawgaming
@thunderjawgaming 4 жыл бұрын
tharki XD
@santhoshsivan1721
@santhoshsivan1721 3 жыл бұрын
It's very easy to say but it's very very different to do.. 💯
@aalishajanat1830
@aalishajanat1830 4 жыл бұрын
I subscribed to your channel and going to start to learn DSA from your channel, you are a super teacher Ma'am. Respect from Pakistan.
@kishorofficial__2580
@kishorofficial__2580 4 жыл бұрын
I am from Tamil Nadu , ur teaching is really super.Love u sis😍😍.keep going
@boori9557
@boori9557 3 жыл бұрын
Even me who thinks programming is beyond me, you made think again and I will give it a go.
@ProgrammingCradle
@ProgrammingCradle 4 жыл бұрын
Many people ask me how to improve programming... Even I tell them few of these tips... But you covered good number of tips and it will surely gonna help everybody... I will share this with learners... Thanks for making this video...
@ProgrammingCradle
@ProgrammingCradle 4 жыл бұрын
@BHARATH creations I am 2018 passout...
@sonurathod9551
@sonurathod9551 3 жыл бұрын
how sweetly she explain everything❤️
@MasskingP-f5e
@MasskingP-f5e 7 ай бұрын
One night please
@thetechnician3748
@thetechnician3748 3 жыл бұрын
Golden words There is a no short cuts for success
@sushamasaha4773
@sushamasaha4773 4 жыл бұрын
I get much motivation form your vedios..I am only 16 and I have no basics knowledge in coading....but I have a dream to be a coder .....so a bunch of thank you mam from kolkata🙂🙂
@wonderfulnature5171
@wonderfulnature5171 4 жыл бұрын
Always try to guess When Jenny is gonna say "right"
@rigvedsingh9166
@rigvedsingh9166 4 жыл бұрын
It's when she gets paused .
@chiragrajvaniya2362
@chiragrajvaniya2362 2 жыл бұрын
@ 22:59 The more experience you have, the better you will be this line 👍 give CONFIDENCE
@kathiravan6779
@kathiravan6779 3 жыл бұрын
Great words, Thanks a lot for your tips Jenny.
@LogicInside_ei
@LogicInside_ei 9 ай бұрын
kzbin.info/aero/PL-wnLCcB9Y3VWPcbJFuq8OckJiGiE0t3-&si=v4k8Ot8euRptZgtK
@balambhavanisankar1924
@balambhavanisankar1924 4 жыл бұрын
The way u explaining is hits me like a cyclone...
@arifali6762
@arifali6762 4 жыл бұрын
Thank you 🙏 Jenny. I learn a lot with your tutorials. God bless you. Wish you best of everything for helping people so dedicatedly.
@LogicInside_ei
@LogicInside_ei 9 ай бұрын
kzbin.info/aero/PL-wnLCcB9Y3VWPcbJFuq8OckJiGiE0t3-&si=v4k8Ot8euRptZgtK
@mehaboobbasha2936
@mehaboobbasha2936 3 жыл бұрын
what to do what not to do As a fresher , you did a wonderful work on it , thank you for giving suggestions yaar.
@arifilyas4243
@arifilyas4243 4 жыл бұрын
I WAS A PROGRAMMING NOW CAME BACK TO THIS FIELD AGAIN IT HELPS ME TO MAKE GOOD STRATEGY FOR THE APPLICATION .......THANKS FOR THE TIPS SISTER..
@Diversifiedlady
@Diversifiedlady 4 жыл бұрын
Thanku so much for these tips..... I don't know about others but i was definitely in need of it.
@luckyroyal2845
@luckyroyal2845 4 жыл бұрын
Hi
@Diversifiedlady
@Diversifiedlady 4 жыл бұрын
@@luckyroyal2845 Hi
@sampathkumar-fl6xo
@sampathkumar-fl6xo 4 жыл бұрын
It would be great if we get a video on competitive programming. Specially quickly identifying the data structure to be used, Algorithm to be used, Most common set of patterns where the problems asked to solve, do's and dont's in competitive programming
@tusharbadeewal
@tusharbadeewal 4 жыл бұрын
check my series of web development
@tumwesigyeronnie2877
@tumwesigyeronnie2877 4 жыл бұрын
Love ❤️❤️❤️ from Uganda🇺🇬 glad to have found this channel. Thanks Madam Jenny
@chamnil8666
@chamnil8666 4 жыл бұрын
Please ,can you upload a video about recursive programing,thinking recursively,taking the recursive leap of faith.This video is so helpful.Thank you so much,stay blessed.
@zzinuecode
@zzinuecode 2 жыл бұрын
Thank you so much. I've been struggling with develop my logic thinking. This is very helpful
@rabiabanu1633
@rabiabanu1633 3 жыл бұрын
Thank you for your precious way of explaining how to approach these subjects, I have been confused for quite sometime now.
@anita4722
@anita4722 4 жыл бұрын
Thank you very much..I will start from basic now...🤞🤞
@yosef5508
@yosef5508 3 жыл бұрын
Gosh girl, you have hit the nail while the iron is hot, and by doing so pulled me out of a ditch that I have literally fallen in love with you! Great work!
@rajanjoseph1645
@rajanjoseph1645 Жыл бұрын
Knowledgeable for every common person. Thanks
@kumarkashyappandey6278
@kumarkashyappandey6278 4 жыл бұрын
Not only points are important, ur every sentence spoken in this video is golden. Very practical and every words are from your heart of having very much experience of hard work. Salute to you Jenny Mam!👍👌
@knowledgeoftalk4171
@knowledgeoftalk4171 2 жыл бұрын
First off All i would say Tnq usoo much Ma'am..... This is great Tip's for us .. it's useful to everyones Tnq u ☺️👍
@sachinchoudhary9874
@sachinchoudhary9874 4 жыл бұрын
please make a playlist on competitive programming also!!
@nikhiljadhav9407
@nikhiljadhav9407 3 жыл бұрын
Please take logic building series for intermediate. Your teaching is so cool
@manikantanrj5398
@manikantanrj5398 3 жыл бұрын
Thank you so much for sharing these valuable lessons !!!
@WorldWideVibezz
@WorldWideVibezz 4 жыл бұрын
Very well said, I have done rhe same thing and now I m in a position to understand the problem and approach with an algorithm.
@arvindzagade7537
@arvindzagade7537 4 жыл бұрын
Ma'm It would be a great Help if you make a video on How to build logic for Plotting patterns in programming?
@shreyassinha1207
@shreyassinha1207 4 жыл бұрын
Didn't see the whole video, but came to add up a point. Learn Maths, practice maths improve maths,
@kybhaskar4983
@kybhaskar4983 4 жыл бұрын
Madam your explanation is very much excellent. Definitely need JAVA play list within two or three months. Consider my request
@nganbaoinam2236
@nganbaoinam2236 4 жыл бұрын
Mam I will very thankful to you if you explain step by step with an example.
@BubbleBoyteen
@BubbleBoyteen 4 жыл бұрын
Softwares are like temples. First, you build them and then pray!
@santhoshzeals7130
@santhoshzeals7130 3 жыл бұрын
😂
@allofmystuffs
@allofmystuffs 3 жыл бұрын
😅
@iam_mahesh_maharana
@iam_mahesh_maharana 3 жыл бұрын
🤣
@vishiram6
@vishiram6 3 жыл бұрын
Sometimes some people fall prey
@gamerlord4839
@gamerlord4839 3 жыл бұрын
Logic✌️😂😂
@innerpeace9655
@innerpeace9655 4 жыл бұрын
First thing we should grasp or learn all the topic.. of any programming language completly....
@hustler212
@hustler212 4 жыл бұрын
Coders require this kind of session again and again
@mohammedmills1425
@mohammedmills1425 Жыл бұрын
You are one of the best teacher ever.
@nurulhudakhan8776
@nurulhudakhan8776 4 жыл бұрын
This is very helpful ma'am 🖤 I have taken the screenshot of all the 10 points with you standing besides them and had put it on my wallpaper.
@mavericksantiago319
@mavericksantiago319 4 жыл бұрын
Why should you pass a sexist comment .... if you try to get work in a MNC with this attitude , sorry you will not be hired..... respect women !!!!
@14shahinsiddiki31
@14shahinsiddiki31 4 жыл бұрын
U are amazing maim your teaching way is best thank you so much 😊 now I am fill some confidence
@hajarelalit
@hajarelalit 4 жыл бұрын
#jenny I think understanding memory management of any language will help building programming logic 😊
@sonyashivgune.7116
@sonyashivgune.7116 4 жыл бұрын
True 👍
@walidoulondon8107
@walidoulondon8107 Жыл бұрын
You’re the best teacher ever I learned a lot from you ❤
@tadele3947
@tadele3947 Жыл бұрын
Jeny I love your teaching verily and you!
@shrur3527
@shrur3527 3 жыл бұрын
Thanks a lot mam .wish u all success n happiness in life
@gilmanwazirpoetry3401
@gilmanwazirpoetry3401 3 жыл бұрын
Ur not boring like our teachers 🤦 Thanks for ur lesson 😘
@LogicInside_ei
@LogicInside_ei 9 ай бұрын
kzbin.info/aero/PL-wnLCcB9Y3VWPcbJFuq8OckJiGiE0t3-&si=v4k8Ot8euRptZgtK
@JigarThacker
@JigarThacker 3 жыл бұрын
The only way to master DS&Algo is code code & code. Read problem, try to solve. if not able to solve, check the logic and solution and then write the solution. Even if it is an easy problem, code code code.
@tanishkhandelwal1593
@tanishkhandelwal1593 4 жыл бұрын
These techniques are really appreciable.you are doing great work.please keep it up 👍👍
@movietaker2212
@movietaker2212 Жыл бұрын
i never saw like your exlantion about in programming ,,that much clearly you are saying ,,all youtube videos i watched they are explaining what is what ,,but you are the one giving the concept clearationlike data types ,arrays,sorting,number and star pattern and so on,,, and i want to some c# tutoial
@amruthachandrasekaran6941
@amruthachandrasekaran6941 4 жыл бұрын
Put videos on python language mam. u r my computer guru😍
@abinirshi8604
@abinirshi8604 4 жыл бұрын
Yes
@dikshapandey2705
@dikshapandey2705 4 жыл бұрын
Yess plss mam
@sainathhiramane366
@sainathhiramane366 4 жыл бұрын
Yes ma'am
@shubhamaggarwal3521
@shubhamaggarwal3521 4 жыл бұрын
The way in which u teach is aweaome. And when you turn face to camera side its look like am present there in your class and u r teaching me ..
@angadsudan2332
@angadsudan2332 4 жыл бұрын
Mam some of the tips were super useful but you could have added point that u need to take coding as a fun and understand it rather than cramming. Otherwise it was superb
@akshayjr2638
@akshayjr2638 Жыл бұрын
Ur heart look likes ur face both are beautiful. Hatsoff u miss and lots of love❤️
@preetamraj4147
@preetamraj4147 2 жыл бұрын
I didn't understood anything but i watched this whole video
@pavans7732
@pavans7732 2 жыл бұрын
Haha
@jomarbombita5078
@jomarbombita5078 2 жыл бұрын
Thanks ma'am now i am motivated not because of your lecture but because of you😉
@sunnydivino
@sunnydivino 3 жыл бұрын
Thank you, Jenny. I’m facing this issue with my logic and I hope this helps. I appreciate your effort in the video.
@aayushichouhan8714
@aayushichouhan8714 3 жыл бұрын
You gave me motivation to speaking English tqqqqqq
@veerasakthivela1966
@veerasakthivela1966 3 жыл бұрын
You are sensational ma’am and anyone will love the subject you will teach😀great gestures and overall taking our concentration fully on you ..you r great ma’am 😍
@amanisdreaming3914
@amanisdreaming3914 2 жыл бұрын
Thanks mam, iam a beginner. and this is helpful. and very hopefull that in the coming month I'll be able to code better.
@chirranjitghosh5664
@chirranjitghosh5664 4 жыл бұрын
Mam, your video are very very understandable. I hope you will be keep it up. Mam, i am begged you that make core subjects video series parallelly. It will be help me a lot as well as many serious students. Again, thank you so much for making this type of video.
@yogeshhj9064
@yogeshhj9064 Жыл бұрын
I was very glad to have your channel
@flatmates6166
@flatmates6166 4 жыл бұрын
First time apko 1x pe dekhra hu, otherwise its always exam eve😛 thanks to lockdown
@MohitKumar-mf6wt
@MohitKumar-mf6wt Жыл бұрын
Thank you very much ma'am, this video is very helpful every student's, but actually seeing this video I have learnt many steps coding learning, every steps is every true, now I am hundreds percentage in these steps day to day I will adopt in my coding life, so thank you very much from my heart 💜💜💜💜💜 for you, you are better teacher '''''
@anujyadav7428
@anujyadav7428 4 жыл бұрын
Read a book titled "How think like a programmer" for logic building.
@max477
@max477 4 жыл бұрын
Author, link
@tiktokfans8593
@tiktokfans8593 4 жыл бұрын
Watch and subscribe
@anujyadav7428
@anujyadav7428 4 жыл бұрын
@@max477 www.amazon.in/dp/1593274246/ref=cm_sw_r_apa_i_cRl5EbNVAT087
@samardebnath7174
@samardebnath7174 4 жыл бұрын
Actually i think one should go for Algo by using their own logic. To implement the algo one should have very good knowledge to convert ur algo into code in a language. But i dont think that practice is important. I don't know, with the word of "Practice", madam what did she want to mean. I think one should not be afraid of thinking abt algo if he or she is from the mathematics based background. Another matter we can't think abt anything abt the logic of programming that is not studied in one's life. So first build up ur logic/Algo then convert the code and then analyse the error then rectify it.
@amandwivedi1809
@amandwivedi1809 4 жыл бұрын
Instead of reading , start thinking :)
@pendhotavinay9727
@pendhotavinay9727 4 жыл бұрын
Iam ur fan ma'am keep rocking with ur skills
@AbdulRehman-xz9pn
@AbdulRehman-xz9pn 4 жыл бұрын
well i think its not abt patience its abt Passion, how passionate you're to learn something
@talalsadaqat
@talalsadaqat 3 жыл бұрын
You need both because everyone will face bugs and errors in program so getting frustrated or impatient cant make you a good programmer
@anuragmalviya2397
@anuragmalviya2397 3 жыл бұрын
I'm a bcom guy watching these videos coz my group is of computer application and these are helping me somewhere !!!!
@hassaanraheem5644
@hassaanraheem5644 4 жыл бұрын
Building Logic : try to solve riddles it will be a better technique for building Logic If u don't know the solution then u will think again and again and draw on paper what ur mind think about problem it will be a better technique for improving building Logic.
@RJones-mx2oi
@RJones-mx2oi 3 жыл бұрын
This is the very video that I needed!!! I watched other videos from men but by far, yours is much more relatable and not to take anything away from the men. Some kind soul listed the principles and I screen shot them. THANK YOU AGAIN FOR BLESSING EARTH WITH THIS VIDEO!!
@sahil_0
@sahil_0 4 жыл бұрын
Hello ma'am In data structure u taught about time and space complexity but in some problem both types of complexity is come so ma'am I want to ask that in both of this which we take first preferences.
@Justsimransingh
@Justsimransingh 4 жыл бұрын
Time
@shwanjosef3984
@shwanjosef3984 3 жыл бұрын
why Indians is so smart 🤷‍♂️, thank you very much for your advices 🌹🌹
@BahawalTV
@BahawalTV 4 жыл бұрын
They don't teach flowcharts for logic building now a days. It used to be a good tool to build algorithms and then dry run it. I miss those days.
@kingsleyoji649
@kingsleyoji649 4 жыл бұрын
There is UML..
@BahawalTV
@BahawalTV 4 жыл бұрын
@@kingsleyoji649 There are only two ways to write an algorithm. Either write a pseudo-code or draw a flowchart. That is what I know.
@kingsleyoji649
@kingsleyoji649 4 жыл бұрын
@@BahawalTV I think you misunderstood. UML is a standard modeling system for representing relationships and you can use it to break down problems visually. That's all I was saying. You might like it if you took a look.
@aaryanpatel5936
@aaryanpatel5936 Жыл бұрын
i really appriciate what you have doing mam, not very good catch in english still have motive to do and try. you not only teach us coding but also teach that your try is important
@garvitnagpal4893
@garvitnagpal4893 4 жыл бұрын
want to start learning data structures and algorithms that are most demand in industry I'm semi qualified Chartered Accountant and know python
@siddhantsawant826
@siddhantsawant826 2 жыл бұрын
thanks madam ..for a wonderful lecture................I will follow your steps
@nekkigamer2951
@nekkigamer2951 3 жыл бұрын
I came here only to see my Jenny😍
@Ahmed_Asif
@Ahmed_Asif 10 ай бұрын
This is actually the most important core concept of Computer Science. More precisely DSA.
@hemantkp_
@hemantkp_ 4 жыл бұрын
Hello Ma'am, I learn python language....Should I go through with your DSA series ?
@chathushkasavinda6253
@chathushkasavinda6253 2 жыл бұрын
THANKS FOR YOUR MOTIVATION. I WILL READY MY DEGREE GIVE UP. I THINK DO PROGRMING NEEDS A PROGRAMING SKILLS.RELLAY THANKS FOR YOUR MOTIVATION. from sri lanka
What is difference between Coding and Programming
10:02
Jenny's Lectures CS IT
Рет қаралды 245 М.
Comment Box 3 | Ma'am Are You Married ?
9:56
Jenny's Lectures CS IT
Рет қаралды 3 МЛН
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 42 МЛН
Каха и лужа  #непосредственнокаха
00:15
How to solve any Star Pattern Program
18:47
Simply Coding
Рет қаралды 1,2 МЛН
FASTEST Way to Learn Coding and ACTUALLY Get a Job
8:50
Sahil & Sarra
Рет қаралды 7 МЛН
BEST Way To Learn Programming Language (quickly and easily!) | Placement Series
11:56
How to Speak English like a Pro in 50 Days | Ansh Mehra
18:28
Cutting Edge School by Ansh Mehra
Рет қаралды 2,5 МЛН
Which Programming Language should I learn first?
10:22
Jenny's Lectures CS IT
Рет қаралды 481 М.
Solve Any Pattern Question With This Trick!
57:20
Kunal Kushwaha
Рет қаралды 2,5 МЛН
Disrespect or Respect 💔❤️
00:27
Thiago Productions
Рет қаралды 42 МЛН