• Discover
    See what’s happening on Girls Ask Guys now!
  • AI Personas
    AI Influencers answer your questions!
  • Popular
    Check out the most interesting ones of the day.
  • Questions
    Share your opinions on the questions.
  • myTakes
    Discover myTakes that may interest you.
  • Polls
    Vote on the polls, set the agenda.
  • Top Members
    See top members and meet the community!
  • Contact
  • Terms of Use
  • Privacy Policy
  • Age Policy
  • Guidelines
  • Tags
  • All Questions
Google Play Apple Store
Topics (22) All
  • Girl's BehaviorGirl's Behavior
  • Guy's BehaviorGuy's Behavior
  • FlirtingFlirting
  • DatingDating
  • RelationshipsRelationships
  • Fashion & BeautyFashion & Beauty
  • Health & FitnessHealth & Fitness
  • Marriage & WeddingsMarriage & Weddings
  • Shopping & GiftsShopping & Gifts
  • Technology & InternetTechnology & Internet
  • Break Up & DivorceBreak Up & Divorce
  • Education & CareerEducation & Career
  • Entertainment & ArtsEntertainment & Arts
  • Family & FriendsFamily & Friends
  • Food & BeverageFood & Beverage
  • Hobbies & LeisureHobbies & Leisure
  • OtherOther
  • Religion & SpiritualityReligion & Spirituality
  • Society & PoliticsSociety & Politics
  • SportsSports
  • Travel Travel
  • Trending & NewsTrending & News
Discover
Community of trusted and anonymous friends where girls and guys help each other.
A good descriptive title will get more attention. Min 15, Max 150 characters.
Add Details Detail the problem, add images or a poll, or become anonymous.
Get title support
Let AI help you write the title.
0 / 150
Log In / Sign Up
Topics(22)
All
  • Girl's Behavior Girl's Behavior
  • Guy's Behavior Guy's Behavior
  • Flirting Flirting
  • Dating Dating
  • Relationships Relationships
  • Fashion & Beauty Fashion & Beauty
  • Health & Fitness Health & Fitness
  • Marriage & Weddings Marriage & Weddings
  • Shopping & Gifts Shopping & Gifts
  • Technology & Internet Technology & Internet
  • Break Up & Divorce Break Up & Divorce
  • Education & Career Education & Career
  • Entertainment & Arts Entertainment & Arts
  • Family & Friends Family & Friends
  • Food & Beverage Food & Beverage
  • Hobbies & Leisure Hobbies & Leisure
  • Other Other
  • Religion & Spirituality Religion & Spirituality
  • Society & Politics Society & Politics
  • Sports Sports
  • Travel Travel
  • Trending & News Trending & News
Health & Fitness Marriage & Weddings Shopping & Gifts Technology & Internet Break Up & Divorce +16
Education & Career

How difficult is coding?

Whatthefluff
Whatthefluff Follow
Master Age: 23
Follow
Facebook
Twitter
WhatsApp
02
Ask AI
Is it worth it to learn coding on one's own, and what should I use as a reference if so?
How difficult is coding?
Post Opinion
Like
Share
Follow
2 likes
What is your opinion?
What is your opinion?
Add Opinion
Superb Opinion
  • IlyaTheImpaler
    IlyaTheImpaler Follow
    Guru Age: 26
    +1 y
    540 opinions shared on Education & Career topic.

    I'm assuming you are talking about punching buttons on your keyboard to make computer do stuffs and not coding in coding theory. I have never really used the term "coding" to refer to programming.

    How difficult is programming?

    About as difficult as writing a story.

    Programming is about expressing your imaginations and daydreams in the most honest way possible through formal logic. So it's not just about telling the computer to do something for you, it's also about telling a good story through a novel medium of the 20th century called the "programming language", a story that everyone can agree on what exactly happened, and the computer realizes that story.

    I consider programming a branch of mathematical logic, mathematicians write stories too, except they don't use programming language and they don't care about realizing (or should I say reify?) their stories. Physicists (after Bohr) officially recognize that some stories are best left in the abstract realm :)) (but when they get old, the bad habit keeps coming back)

    Is it worth it to learn on one's own?
    Yes. I don't know any other way to really learn it. Programming is not something that other people can just tell you what to do and you repeat it.

    What should I use as a reference?

    try SICP
    https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-9.html#%_chap_1
    alternative link: https://web.mit.edu/alexmv/6.037/sicp.pdf

    This is the book I used to learn programming when I was your age. SICP is a rather unique book in that if you read it at young age it might alter your fundamental beliefs about computers and programming. Not everybody will experience this.

    A brief overview:

    Chapter 1: building abstractions with procedures:
    Programming starts with three essential mechanisms to express complex ideas: primitive expressions, means of combination (operators and call expressions) and means of abstraction (naming, variables)
    and two things those mechanisms act on: procedures (basically functions) and data.

    Going deeper into procedures/functions, you learn about the typical patterns called recursion and higher order procedures - how to pass functions around as arguments and return them as values (think of them like the kind of plots a good story usually has).

    Chapter 2 goes deeper into the other thing: data, first, their structure, then how to abstract data by imitating those structures and make programs operate on abstract data. The most fundamental data structure is a list, everything is a list :) basically a finite sequence, a n-tuple, yes it's literally just a vector from linear algebra lol...
    and you will learn how to make programs process lists. A simple operation that is said to be powerful enough to simulate the universe.

    Chapter 3 is less about abstraction and more about the reality you encounter whenever you design programs (or tell your story): objects and states, the previous chapters are about the plot lines, these are your main characters.

    Introducing assignment statements allows variable to change value, which leads to the creation and maintenance of objects with state. Our data is now mutable (more flexible). Our programs now have local states, and it's no longer a black box with inputs and outputs, it has side effects going on inside the box.

    Then the book tells you about the power of mutable data: the ability to model reality from simple things like circuits to Lagrangian mechanics (which is pretty much 100% of physics before 20th century).

    Then the book tells you about the cost of mutable data: time has entered the picture (before our programs were timeless, expressions have unchanging values). This leads to issues with concurrency. To process big list efficiently, you need objects with concurrency, but this doesn't work with mutable state. The notion of streams was introduced to solve this problem. Stream is a mechanism for delayed execution of functions on lists. The main idea when you process a list L with function f, you don't do all computations f (L (i)) at the time the f is called, instead f returns another function g = f (L) that will do the computation on its corresponding list element L (i) at the time that L (i) is needed, basically f (L (i)) = g (i)

    At the end of the chapter, the book tells you when objects are useful, you don't want to use them for everything, it's also the best exposition on Quantum Mechanics I read at the time (lol)

    The object model approximates the world by dividing it into separate pieces. The functional model does not modularize along object boundaries. The object model is useful when the unshared state of the “objects” is much larger than the state that they share. An example of a place where the object viewpoint fails is quantum mechanics, where thinking of things as individual particles leads to paradoxes and confusions. Unifying the object view with the functional view may have little to do with programming, but rather with fundamental epistemological issues.Chapter 3 is the end of the basic parts of the book. Chapter 4 is where you finally ascend to become an apprentice wizard.

    Chapter 4 teaches you how to teach your computer to read your story, by telling it a story :))

    In other words, you learn to design an interpreter:

    The evaluator, which determines the meaning of expressions in a programming language, is just another program.

    First, you learn the most fundamental interpreter: the meta-circular evaluator.
    The two central concepts are `Eval` and `Apply`. It's meta because it acts on the language elements, it's circular because it's a circle :)
    in `Eval` you call `Apply`, in `Apply` you call `Eval`. You can find the `Eval` - `Apply` symbolism in the front cover.

    Second, you learn the lazy interpreter that does delayed evaluation. We have entered the domain of creating new languages from existing ones:

    ... new languages are often invented by first writing an evaluator that embeds the new language within an existing high-level languageThird, you learn the nondeterministic program interpreter, it does ambiguous evaluation, it's called `amb` :)) featuring automatic search: you specify a problem, an input range, the interpreter searches all solutions that satisfy the constraints.

    In the last section of chapter 4, you learn how to build an interpreter for logic programming. Basically this interpreter turns your programming language into a logical language: first order logic. This is familiar ground for math students. I enjoyed this section. It should be obvious that the `amb` interpreter above is very close to dealing with declarative sentences in logic so that should be the starting point right? nope, we do it the hard way, the book tells you to start from the lazy interpreter (it's pretty hilarious, but building logic interpreter from `amb` was left as an exercise)

    Chapter 5 is the entry to the domain of Wizards, you like computers? here we build a computer within your computer: the register machine

    Starting with a quote from Johannes Kepler "the heavenly machine is not a kind of divine, live being, but a kind of clockwork ", the goal is now to tell your computer how to realize your story. By "your computer" I mean the register machine model that carries out sequential instructions in assembly language by loading and storing fixed memory elements (the registers), it's a program in your real computer lol.

    Some details of the interpreter were mysterious before because it's a program that interprets programs so the inherited structure has no further details. Now these details are completely transparent because the interpreter is a program that interprets programs but also runs in a simulated computer that we built. The processes are no longer directly described by language elements but by step-by-step operations of a traditional computer and the computer is described by language elements.

    Again to appreciate how trippy this is:
    we now have an interpreter that turns a typical programing language's code into assembly code, and runs it on a model of a computer (the register machine); and this is all done inside another interpreter of that same language, this interpreter is running on the real computer, e. g your laptop.

    The final section of the book is a glimpse into the Sword and sorcery of programming: how to build a Compiler.

    "He tried to slay the dragon, he missed the mark, now he's gotta face the fire."
    "He tried to slay the dragon, he missed the mark, now he's gotta face the fire."

    The idea is to by pass the interpreter. We want our high level language to turn directly into assembly language through a process called compilation, our register machine also needs to be modified to not rely on the interpreter. The "typical" high level language mentioned above and the one this book uses is called Scheme. Don't worry you're not gonna get any job writing Scheme code. In the last two exercises you write a Scheme interpreter in C and a compiler in C. When you move to C it's basically a welcome to the real world of programming.

    Basically, just read chapter 1-3 (and maybe 4.1) and do every exercises. Yes, it's possible to solve programming problems with pen and paper, though I would recommend using the computer at some point :))
    download and install https://racket-lang.org/
    and https://docs.racket-lang.org/sicp-manual/index.html

    1
    2 Reply
    • alwaysintosomething
      alwaysintosomething
      +1 y

      what languages do you know?

      Reply
    • IlyaTheImpaler
      IlyaTheImpaler
      +1 y

      @alwaysintosomething Aside from the ones mentioned? just mainstream general languages like Python, Java, C++, Haskell, JavaScript, Julia and some domain specific languages like SQL, HTML, Matlab, Wolfram Mathematica, R... honestly I don't keep track of them.
      Picking up some language is situational and mostly trivial, it depends on the problems you care about. E. g if you want to toy around with machine learning algorithms or neural networks then get used to Python because the community mostly uses Python and the libraries are written in Python. For matrix algorithms in finance, it's C++, for mining large datasets using Spark, well it only has APIs for Python, Java, Scala and R, so pick one. I think I picked up Julia during some project in numerical linear algebra ages ago. In recent years I literally only touched Python and SQL lol

      Reply

Most Helpful Opinions

  • AlexEfron
    AlexEfron Follow
    Guru Age: 26
    +1 y

    Depends. I find coding to be easy and fun. Also it depends where you start.
    Coding in Java can be intimidating. I find python best for beginners. The syntax is so beginner friendly and so much fun 😍. And there are so many modules you can use.

    Once you understand how programs work, it becomes easy. Because all orogamming languages function similarly, with different syntax.
    Same old variables, datatypes, iterators (loops), collective data types - all these are common to all programming languages... With the exception of differing syntaxes.

    Also... Some programming languages are more suited for certain specific tasks.
    If you're goal is Data Analysis, complex mathematics and AI related, go for Python and MATLAB
    You want to learn and have fun competing online - go for C++ (also predominantly used for android libraries)
    Want to learn about Operating System and Android Kernel - C
    (C might seem different from other programming languages as it isn't object oriented)
    Appsand softwares - Java, Kotlin
    Web development - HTML, CSS, PHP, JavaScript
    Database related - SQL

    So it depends what you are interested in. If you see that a particular language suits your interest them you might enjoy learning that language and programming would seem a lot easier as compared to other languages.

    In general if someone wants to start coding, I'd suggest Python. 😊

    0
    0 Reply
  • Anonymous
    Anonymous
    (25-29)
    +1 y

    It depends on a lot of factors, what are you trying to code? For example, web programming is easier than programming for NASA. I graduated this year with a degree in Computer Science, and I have grown to hate programming/coding. I love that you can create and make many things with it, but I personally hated the process and career field. Strict deadlines, and getting a project that you don't know if you'll be able to figure out, or if you'll get stuck on it was a huge stress for me.

    Coding is like a logic puzzle, and I like that aspect of it! But be prepared for things to go wrong because it will. In my experience, programming goes like this: do a lot of work, expect it to go wrong; ok what went wrong? Find the error and fix it. Then run the program. Another error. What's wrong now? Find that error and fix it. It works! Work a little more. Another error. What's wrong now? Spend 3 hours working on it, to find it was a typo that broke everything. Great! Everything works! Work some more. Now everything is breaking. Realize your whole fundamental logic is broken. Fix it. Now you have new errors. You find and fix the errors! Repeat.

    This is a lot of programming, and why I'm trying to get a job unrelated to programming. But, if you really love it, go for it! I say all of these negative things, but I have talked to so many people who love it, and I don't want to discourage you. There are a lot of cool and awesome things about the field too! Ask me any questions you want!

    2
    0 Reply
  • IronLady6354
    IronLady6354 Follow
    Yoda Age: 47 , mho 56%
    +1 y

    It's not nearly as difficult as you'd think. It's not so much that it's difficult as that it takes a lot of time/effort/discipline to become proficient in a language if you're learning on your own. But if you want to do it then go for it! You don't have to be a genius to learn online on your own and it can open up a lot of opportunities!

    1
    0 Reply
Ask to an AI Persona
All
Athletic Chloe
Athletic Chloe
Whether you need tips on improving your game, insights on fitness and nutrition, or just want to...
Gamer Bella
Gamer Bella
With my passion and experience in hobbies and leisure activities, I'm here to offer personalized...
Advisor Smith
Advisor Smith
With years of experience guiding individuals in their education and career paths, I'm here to...
Cinematic Lily
Cinematic Lily
With my rich background and passion for the arts, I share insights on films, TV shows, and...
Love Doctor Brad
Love Doctor Brad
Welcome to the heart of understanding and transformation. I am your guide on this journey to...
Travel Buddy
Travel Buddy
I'm your go-to travel companion, passionate about exploring new destinations and experiencing...
Fashionista Amy
Fashionista Amy
I'm here to inspire and guide you with a touch of latest trends or advice on personal style.💅👒
James The Foodie
James The Foodie
From savoring Italian classics to discovering the bold flavors of Japanese cuisine, I explore...

What Girls & Guys Said

3

Opinion

33

Opinion

  • Levin
    Levin Follow
    Master Age: 41 , mho 34%
    +1 y

    I'm no expert, but I'm learning sql off udemy. Think the course was like £12 reduced.

    I don't think it's hugely intellectually challenging. But it'll definitely keep you engaged. From what I can gather it's more like learning a language, ie it's all about practicising speaking. It becomes easier with familiarity.

    The frustrating part is when you have a problem and you don't have a decent source of help. That's what'll make you throw your comp out of a window. Youtube is actually a good resource also in addition to what has been mentioned. Look for videos that are popular and have good feedback.

    1
    0 Reply
  • SjE78
    SjE78 Follow
    Guru Age: 48 , mho 32%
    +1 y

    it's worth learning but speaking from experience of someone who wanted to code games years ago, and never got the chance despite applying for a programming course at the local college... few years down the line and a friend of mine who runs his own company doing websites, tried teaching me to read and create code, my brain almost fried... it was that moment i realised not only am i better with hardware but Coding, isn't for everyone...
    with that being said... it is well worth learning, and seeing if you can achieve what others have not, and as such i would wish you luck... and follow what you want to do in life...
    start out on the most common and simplest language for coding you can and work up from there...

    1
    0 Reply
  • Unit1
    Unit1 Follow
    Master Age: 31
    +1 y
    453 opinions shared on Education & Career topic.

    JavaScript is a very good start. It can be used for Web development or application development and it's cross platform (C++ is very popular also). However for simplicity reasons and for the sake of training how to code Python 3 can be used too and I saw Python web servers being hosted.

    Coding is "not that hard". The hardest parts are debugging and finding out where the problem is and where the code malfunctioned or why your device does not do as you want it to do.

    If you aim to become a software engineer or software tester, you'll find that these skills are essential to have much like knowing English if you live in the USA.

    3
    7 Reply
    • ThisAndThat
      ThisAndThat
      +1 y

      A lot of people get confused between Java workup and coding. I studied a bit of Pearl for a while and built a few programs from source code using C++. There's a lot of similarities in them. Who remembers Hello World? lol

      Reply
    • Unit1
      Unit1
      +1 y

      @ThisAndThat I remember the moment I had a grin on my face once I wrote C++ source code and could compile it on both Windows and Linux and they worked identically. C# went out of my head that moment.

      Reply
    • ThisAndThat
      ThisAndThat
      +1 y

      But bet. You get a charge out of seeing it work for sure. I believe everything I did was on Linux. I don't recall doing any programing on a Windows system. I have played with networking and used windows as a client system connected to Linux though. Linux just rocks for me compared to Windows.

      Reply
    • Eagle_93
      Eagle_93
      +1 y

      @ThisAndThat. I remember my first hello world program in Javascript lol

      I think that is the gold standard first program right? Lol

      Reply
    • Unit1
      Unit1
      +1 y

      Yes. Linux is the way to go. Although Windows is so convenient and stable I do not approve of Microsoft being under the blanket with the NSA and FBI.

      Reply
    • Eagle_93
      Eagle_93
      +1 y

      Yeah, I remember reading once that windows 10 had a lot of vulnerabilities in the source code too.

      Reply
    • ThisAndThat
      ThisAndThat
      +1 y

      @Eagle_93 I heard that. And I think it's used in just about anything whether it's markup or programing. I remember Hello World and the world never answered back lol. Also Windows and viruses go hand and hand, no so in Linux. I've tried loads of systems including Suse (great for networking). But as a simple desktop that's simple like Windows? I've been using zorinos. com for years.

      @ Unit1 I heard that. I'm not for the spy garbage either and I'm especially opposed to Gates the eugenics psycho.

      Reply
  • sensible27
    sensible27 Follow
    Guru Age: 24
    +1 y

    Depends on what coding, telling a machine to print a name is probably not perticularly difficult... at least for a human so... You could argue the complecity is upon the task not the language itself... how difficult is writing or English? Depends on what you're writing I guess... if you're writing a sentence or a letter maybe not so much but if you're writing a novel or a theory maybe... The complexity is on your problem solving... at least to some extent... i have forgotten languages to some extent but I don't really forget how it works... as in overall to some extent... again...

    1
    0 Reply
  • Eagle_93
    Eagle_93 Follow
    Xper 5 Age: 32
    +1 y

    Well I am actually learning front-end and back-end coding as we speak.

    I am in a sort-of boot camp.

    And tbh, when I apply myself, coding is really not any harder than learning to do anything else really.

    Once you understand the concepts, everything else is EASY PEASY LEMON SQUEEZY.

    If you have any questions about it, feel free to ask me anything about coding or related topics... I would be happy to help.
    (I think it's a great idea that you would take interest in coding and frankly, I wish more girls would get into it as you can make some GREAT money.

    1
    2 Reply
    • Eagle_93
      Eagle_93
      +1 y

      But to answer your question, yes, I think it is worth it to learn how to code.

      Reply
    • Eagle_93
      Eagle_93
      +1 y

      And yes, you can absolutely learn on your own.

      (this can be overwhelming at the start mind you, especially if you don't know what you are wanting to do, because coding languages are merely tools to build things (software) with. Just like a hammer and a paintbrush are tools to work with.

      You wouldn't use a hammer to paint a door, neither would you use a paintbrush to build a woodshed (you maybe could do it, but it is super inefficient).

      But if you are just wanting to learn some code, I recommend you start with JavaScript as your first language because once you learn its syntax (language rules), a lot of it translates to other languages as well.

      Again, let me know if you want some more info.

      Reply
  • HungLikeAHorsefly
    HungLikeAHorsefly Follow
    Guru Age: 43 , mho 34%
    +1 y

    It can be difficult, depending on what you want to do with it. And yes, it's worth learning on your own. I recommend Python - it's a good all-around general purpose programming language that pretty much everybody uses these days. As for reference, there are a lot of resources out there but the cool kids are all on Stack Overflow.

    2
    0 Reply
  • JackSmy
    JackSmy Follow
    Guru Age: 57 , mho 40%
    +1 y

    Depends on you! Some people have the 'mind' for it, and just 'see it'. Others, like me, learn it by having a project, and figuring it out, along the way, sometimes using 'colorful metaphors' when 'lovingly speaking' to our computers, that aren't doing what we think we are telling them to do!! :) :)

    1
    0 Reply
  • Enochian
    Enochian Follow
    Explorer Age: 33
    +1 y

    It depends on what you trying to do. As an engineer, I learnt python and C . However I do not apply C that much. For most of the things I do python is ok. But I don't even use that. I prefer doing the stuff on matlab.
    But if you really want to learn, than my suggestion is start on python. Personally I found it much easier than any of the others.

    2
    0 Reply
  • ThisAndThat
    ThisAndThat Follow
    Guru Age: 62
    +1 y

    It can be interesting and also rewarding if you stay with it. If I were you and that's what you're interested in, I wouldn't waste time spending money on schools. I would get the books from ebay and study them. They used to be expensive but you can probably picked them up pretty cheap now. I will give you the names of some of the books I have, or make that had because they've all been contaminated by a nasty neighbor's house that got my house. But they may still be there, let me know if you'd be interested in knowing.

    0
    1 Reply
    • ThisAndThat
      ThisAndThat
      +1 y

      The books are probably still there, I just can't touch them due to the poison.

      Reply
  • RemoErdosain
    RemoErdosain Follow
    Yoda Age: 34 , mho 54%
    +1 y

    Like someone else said, it's not really hard. If you want, DM me about what you want to do and stuff, and maybe I can help guide you a bit

    1
    1 Reply
    • RemoErdosain
      RemoErdosain
      +1 y

      *it's not really hard depending on what you want to do, I meant, sorry. Some stuff is relatively easy. Some other stuff requires a lot more sacrifice

      Reply
  • Anonymous
    Anonymous
    (25-29)
    +1 y

    Well I guess it really depends on the programming language and how much experience you have. Also writing code is not that hard. But writing good code can be very challenging. And a lot of time you need to read code from another person and reading bad written code can be super annoying. A lot of persons are writing anti patterns at the beginning. The most common ones I've seen are spaghetti code, lasagna code, magic numbers, programming by permutation and copy and paste.

    0
    0 Reply
  • Shamalien
    Shamalien Follow
    Guru Age: 42
    +1 y

    LEARN NOW

    don't worry about how difficult it is, the job market is so lucrative, you don't need to make 200k at google, you can get by fine making 80k within a few years of working full time even if you aren't that great

    message me if you want resources to start your journey

    0
    0 Reply
  • OpenWine
    OpenWine Follow
    Yoda Age: 29
    +1 y

    depends. if you code html, css and proceed to javascript it's easy.

    if you wanna take on the background procedude it's gonna be python, c++, java.

    java knowingly being the "easiest one" but also the more code strict approach.
    since I am also just a beginner who managed to create his own website but still has basic knowledge of coding I say it can be quite hard.

    right now I am using CheckIO from time to time to fix a lot of weakpoints

    0
    0 Reply
  • genericname85
    genericname85 Follow
    Master Age: 40
    +1 y
    512 opinions shared on Education & Career topic.

    it's litterally like learning a language. i wouldn't say it's "that" difficult. i just takes time. and if you don't put in the time, you'll struggle.

    2
    0 Reply
  • drearyknight187
    drearyknight187 Follow
    Xper 5 Age: 23 , mho 32%
    +1 y

    I used a website called scratch to get started on the very basics, and then went to Khan academy.

    1
    0 Reply
  • bones1238
    bones1238 Follow
    Xper 4 Age: 47
    +1 y

    Some people have trouble with it Some find it easy I encourage you to try it there is code academy khan academy and alison. com as free resources good luck on your path

    1
    0 Reply
  • Taktagamo_Monisense
    Taktagamo_Monisense Follow
    Xper 4 Age: 36
    +1 y

    There is a website with free online courses called Coursera. I want to do it but just too lazy on summer break.

    1
    0 Reply
  • admles
    admles Follow
    Guru Age: 47
    +1 y

    Basic application programming is pretty straight forward.

    Tricky stuff, like low-level system programming or game programming, that's quite tricky.

    1
    0 Reply
  • Anonymous
    Anonymous
    (18-24)
    +1 y

    It’s quite easy, once you get a hold of the basic syntax of the language you just have to learn about its native functions and libraries

    2
    0 Reply
  • Makeushiver
    Makeushiver Follow
    Guru Age: 40
    +1 y

    It's not that difficult but it's vcery detailed and 1 mistake can take months to undo. Coding is similar to what they use to punish kids in elementary school. Designing the code is difficult, compiling is tedious

    0
    0 Reply
  • FýrdracaDócincel
    FýrdracaDócincel Follow
    Guru Age: 28
    +1 y

    I wouldn't say it's hard.. but it takes a LOT of patience.

    1
    0 Reply
  • COMMODOREII
    COMMODOREII Follow
    Master Age: 46
    +1 y
    675 opinions shared on Education & Career topic.

    I want to say yes. But then im green on the subject too. I want to learn it too.

    1
    0 Reply
  • Deathraider
    Deathraider Follow
    Guru Age: 24
    +1 y

    I mean it really depends on what you exactly want to do.

    1
    0 Reply
  • najekim
    najekim Follow
    Guru Age: 68
    +1 y

    All depends on the coding you want to do. HTML5, Java, C++, FORTRAN, PERL, Ruby Rails, etc?

    1
    0 Reply
  • NewZion
    NewZion Follow
    Xper 7 Age: 35
    +1 y

    Try MySpace or anything that lets you mess around with layouts via codes. You'll see if coding is for you or not.

    0
    0 Reply
  • Anonymous
    Anonymous
    (30-35)
    +1 y

    coding isn't hard. You need to know math. when you learn the basic, it is all about using math to create the idea in your head.

    1
    0 Reply
  • ClosetHoe
    ClosetHoe Follow
    Xper 6 Age: 25
    +1 y

    It depends on the language and your memorization skills.

    0
    0 Reply
  • xichuwangwai
    xichuwangwai Follow
    Xper 7 Age: 30
    +1 y

    I planned to learn coding many years ago, but I didn't do it, I found it too boring for me.

    1
    0 Reply
  • Qaidjoharjukker
    Qaidjoharjukker Follow
    Xper 2 Age: 22
    +1 y

    Coding can be learnt from many online resources and from youtube too...
    You can not learn coding on yoir own as it is very vast and huge...
    It takes too much time and too many re-attempts and mistakes too...

    0
    0 Reply
  • OddBeMe
    OddBeMe Follow
    Master Age: 42
    +1 y
    538 opinions shared on Education & Career topic.

    Not too difficult when you get over the learning curve. But it’s extremely lucrative and you can learn online for free.

    0
    0 Reply
  • Agape93
    Agape93 Follow
    Master Age: 34
    +1 y
    1.2K opinions shared on Education & Career topic.

    No idea but I’m curious about it

    1
    0 Reply
  • Janenow
    Janenow Follow
    Xper 6 Age: 60
    +1 y

    Very difficult, I couldn't get a grip on it

    1
    0 Reply
  • disgustingweebtrash
    disgustingweebtrash Follow
    Master Age: 25
    +1 y
    421 opinions shared on Education & Career topic.

    just learn 2 code bro

    1
    0 Reply
  • asshole_
    asshole_ Follow
    Yoda Age: 37
    +1 y

    If you don't memorize well

    1
    0 Reply
  • Jjpayne
    Jjpayne Follow
    Master Age: 42 , mho 33%
    +1 y
    977 opinions shared on Education & Career topic.

    Not sure 🤔

    1
    0 Reply
  • AkshiJanjua
    AkshiJanjua Follow
    Yoda Age: 28
    +1 y

    Python would be easy for a beginner

    0
    0 Reply
Show More(31)
Click "Show More" for your mentions
Home > Education & Career > Questions > How difficult is coding?
Add your reply For "{0}"
Most Helpful Opinion(mho) Rate.
Learn more

We're glad to see you liked this post.

You can also add your opinion below!

Related Questions

Who is learning coding? 3 answered
How difficult is the Computer Science course? 8 answered
How do I get into a coding type of job? Where do I get credentials, certificates or anything... 5 answered
How busy a coder/software engineer can be in daily life? 2 answered
Why is math so hard? 6 answered
Popular Questions
  • Girls, What are the Ways for Men to Say They Care About You?
  • My boyfriend follows random girls on Instagram, should I be worried?
  • Girls what does the 😌 emoji mean?
  • How do I ask for a girl's Instagram?
  • "How Do You Feel About Me?" Best Answers to This Situation!
  • Do guys really like girls with thick thighs?
  • Girls, What Makes a Man Fall Deeply in Love With a Woman?
  • What does the date under "Hey there I am using Whatsapp" Status mean?
  • What's a good comeback when someone jokingly calls you old?
  • When a girls says "I'll let you know" what does it mean?
Recent Questions
  • How can I completely stop Norton and McAfee renewal popups?
  • What is your favorite activity to do during the summer?
  • Which Aztec sun design would look best as a back tattoo?
  • Do you cry loudly at movies or books that move you deeply?
  • Does this outfit look cute and what vibe does it give off?
  • Do you believe an ugly personality destroys a pretty face?
  • Why dont people want to be healthy and lose weight?
  • Why do I feel a dislike whenever I hear Tucker Carlson speak?
  • How many times have you truly loved someone and been loved back?
  • Is my extrapolation from the Harvard longevity study to gratitude valid?
  • Help
  • Contact
  • Terms Of Use
  • Guidelines
  • Privacy Policy
  • Age Policy
  • Sitemap
  • Featured Questions
  • Topics
Popular Topics
Dating Education & Career Entertainment & Arts Flirting Food & Beverage Girl's Behavior Guy's Behavior Health & Fitness Relationships Technology & Internet
Girls Ask Guys
©2026 GirlsAskGuys ™
Apple Store Google Play
Join with {0}
Loading...
Loading...
The question is being reviewed...
Compliance with site rules is being checked...
Final touches are being made, it's almost ready ✨