3 Developer Roadmaps That Actually Work

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.พ. 2023
  • 1. How to learn coding?
    2. How to learn Python?
    3. How to learn Web Development?
    4. How to learn Java?
    5. How to crack coding interviews?
    6. How to learn Math for Programming?
    7. How to use Leetcode efficiently?
    I will answer all these questions in this video.
    ► FREE resources:
    1. Python Roadmap: • FASTEST Way to Learn C...
    2. Java Roadmap: • How I would learn to c...
    3. Web Development Roadmap: • FASTEST Way to Learn W...
    4. DSA Roadmap: • How I mastered Data St...
    5. Math Skills: • 5 Math Skills Every Pr...
    6. Free Math Course: • Lec 1 | MIT 6.042J Mat...
    7. Leetcode Roadmap: • I solved 541 Leetcode ...
    ► For more content like this, subscribe to our channel: / powercouple26
    ► Follow us on Linkedin:
    / gabag26
    / sarrabounouh
    ► Let's be FRIENDS! / power_couple26
    ► For business inquiries, reach us on: powercouplejourney@gmail.com
    #coding #python #javascript #java #webdevelopment
    DISCLAIMER: All opinions shared on this channel are our own and don't express views or opinions of our employers. We only use our experiences and public knowledge to make our content. NO CONFIDENTIAL INFORMATION of our employers is used or shared on this channel. This is not a Professional Coaching channel, it only highlights the public resources that have worked for our careers.
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    you also need to learn cloud like aws or azure.Full stack development also means learning a bit of devOps and maybe more. Unless you have them,the roadmap in this video will not guarantee that your resume raises eyebrows in all the companies you apply.

  • @hanumantshinde5652
    @hanumantshinde5652 11 หลายเดือนก่อน +5

    The BEST video for beginners it gives you everything you need to start. I have gone through lot of videos but all confusing and was nt able to understand basics of data project. Thanks a lot man.

  • @MeisaCarrotFarm
    @MeisaCarrotFarm ปีที่แล้ว +106

    Your words are actually true. I failed my C programming subjects because on my first year I’m not practicing enough and just trying to find motivation. After I talk to my consultant professor on my studies. I stopped asking for motivations and solving code problems from my professor as much as possible without any complain. I do it enough that I can’t sleep without thinking about code before bed. Today I passed my midterm and I would say I feel 200% different from the that day when I’m on my first year. Certainly I’ll practice more and more. My time with solving problems are the key for me.

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

      Seems like you’re making a great progress. Keep going. I wish you all the luck 👍

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

      เหมือนกันพี่ตอนผม ปี 1 เทอม 1 เกือบไม่รอด Python มิดเทอมเพราะติดเล่นไปหน่อย ตอนนี้กำลังจะปี 2 ผมคิดจะไปสาย Web Dev ตอนนี้ก็เรียน HTML, CSS, JS ไปก่อนเปิดเทอม

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

      @@piyaphummuetkhambong768 สู้ๆ เป็นกำลังใจให้

  • @samuelchinonsoarchibong1477
    @samuelchinonsoarchibong1477 ปีที่แล้ว +151

    I love your analysis because you are right.
    I can build a web app using django [traditional and rest], i know javascript [react, vue, angula] but I struggle to solve code challenges. Now I am learning java and its like my brain has been open to solving problems and writing optimized codes.
    Thank you for sharing!

  • @satendrabais2806
    @satendrabais2806 ปีที่แล้ว +27

    Sir you are a blessing for people like us.. Who are starting. Please make a video regarding App development roadmap.. Describing each aspect as discussed in this video including skills dsa and maths level. Please🙏

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

    I have been in IT, coding, or IT management for 25 years with a six-figure income for half of those and near 100% remote employment for most of the last 10 years. I have survived foremost on my adaptability and the ability to figure things out. As for skills it has been SQL, BI report writing, Data Visualization, Project Management, Windows Sys-Admin, Systems-Engineering, understanding the basic of networks, and research ability when I don't know that has kept me employed. Being able to understand what you are building in context of the larger system is a critical business analyst skill that gives you value to management beyond the ability to code. That said, DO THE WORK TO STAY RELEVENT AND NEVER REST ON YOUR LAURELS is perhaps the best thread of advice common throughout all your videos and that is why I subbed. That is the straight truth.

    • @AbdullahMuhammad-ks8rh
      @AbdullahMuhammad-ks8rh 6 หลายเดือนก่อน +1

      Hi, i have 10+ years of experience, but from the last 6 years i worked in a company where i was mostly interacting with clients, transforming their problem to software solution and implement from developer, thats why i become behind in tech and coding, now company is closed, can you please advise me how to again learn new things, i am .net developer, and how much time it will take me, i am feeling very demotivated

    • @emmanuel-luka
      @emmanuel-luka 27 วันที่ผ่านมา

      I like the part you typed in caps.

  • @naveen12
    @naveen12 ปีที่แล้ว +27

    His entire youtube playlist summed up in one video! Haven't missed any of your video, it is always exciting for me to see your videos.. Thank you Sahil!

  • @user-ek6to2wf2u
    @user-ek6to2wf2u 11 หลายเดือนก่อน +10

    Data structures are fundamental concepts in computer science that enable efficient organization and manipulation of data. They provide a way to store and manage data in memory, allowing for efficient searching, sorting, and retrieval of information. Here's an overview of data structures and their importance:
    Arrays: Arrays are a basic data structure that stores elements of the same type in contiguous memory locations. They offer constant-time access to elements and are useful for storing and retrieving data with known indices.
    Linked Lists: Linked lists consist of nodes connected by pointers, forming a chain-like structure. They provide dynamic memory allocation and efficient insertion and deletion of elements. Linked lists are suitable for scenarios where frequent insertions and deletions are required.
    Stacks: Stacks follow the Last-In-First-Out (LIFO) principle, where the last element added is the first one to be removed. They are commonly used for managing function calls, undo operations, and solving problems that involve a depth-first search.
    Queues: Queues follow the First-In-First-Out (FIFO) principle, where the first element added is the first one to be removed. They are used in scenarios such as scheduling, buffering, and handling requests in a sequential manner.
    Trees: Trees are hierarchical data structures consisting of nodes connected by edges. They offer efficient searching, insertion, and deletion operations. Common types of trees include binary trees, binary search trees, and AVL trees. Trees are useful for representing hierarchical relationships and are the foundation for more advanced data structures like heaps and decision trees.
    Graphs: Graphs are a collection of nodes (vertices) connected by edges. They are versatile data structures used to represent networks, relationships, and dependencies. Graphs enable efficient traversal algorithms, such as breadth-first search (BFS) and depth-first search (DFS).
    Hash Tables: Hash tables use a hash function to map keys to array indices, allowing for efficient retrieval, insertion, and deletion operations. They are used in scenarios that require fast key-value lookup, such as caching, indexing, and symbol tables.
    Now, regarding "gildware technologies," as mentioned earlier, the term "gildware" is not widely recognized in the software development field, and its importance is unclear. If you have any other topic or technology you'd like to discuss or if you can provide further clarification on "gildware technologies," please let me know, and I'll be happy to assist you accordingly.

  • @aswinvignesh3985
    @aswinvignesh3985 ปีที่แล้ว +10

    added many videos from this channel to my playlist, i find at most everything is useful that is posted from the day i subscribed . And this is my 3rd comment to the channel ✌️ . Great work once again.
    Much needed clarity and motivation for me at this instance. Keep going ✌️

  • @nikhil7947
    @nikhil7947 ปีที่แล้ว +34

    Your videos are always knowledgeable bro without any unrealistic stufffs ,it motivate us to do more practice again thank a lot and keep it up 😀😀

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

    I agree, but, unfortunately, it’s very hard to predict what the companies wants and when they will change. Like, right now, they want SQL and Power BI in most of non experience Data jobs.
    Python or R doesn’t seems that much important now. But few years ago, when instead of dead, " data science " were sexy, they getting more demanding, even for beginners roles.

  • @markornido
    @markornido 11 หลายเดือนก่อน +1

    Seen 2 videos of yours, and I would say your know what you're saying, and laying the exact sequence for your audience, keep it up... thanks

  • @continuousself-improvement1879
    @continuousself-improvement1879 ปีที่แล้ว

    Thanks for having no long-winded intros and music and just get straight to what people came for.

  • @vansan3211
    @vansan3211 6 หลายเดือนก่อน

    Such valuable information. Subscribed! I’ve stumbled upon other videos of yours and your style is what motivates me most. Funny enough, I started listen to the atomic habits audiobook just a few weeks ago. Need to get back on that. The hardest part with me for habits is that I currently work in the airline industry and have zero consistency in my day or schedule. It makes it much more challenging to develop a habit of any kind. I feel motivated to do this, though, so I’m sure I can figure something out.

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

    Thanks sahil for your valuable advice, I'm consistent in programming because of you 👍

  • @moddedlaker
    @moddedlaker 3 หลายเดือนก่อน

    The way you deliver your words sir are superb..It was like you cracked the perfect algo on how to make tech people stick on the video until end. You have my sub!

  • @sanjunandi1627
    @sanjunandi1627 ปีที่แล้ว +97

    I really like your attitude sir, at first glance ur expressions seem like ignorant to others but your words say something totally opposite, thanks for these videos , started my journey with Python though I am from Arts background. 🙏

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

      Good luck Sanju 👍

    • @ShivamSharma-us9hh
      @ShivamSharma-us9hh 8 หลายเดือนก่อน

      Sanju bhai arts stream wale ho hard hain kya ye sab tum bca se ho ya b. Tech

  • @Rashik25
    @Rashik25 11 หลายเดือนก่อน

    Clear and awesome advice !
    Impressed ! Keep going sir !

  • @divakerbhardwaj9386
    @divakerbhardwaj9386 ปีที่แล้ว +14

    You are the best and actually a true leader ! Much appreciated brother, can’t wait for more!

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

      Thanks Divaker! 🙏

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

      IKR? His videos have substance. This is the best word i can think of when describin Sahil's channel. No BS, no vague motivational crap. Just pure useful and real advice. Love it

  • @umarmuzammil7332
    @umarmuzammil7332 3 หลายเดือนก่อน

    I truly love your channel. Keep doing the best work.
    Such creative videos you’ve on this channel. Just subscribed!
    Officially the first viewer of any video on this channel.
    I’ve never witnessed such awesome editing as this one.
    Following your channel from the last two years, interesting content!
    You’re working so hard, may all your wishes come true.
    Congratulations on your first 10K followers, may you reach 100K soon.
    Whoever is reading this, never give up. God is with you.
    When watching your videos, I accidentally hit ‘like’ and never knew when.
    The moment you came here is at 05:17.
    Love this video, I think I’ve watched it four times.

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

    Sir you are really a caring person..
    I needed a channel exactly like this..
    Subscribed..

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

    short, dynamic and to the point. nice video. thank you!

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

    The much needed video , as I have my placements in 5 months , thanks ❤dude!!

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

    I loved your video because of the confidence and the style you deliver the correct in detailed content, u mention everything which comes to our mind when we see ur video and u explain that as well.
    I'm looking to implement all the necessary steps you have given to learn about
    Very very thankful to you my brother,no one is there to help me to give the correct directions and to advise the mistakes in learning
    Grateful for this video as well as for your yt channel❤

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

    Wonderful delivery of knowledge sir 🙏🙏 Such a beautiful flow of talent

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

    Such a great deep thoughts video really appreciated explaining things in a very simplest way
    One recommendation from you please.
    I started coding with C++ first basics then OOP and then DS. Can you recommend me now which pathway should i go?

    • @Basit.
      @Basit. ปีที่แล้ว

      Kindly Reply it please

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

    Sir I would request you to upload videos on daily basis because your videos are goldmines ❤️

  • @KINGMODEOFFICIAL
    @KINGMODEOFFICIAL 10 หลายเดือนก่อน

    I like the way he talks very calmly. The words seep into my brain.

  • @sebastiangrandes
    @sebastiangrandes 6 หลายเดือนก่อน

    Great video !. I'm not sure whether to continue down the path of web development or Java. I've started learning the former, but I would like to have more opportunities to advance and perhaps be like you one day, and from what I see, I could achieve that with Java. However, I'm afraid I won't be able to find a job in my country, Peru... I don't know if anyone would want to hire me having learned Java on my own, but in web development, I think it's possible.

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

    Really good videos and amazing attitude. I am manual tester and want to learn automation using c#. Can you suggest road map to learn c#?

  • @ravikiranjk3991
    @ravikiranjk3991 7 หลายเดือนก่อน

    The best Guidance I ever seen❤.Thank you Sir😊

  • @yadugirin2564
    @yadugirin2564 5 หลายเดือนก่อน

    hey man this guy is just a enlightenment, got some understanding of where i stand now thanks a lot sir

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

    Thank you ✨this cleared some doubts i had for months

  • @ego-lay_atman-bay
    @ego-lay_atman-bay ปีที่แล้ว +62

    I actually learned python and front end web development (no frameworks) just from google. I actually didn't follow video tutorials when learning the languages, instead, I gave myself a project, and used google to figure out how to make it. I don't necessarily like video tutorials, because most of the time, they spend way too much time explaining the basic stuff. I like articles more, because I can just skip to the code, read it, figure out what it's doing and decide if it's what I'm looking for.

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

      it may be the great learning methods bro, and i think i use wrong learningg methods such as downloaded 400 youtube tutorials video and learn from there over 4 months, now decided to slicing ui design with html css and just confused, now building zero portofolio
      so how abput your learning methods does it works well for you?

    • @ego-lay_atman-bay
      @ego-lay_atman-bay ปีที่แล้ว

      @@yokoso2386 mine works pretty well for me, because I'm not waisting time on tutorials that I'll forget immediately. Sometimes it does take googling the same thing a lot to get it to stick though.

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

      @@ego-lay_atman-bay yeah absolutly right based on experience, btw can you give me some tips/understanding on how to search on google based on you experience? frequently when i want to search on google but dont know what to search and how to search for the right solution

    • @ego-lay_atman-bay
      @ego-lay_atman-bay ปีที่แล้ว

      @@yokoso2386 whenever I want to know what something does, I search for that thing and include the language after, e.g. "for loop Python". If I want to know how to do something, but I don't know the function, I search that, e.g. "how to create tkinter window". Usually when you include a package (module, library) name, you don't need to include the language.

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

      That's great. I think everyone has been sucked into visual learning forgetting that it's an easy way to get into tutorial hell.

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

    Ur approach is so wonderful .

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

    Sir,
    Very Informative Video
    Thank You.
    👍

  • @user-pu2zh5ky6e
    @user-pu2zh5ky6e ปีที่แล้ว

    Everything is linked in your videos, I really appreciate that

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

    This helps man, thanks! 😊

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

    FINALLY! Thanks a lot for the consideration, brother.

  • @ansarishahid1113
    @ansarishahid1113 10 หลายเดือนก่อน +1

    I requested you plzz make video for Software professionals who are already working and not able to decide where to move further.

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

    we talk about these interviews and they require DSA, can someone explain how you land those interviews?is it like every year like an annual thing or do they post on their websites(which website say for google?) or is there any other way?

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

    Happy to see your video. I Always wait for your video.

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

    Just yesterday I went to prepare the road map of my own... Your suggestions and mine are perfectly same... By end of this video, I realised that I should have math knowledge. Let me put it on my road map. Thanks 😸

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

      That’s great. Good luck 👍

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

      Which path are you choosing from 1:42 ?

    • @vaithegivy6647
      @vaithegivy6647 11 หลายเดือนก่อน +1

      Is Java and DSA enough for getting a job dude??

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

    I like this sharing keep going practice is crucial and so important to success thanks

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

    Wonderful ! Thank you 🤗👍

  • @_pro_grammer_
    @_pro_grammer_ ปีที่แล้ว +16

    I saw every content you uploaded, your whole channel is great guideline, full learning path, it says all the true stuff. Continue like this💙
    Your full channel is enough to guide a totally beginner. Hope your channel grows much more.
    Some how, I feel so inspired by these conttents.
    Now I'm getting better every day, its little but continuous
    💙💙💙

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

      That’s great to hear, Rafiul 👍

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

    concerning the Back end part, there is also Java, PHP, C#, nodejs for javascript

  • @gokulv8728
    @gokulv8728 10 หลายเดือนก่อน

    This is the exact video i want now i found it
    Thank you so much for give clear cut information i need , i am very great full for watched the videos🙏🙏

  • @NoName-im9rp
    @NoName-im9rp ปีที่แล้ว +2

    hey sahil what to do after learning java do dsa or web development please tell love your content ❤️❤️

  • @sadiulhakim7814
    @sadiulhakim7814 ปีที่แล้ว +391

    HTML + CSS + JAVASCRIPT + JAVA = 🔥🔥🔥🔥🔥

    • @sahilandsarra
      @sahilandsarra  ปีที่แล้ว +91

      🔥🔥🔥

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

      Really?

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

      @@UltimateAbhishek Any doubt?

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

      @@sadiulhakim7814 yes bro I am new to coding and learned core java, should I do DSA or HTML+CSS+ JS

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

      @@UltimateAbhishek Java + DSA first

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

    Its good to know there are youtubers who tell the truth and help others who have challenges

  • @RahulBhatia-py1iv
    @RahulBhatia-py1iv 5 หลายเดือนก่อน +2

    I know all 3 languages java python javascript . Which path should i choose for full stack development
    Spring django mern .
    AND ALSO FOR DSA WHICH LANGUAGE PLZ HELP❤

  • @Badalkumar-ht6wn
    @Badalkumar-ht6wn ปีที่แล้ว +2

    Brother I love your content can you provide some resources for flutter devloper and does one have to start web dev or app development

  • @Qiret_Alain
    @Qiret_Alain 7 หลายเดือนก่อน

    The way You Explain
    Is Awesome,

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

    Can you make a video on topic about people who love coding but don't like web dev or app dev ? I love DSA and problem solving but development seems too intimidating to me , with all these technologies to learn it seems messed up.

    • @sumanamaggy1093
      @sumanamaggy1093 10 หลายเดือนก่อน

      Same
      Did you find anything?

    • @darshantawte7435
      @darshantawte7435 10 หลายเดือนก่อน

      @@sumanamaggy1093 You can get a tech job soley based on a programing language like C++/Java/pyton , DSA , Version control system , knowledge of Databases. I found Machine Learning and AI to be a fascinating subject hence learning and developing projects in this domain.

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

    Can you suggest me some resources , actually i am struggling with choosing problem specific language and i am very much eager to learn to how to choose a language depending on the problem , as you said in the backend part people mostly go with nodejs or python , then why not Java again in some specific web app people go with Ruby on rails ... Please share me some resources so that I can independently choose a specific language according to a specific app without relying on vlogs and videos what and what not to use ... It will be very helpful for me 🙏 and i love your content so much i have learnt a lot from you ❤️

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

    Excellent nice video Thanks for sharing Good job

  • @venup6390
    @venup6390 11 หลายเดือนก่อน +1

    Sharing your knowledge for our future is just ❤❤❤

    • @sahilandsarra
      @sahilandsarra  11 หลายเดือนก่อน

      ❤️❤️❤️

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

    Do you have any opinion on Game Programming? Learning C# / Unity, or C++ / Unreal ? Learning Graphics Library like OpenGL or DirectX for Graphics Programming, or also learning Physics programming?

    • @JayJay-wq1yg
      @JayJay-wq1yg ปีที่แล้ว

      C++ unreal is any day better but also hard on the other hand c# unity will be hands on if you’re novice!

  • @siddharthl.m3598
    @siddharthl.m3598 ปีที่แล้ว +1

    Can u also give some practical ways to learn coding in a easy and enjoyable way . And even what to do and not to while learning coding. Thanks in advance

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

    Hey man can you guide me where i can learn Ruby programming language. Any resources. Or course. It would be a great help.

  • @manojvitharana6512
    @manojvitharana6512 6 หลายเดือนก่อน

    Thank you for the excellent explanation.

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

    Hello there, I love watching your videos. I have a question though. So I have been giving interviews and solving leetcode problems in JavaScript as I have good command over JavaScript. Some people including one interviewer said that solving leetcode problem in Java will convince them more if job position requires Java as skill. Is that true? Thank you in advance.

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

      If someone is looking for Java Developer specifically, they might make you code in Java. I have never had any problem using Python in my interviews.

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

      @@sahilandsarra Thank you for replying!

  • @putinvladimir420
    @putinvladimir420 5 หลายเดือนก่อน

    but eventually you'll need great projects to get resume shortlisted, where you'll showcase your DSA skills, and for that web dev is also needed or maybe mobile dev, and DSA is must

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

    Please make a video on data science and machine learning.

  • @infinitusomnia243
    @infinitusomnia243 7 หลายเดือนก่อน

    I still can decide what path to go… just starting here!!!

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

    Also i would like to ask does our education marks have impact in getting the job opportunities? Asking cause I have in one education course below 60%.

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

    you're my inspiration , thanks a lot man

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

    Sir what's your thoughts on dev ops engineer.?? And also on cloud associative ?? . Please give your valuable reply . So other can also see this thing 😃😃

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

    Excellent information video my friend 👍 new friend here 😊 Thank you very much for sharing 👍

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

    Sir, computer engineering study ke liye 11-12th maths ke Kaun kaunsa topic acche se Anna chahiye ?

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

    thanks for your great motivation !

  • @nithishm.r201
    @nithishm.r201 ปีที่แล้ว +1

    Is learning python and c++ at the same time simultaneously a good thing.Iam having both of them for my semester.can someone tell me

  • @yadugirin2564
    @yadugirin2564 5 หลายเดือนก่อน

    can you please share your thoughts on devops ?
    any such kind of road map or how to get started with

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

    thanx bro [ love you ] 😀

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

    you are awesome guy man & you are damn genuine..

  • @AyoUb-ts3bh
    @AyoUb-ts3bh 11 หลายเดือนก่อน +1

    Bro never breaks eye contact 🔥🔥🔥

  • @horacioparraguirre7486
    @horacioparraguirre7486 5 หลายเดือนก่อน

    Thanks a lot for your video 👍😃

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

    Thumbs up for speaking truth...

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

    Great video thanks 👍

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

    Hi I am a self taught learner also. Can you suggest the best resources for front end too because I have heard that many good programmers face difficulties in front end side. TIA

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

      I have already made a video on this topic.

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

    Sahil Bhai,
    How much concept should I cover in a day.
    Can u pls provide a time table that u follow it may helps a lot.
    I am not able to create a time table.

  • @Manas_Chagi
    @Manas_Chagi 10 หลายเดือนก่อน

    guy just recommended soo many of his own videos through this one video!

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

    Sir can you please tell how much JavaScript and CSS should I learn to move to frameworks like React and Tailwind CSS respectively.

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

      Make sure to complete all the basic css before moving to a css framework, also you should know JavaScript vanila properly(don't learn advanced stuff, functions, classes etc should suffice) then you can move tonthe respective frameworks.

  • @JoeM370
    @JoeM370 7 หลายเดือนก่อน

    This is top-of-the-line material. I read a similar book that was a huge turning point for me. "AWS Unleashed: Mastering Amazon Web Services for Software Engineers" by Harrison Quill

  • @jaimedpcaus1
    @jaimedpcaus1 11 หลายเดือนก่อน

    Simply excellent!

  • @parthrathod625
    @parthrathod625 10 หลายเดือนก่อน +1

    Please make a video on How to learn App Development

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

    Guys I have learned Python and am perfecting my DSA skills while solving leetcide problems everyday, I am interested in Data Science and am eventually planning to learn it but I need a job first (have some financial issues), what is the easiest roadmap to a job for me? Willing to learn anything etc Django, Flask, Numpy, Pandas

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

    I am doing job i want to do coding part time or like freelancing which one should i choose?

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

    sir, please tell me what I should become ui /ux developer or ai developer, which job is best for me,
    if I become ui or ux developer, are there possibilities that ai will take over my job?

  • @keziakandii
    @keziakandii 10 หลายเดือนก่อน

    I haven’t done freelancing yet because I am overthinking how I will give them their website. Do I deploy it myself or give them the files??

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

    Hi good work Brother. Can you do video for software testing too. Thanks in advance

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

    hands down nthe best roadmap video

  • @vann-dev
    @vann-dev ปีที่แล้ว +2

    Thanks for sharing.

  • @trijay
    @trijay 10 หลายเดือนก่อน

    8:05 lit 🔥
    Please make video on freelancing consequences of an employee who is already been part of employer ...but not sure whether his /her employer allows him to do

  • @ssy648
    @ssy648 11 หลายเดือนก่อน

    I'm interested in Golang do you think it's worth studying? My plans are learn java for solve problem and golang for work in future

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

    A question, please, will the front-end field remain in demand or not, and what do you advise me to do? Thank you

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

      I already covered it in video.

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

    I think Java can also be used in the backend web development as well as c# , so why not learn Java and use it in the backend?

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

      Almost all languanges can be used for backend. It depends on you

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

    Since Python is less verbose than Java, did you use Python when passing interviews even if you took the Java path ?

    • @Venom-yk3wu
      @Venom-yk3wu ปีที่แล้ว

      he cracked google n amazon with python

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

      @@Venom-yk3wu how do you know for Amazon ? For Google he did mention it in a previous video.

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

    I have almost 3 years exp in react, i am learning java now , my goal is to become a java/react fullstack dev. Is it a good path?